diff options
author | Renat Lumpau <rl03@gentoo.org> | 2006-05-13 15:44:00 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2006-05-13 15:44:00 +0000 |
commit | 95ef31969c2beae0eba02eee2e0dd16fdc4a2427 (patch) | |
tree | 1678da1a35371686a92cd9bf5882bf588d5ea610 /net-nds/phpldapadmin/phpldapadmin-0.9.8.3.ebuild | |
parent | Add PHPCHECKNODIE option for the require_php_with_*use checks. (diff) | |
download | historical-95ef31969c2beae0eba02eee2e0dd16fdc4a2427.tar.gz historical-95ef31969c2beae0eba02eee2e0dd16fdc4a2427.tar.bz2 historical-95ef31969c2beae0eba02eee2e0dd16fdc4a2427.zip |
Version bump, cleaning house
Package-Manager: portage-2.1_pre10-r5
Diffstat (limited to 'net-nds/phpldapadmin/phpldapadmin-0.9.8.3.ebuild')
-rw-r--r-- | net-nds/phpldapadmin/phpldapadmin-0.9.8.3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net-nds/phpldapadmin/phpldapadmin-0.9.8.3.ebuild b/net-nds/phpldapadmin/phpldapadmin-0.9.8.3.ebuild new file mode 100644 index 000000000000..a731b659fafa --- /dev/null +++ b/net-nds/phpldapadmin/phpldapadmin-0.9.8.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/phpldapadmin/phpldapadmin-0.9.8.3.ebuild,v 1.1 2006/05/13 15:44:00 rl03 Exp $ + +inherit webapp depend.php + +DESCRIPTION="phpLDAPadmin is a web-based tool for managing all aspects of your LDAP server." +HOMEPAGE="http://phpldapadmin.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +need_php4 + +pkg_setup() { + webapp_pkg_setup + require_php_with_use ldap pcre +} + +src_unpack() { + unpack ${A} + cd ${S} + mv config/config.php.example config/config.php +} + +src_install() { + webapp_src_preinst + + dodoc doc/* + + cp -r . ${D}${MY_HTDOCSDIR} + cd ${D}${MY_HTDOCSDIR} + + webapp_configfile ${MY_HTDOCSDIR}/config/config.php + + webapp_postinst_txt en ${FILESDIR}/postinstall2-en.txt + + webapp_src_install +} |