diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-03-10 02:33:29 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2009-03-10 02:33:29 -0400 |
commit | 69b3e256e2017d5664ef37d06aae5e5bcf446575 (patch) | |
tree | b4028ecbb3d313ba41f956cc00fea7925982bfbb /packaging/freebsd | |
parent | 309e0854c96d9f2702fec433af049ad7d41d8e71 (diff) |
FreeBSD packaging: revert to simpler hack for debian tarballs; use ${FIND} instead of find
Diffstat (limited to 'packaging/freebsd')
-rw-r--r-- | packaging/freebsd/security/monkeysphere/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packaging/freebsd/security/monkeysphere/Makefile b/packaging/freebsd/security/monkeysphere/Makefile index f2484b5..65d71f4 100644 --- a/packaging/freebsd/security/monkeysphere/Makefile +++ b/packaging/freebsd/security/monkeysphere/Makefile @@ -10,9 +10,7 @@ PORTVERSION= 0.24 CATEGORIES= security MASTER_SITES= http://archive.monkeysphere.info/debian/pool/monkeysphere/m/monkeysphere/ # hack for debian orig tarballs -DISTNAME= ${PORTNAME}_${DISTVERSION} -EXTRACT_SUFX= .orig.tar.gz -WRKSRC= work/${PORTNAME}-${DISTVERSION} +DISTFILES= ${PORTNAME}_${DISTVERSION}.orig.tar.gz MAINTAINER= dkg@fifthhorseman.net COMMENT= Use the OpenPGP web of trust to verify ssh connections @@ -52,7 +50,7 @@ post-patch: ${WRKSRC}/src/monkeysphere-authentication \ ${WRKSRC}/src/monkeysphere # and clean up cruft from the sed replacements: - find ${WRKSRC} -name '*.bak' -delete + ${FIND} ${WRKSRC} -name '*.bak' -delete post-install: @if [ ! -f ${PREFIX}/etc/monkeysphere/monkeysphere.conf ]; then \ |