diff options
author | Peter Volkov <pva@gentoo.org> | 2011-04-30 20:36:04 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2011-04-30 20:36:04 +0000 |
commit | 3cbb1811728a35170576d2c6191cf4493d4d817e (patch) | |
tree | 776bbc6cf1bcd6b37ebb143cb290438a616a5bac /net-nds/shelldap | |
parent | Version bump (diff) | |
download | gentoo-2-3cbb1811728a35170576d2c6191cf4493d4d817e.tar.gz gentoo-2-3cbb1811728a35170576d2c6191cf4493d4d817e.tar.bz2 gentoo-2-3cbb1811728a35170576d2c6191cf4493d4d817e.zip |
Version bump, bug #356961 thank Azamat H. Hackimov for this work.
(Portage version: 2.1.9.46/cvs/Linux x86_64)
Diffstat (limited to 'net-nds/shelldap')
-rw-r--r-- | net-nds/shelldap/ChangeLog | 9 | ||||
-rw-r--r-- | net-nds/shelldap/shelldap-0.4.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/net-nds/shelldap/ChangeLog b/net-nds/shelldap/ChangeLog index 4eb71eaf954f..0298c5612036 100644 --- a/net-nds/shelldap/ChangeLog +++ b/net-nds/shelldap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-nds/shelldap -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/shelldap/ChangeLog,v 1.1 2010/12/29 09:00:46 pva Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/shelldap/ChangeLog,v 1.2 2011/04/30 20:36:04 pva Exp $ + +*shelldap-0.4 (30 Apr 2011) + + 30 Apr 2011; Peter Volkov <pva@gentoo.org> +shelldap-0.4.ebuild: + Version bump, bug #356961 thank Azamat H. Hackimov for this work. 29 Dec 2010; Peter Volkov <pva@gentoo.org> +shelldap-0.2_p20100615.ebuild, +metadata.xml: diff --git a/net-nds/shelldap/shelldap-0.4.ebuild b/net-nds/shelldap/shelldap-0.4.ebuild new file mode 100644 index 000000000000..ed7a299f2c83 --- /dev/null +++ b/net-nds/shelldap/shelldap-0.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/shelldap/shelldap-0.4.ebuild,v 1.1 2011/04/30 20:36:04 pva Exp $ + +EAPI=3 + +REVISION="d703cba056e3" + +DESCRIPTION="A handy shell-like interface for browsing LDAP servers and editing their content." +HOMEPAGE="http://projects.martini.nu/shelldap/" +SRC_URI="http://code.martini.nu/shelldap/archive/${REVISION}.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="dev-perl/Algorithm-Diff + dev-perl/perl-ldap + dev-perl/TermReadKey + dev-perl/Term-ReadLine-Gnu + dev-perl/Term-Shell + dev-perl/YAML-Syck + virtual/perl-Digest-MD5" + +S=${WORKDIR}/${PN}-${REVISION} + +src_compile() { + pod2man --name ${PN} < ${PN} > ${PN}.1 || die +} + +src_install() { + doman ${PN}.1 || die + dobin ${PN} || die +} |