101dbf27e3
* keychain 2.6.1 (10 Oct 2005) 10 Oct 2005; Aron Griffis <agriffis@gentoo.org>: Change "unset evalopt" to "evalopt=false" and run through *all* the regression tests instead of just the new ones. *sigh* * keychain 2.6.0 (10 Oct 2005) 10 Oct 2005; Aron Griffis <agriffis@gentoo.org>: Add the --eval option which makes keychain startup easier. See the man-page for examples. Get rid of the release notes from README, so now this file is where changes are tracked.
28 lines
795 B
Makefile
28 lines
795 B
Makefile
# $NetBSD: Makefile,v 1.16 2005/10/28 05:29:54 martti Exp $
|
|
|
|
DISTNAME= keychain-2.6.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.ibiblio.org/pub/linux/distributions/gentoo/distfiles/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= martti@NetBSD.org
|
|
HOMEPAGE= http://www.gentoo.org/proj/en/keychain.xml
|
|
COMMENT= Nice ssh-agent front-end
|
|
|
|
.if !exists(/usr/bin/ssh-agent)
|
|
DEPENDS+= openssh-[0-9]*:../../security/openssh
|
|
.endif
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
NO_BUILD= yes
|
|
|
|
INSTALLATION_DIRS= bin man/man1 share/doc/${PKGBASE}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/keychain ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/keychain.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/keychain
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/keychain
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|