summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Ostorga <vostorga@gentoo.org>2009-08-02 17:02:13 +0000
committerVictor Ostorga <vostorga@gentoo.org>2009-08-02 17:02:13 +0000
commitbb1858094b5878a5c676ada84a62fa246e259a45 (patch)
treeda692178e16ba4d17e9f47596f4069ff0d0e99f1 /net-nds/phpldapadmin
parentAdd check to ensure that /usr/bin/python and /usr/bin/python-config are scripts. (diff)
downloadgentoo-2-bb1858094b5878a5c676ada84a62fa246e259a45.tar.gz
gentoo-2-bb1858094b5878a5c676ada84a62fa246e259a45.tar.bz2
gentoo-2-bb1858094b5878a5c676ada84a62fa246e259a45.zip
non-maintainer version bump, bug #256745
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'net-nds/phpldapadmin')
-rw-r--r--net-nds/phpldapadmin/ChangeLog10
-rw-r--r--net-nds/phpldapadmin/phpldapadmin-1.1.0.7.ebuild41
2 files changed, 49 insertions, 2 deletions
diff --git a/net-nds/phpldapadmin/ChangeLog b/net-nds/phpldapadmin/ChangeLog
index eee6626fa77f..92f9352defec 100644
--- a/net-nds/phpldapadmin/ChangeLog
+++ b/net-nds/phpldapadmin/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-nds/phpldapadmin
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-nds/phpldapadmin/ChangeLog,v 1.46 2008/08/09 21:00:08 hoffie Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-nds/phpldapadmin/ChangeLog,v 1.47 2009/08/02 17:02:13 vostorga Exp $
+
+*phpldapadmin-1.1.0.7 (02 Aug 2009)
+
+ 02 Aug 2009; Víctor Ostorga <vostorga@gentoo.org>
+ +phpldapadmin-1.1.0.7.ebuild:
+ non-maintainer version bump, bug #256745
09 Aug 2008; Christian Hoffmann <hoffie@gentoo.org>
-phpldapadmin-0.9.8.2.ebuild:
diff --git a/net-nds/phpldapadmin/phpldapadmin-1.1.0.7.ebuild b/net-nds/phpldapadmin/phpldapadmin-1.1.0.7.ebuild
new file mode 100644
index 000000000000..2927d40dbc94
--- /dev/null
+++ b/net-nds/phpldapadmin/phpldapadmin-1.1.0.7.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-nds/phpldapadmin/phpldapadmin-1.1.0.7.ebuild,v 1.1 2009/08/02 17:02:13 vostorga 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_httpd_cgi
+need_php_httpd
+
+pkg_setup() {
+ webapp_pkg_setup
+ require_php_with_use hash ldap pcre session xml nls
+}
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ mv config/config.php.example config/config.php
+}
+
+src_install() {
+ webapp_src_preinst
+
+ dodoc INSTALL
+
+ insinto "${MY_HTDOCSDIR}"
+ doins -r *
+
+ webapp_configfile "${MY_HTDOCSDIR}"/config/config.php
+ webapp_postinst_txt en "${FILESDIR}"/postinstall2-en.txt
+
+ webapp_src_install
+}