Date: Sat, 10 Apr 1999 20:22:56 -0700 (PDT) From: mharo@area51.fremont.ca.us To: FreeBSD-gnats-submit@freebsd.org Subject: ports/11071: Fix: security/identify Message-ID: <199904110322.UAA33217@patrol.area51.fremont.ca.us>
next in thread | raw e-mail | index | archive | help
>Number: 11071 >Category: ports >Synopsis: Fix: security/identify >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Apr 10 20:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Michael Haro >Release: FreeBSD 3.1-STABLE i386 >Organization: >Environment: >Description: Changes: - BUILD_DEPENDS was missing an S and wasn't in the proper form. - Was installing into a directory but not removing it with the rest of the package. - Now supports NOPORTDOCS (which isn't documented in Mk/bsd.port.mk) portlint: 0 warnings, 0 errors patches: 0 new, 0 removed supports PREFIX: yes supports CFLAGS: yes >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /host/trang.nuxi.com/FBSD/CVS-repository/ports/security/identify/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 1999/04/02 19:19:55 1.2 +++ Makefile 1999/04/11 03:19:55 @@ -12,6 +12,13 @@ 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> Index: pkg/PLIST =================================================================== RCS file: /host/trang.nuxi.com/FBSD/CVS-repository/ports/security/identify/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 PLIST --- PLIST 1999/04/02 19:07:30 1.1.1.1 +++ PLIST 1999/04/11 03:16:18 @@ -1,2 +1,3 @@ libexec/identify share/doc/identify/README +@dirrm share/doc/identify >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199904110322.UAA33217>