diff options
Diffstat (limited to 'net-nds/shelldap/shelldap-0.2_p20100615.ebuild')
-rw-r--r-- | net-nds/shelldap/shelldap-0.2_p20100615.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-nds/shelldap/shelldap-0.2_p20100615.ebuild b/net-nds/shelldap/shelldap-0.2_p20100615.ebuild new file mode 100644 index 000000000000..a21d11b8ebc3 --- /dev/null +++ b/net-nds/shelldap/shelldap-0.2_p20100615.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/shelldap/shelldap-0.2_p20100615.ebuild,v 1.1 2010/12/29 09:00:46 pva Exp $ + +EAPI=3 + +REVISION="5a65bc849363" + +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 +} |