acc548f02e
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@390 6952d904-891a-0410-993b-d76249ca496b
49 lines
1.1 KiB
Bash
49 lines
1.1 KiB
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit eutils webapp depend.php
|
|
|
|
DESCRIPTION="Mandriva Directory Server - Identity and network services management made easy !"
|
|
HOMEPAGE="http://mds.mandriva.org/"
|
|
SRC_URI="http://mds.mandriva.org/pub/mds/sources/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
|
IUSE=""
|
|
RDEPEND="=app-admin/mmc-agent-${PV}"
|
|
|
|
need_httpd
|
|
need_php_httpd
|
|
|
|
pkg_setup() {
|
|
webapp_pkg_setup
|
|
|
|
if ! PHPCHECKNODIE="yes" require_php_with_use ldap xmlrpc ; then
|
|
eerror
|
|
eerror "${PHP_PKG} needs to be re-installed with all of the following"
|
|
eerror "USE flags enabled:"
|
|
eerror
|
|
eerror "ldap xmlrpc"
|
|
eerror
|
|
die "Re-install ${PHP_PKG}"
|
|
fi
|
|
}
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
# epatch "${FILESDIR}"/${PN}-2.11.5-custom-cert.patch
|
|
}
|
|
|
|
src_install() {
|
|
webapp_src_preinst
|
|
|
|
emake DESTDIR="${D}" DATADIR="${MY_HTDOCSDIR}" HTTPDUSER=root install
|
|
insinto /etc/mmc
|
|
doins confs/mmc.ini
|
|
|
|
webapp_postinst_txt en "${FILESDIR}"/postinstall-en-2.3.txt
|
|
webapp_src_install
|
|
}
|