diff options
author | jseger <jseger@FreeBSD.org> | 1999-04-12 06:42:07 +0800 |
---|---|---|
committer | jseger <jseger@FreeBSD.org> | 1999-04-12 06:42:07 +0800 |
commit | 933594db042e237c0e74886d93c0a9ed49adb6bb (patch) | |
tree | 7354aa9de0ea2a8e88deeea3b6908c75bee09470 /security/identify | |
parent | b27abd6a0d9982f208b026921911b3e001714963 (diff) | |
download | freebsd-ports-gnome-933594db042e237c0e74886d93c0a9ed49adb6bb.tar.gz freebsd-ports-gnome-933594db042e237c0e74886d93c0a9ed49adb6bb.tar.zst freebsd-ports-gnome-933594db042e237c0e74886d93c0a9ed49adb6bb.zip |
1)BUILD_DEPENDS was missing an S and wasn't in the proper form.
2)Was installing into a directory but not removing it with the rest of
the package.
3)Now supports NOPORTDOCS (which isn't documented in Mk/bsd.port.mk)
Diffstat (limited to 'security/identify')
-rw-r--r-- | security/identify/Makefile | 11 | ||||
-rw-r--r-- | security/identify/pkg-plist | 1 |
2 files changed, 10 insertions, 2 deletions
diff --git a/security/identify/Makefile b/security/identify/Makefile index 8cbb1efc5eaa..75b6c34b58e4 100644 --- a/security/identify/Makefile +++ b/security/identify/Makefile @@ -3,7 +3,7 @@ # Date created: 13 March 1999 # Whom: nsayer@quack.kfu.com # -# $Id: Makefile,v 1.1.1.1 1999/04/02 19:07:30 nsayer Exp $ +# $Id: Makefile,v 1.2 1999/04/02 19:19:55 nsayer Exp $ # DISTNAME= identify-0.7 @@ -12,6 +12,13 @@ MASTER_SITES= ftp://ftp.lysator.liu.se/pub/ident/tools/ MAINTAINER= nsayer@quack.kfu.com -BUILD_DEPEND= ${PORTSDIR}/security/libident +BUILD_DEPENDS= ${PREFIX}/lib/libident.a:${PORTSDIR}/security/libident + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/identify ${PREFIX}/libexec +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/identify + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/identify +.endif .include <bsd.port.mk> diff --git a/security/identify/pkg-plist b/security/identify/pkg-plist index 706f6eb75a25..aa759407d825 100644 --- a/security/identify/pkg-plist +++ b/security/identify/pkg-plist @@ -1,2 +1,3 @@ libexec/identify share/doc/identify/README +@dirrm share/doc/identify |