1ba9c1c1c1
2019-10-13 v1.5.1 * Repair SASL authentications, add a 'sasluser' option 2019-06-26 v1.5.0 * Default display attributes can set as an option * Support user specific aliases * Manage configuration file from within the shell * Improvements to 'ls -l' output * Mirror command line flags with those of openldap tools * Documentation improvements 2017-06-07 v1.4.0 * Optionally support server side pagination controls. * Documentation spelling corrections. 2016-01-12 v1.3.2 * Don't test for optional perl modules by string eval(). * Migration to BitBucket for issue tracking and downloads. Primary repository is still (and will continue to be) martini.nu. * Fix anonymous binds when SASL is not used. * Allow the period character when moving an entry by DN. * Allow editor arguments in your .shelldap.rc or EDITOR environment variable when editing files externally. 2015-03-04 v1.3.1 * Use the system definied tempdir instead of hardcoding /tmp.
35 lines
1 KiB
Makefile
35 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.18 2019/12/05 21:29:25 sevan Exp $
|
|
#
|
|
|
|
PKGNAME= shelldap-1.5.1
|
|
DISTNAME= c06315e
|
|
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+= {perl>=5.13.6,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
|
|
DEPENDS+= p5-Tie-IxHash>=1.23:../../devel/p5-Tie-IxHash
|
|
|
|
WRKSRC= ${WRKDIR}/shelldap-${DISTNAME}
|
|
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"
|