Files
gentoo/net-nds/shelldap/shelldap-1.5.0.ebuild
Azamat H. Hackimov 367dddd2de net-nds/shelldap: update to 1.5.1
Updated HOMEPAGE and SRC_URI, added missing dependency dev-perl/Tie-IxHash
Closes: https://bugs.gentoo.org/709644
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Signed-off-by: Sergey Popov <pinkbyte@gentoo.org>
Package-Manager: Portage-2.3.84, Repoman-2.3.20
2020-02-17 10:48:43 +03:00

45 lines
996 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
GENTOO_DEPEND_ON_PERL=noslotop
inherit eutils perl-module
DESCRIPTION="A handy shell-like interface for browsing LDAP servers and editing their content"
HOMEPAGE="https://bitbucket.org/mahlon/shelldap/"
SRC_URI="https://bitbucket.org/mahlon/shelldap/downloads/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+readline sasl +ssl"
DEPEND=""
RDEPEND="dev-perl/Algorithm-Diff
sasl? ( dev-perl/Authen-SASL )
dev-perl/IO-Socket-SSL
dev-perl/perl-ldap
dev-perl/TermReadKey
readline? ( dev-perl/Term-ReadLine-Gnu )
dev-perl/Term-Shell
dev-perl/Tie-IxHash
dev-perl/YAML-Syck
virtual/perl-Data-Dumper
virtual/perl-File-Temp
virtual/perl-Getopt-Long
virtual/perl-Digest-MD5"
src_configure() { :; }
src_compile() {
pod2man --name "${PN}" < "${PN}" > "${PN}.1" || die 'creating manpage failed'
}
src_install() {
doman "${PN}.1"
dobin "${PN}"
dodoc USAGE
}