* Fix bug introduced in rev:a3a710f720dd with passwd arguments. * Backout the additional objectClasses patch for mkdir: same behavior can be acheived with 'touch', less complex to leave it as is. * Add a --version flag. * Small documentation fixes, add better verbosity when saving connection cache data. * Make sure the hasSubordinates attribute is defined before checking its value. * fix 'ls -R' output, minor style cleanup * Repair broken path behavior, remove unneeded #path_to_dn 'relative' flag.
36 lines
1,007 B
Makefile
36 lines
1,007 B
Makefile
# $NetBSD: Makefile,v 1.6 2012/05/08 20:57:03 imil Exp $
|
|
#
|
|
|
|
PKGNAME= shelldap-0.5
|
|
DISTNAME= c6a3abc56c74
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://code.martini.nu/shelldap/archive/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= imil@NetBSD.org
|
|
HOMEPAGE= http://projects.martini.nu/shelldap
|
|
COMMENT= Shell-like interface for browsing LDAP servers
|
|
LICENSE= modified-bsd
|
|
|
|
DEPENDS+= p5-YAML-Syck>=1.15:../../textproc/p5-YAML-Syck
|
|
DEPENDS+= p5-Term-Shell>=0.02:../../devel/p5-Term-Shell
|
|
DEPENDS+= p5-Digest-MD5>=2.51:../../security/p5-Digest-MD5
|
|
DEPENDS+= p5-Algorithm-Diff>=1.1902:../../devel/p5-Algorithm-Diff
|
|
DEPENDS+= p5-perl-ldap>=0.40.01:../../databases/p5-perl-ldap
|
|
DEPENDS+= p5-Term-ReadLine>=1.20:../../devel/p5-Term-ReadLine
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/shelldap-c6a3abc56c74
|
|
USE_LANGUAGES= # none
|
|
|
|
NO_BUILD= yes
|
|
REPLACE_PERL+= shelldap
|
|
USE_TOOLS+= perl:run
|
|
|
|
INSTALLATION_DIRS+= bin
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/shelldap ${DESTDIR}${PREFIX}/bin/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|