diff options
author | jhale <jhale@FreeBSD.org> | 2012-10-20 13:10:27 +0800 |
---|---|---|
committer | jhale <jhale@FreeBSD.org> | 2012-10-20 13:10:27 +0800 |
commit | ce00f4cbd0728ee20a9bbcadcb066d2ddbe78f57 (patch) | |
tree | 8e91c5be13103e43e8e9b66025dbd9081e87dba7 /security | |
parent | 692f88e1f9e5dc07def37e14d38133bb65daf015 (diff) | |
download | freebsd-ports-gnome-ce00f4cbd0728ee20a9bbcadcb066d2ddbe78f57.tar.gz freebsd-ports-gnome-ce00f4cbd0728ee20a9bbcadcb066d2ddbe78f57.tar.zst freebsd-ports-gnome-ce00f4cbd0728ee20a9bbcadcb066d2ddbe78f57.zip |
- Update MASTER_SITES
- Remove DEPRECATED/EXPIRATION_DATE since port fetches now
- Convert to new options framework
- Trim Makefile header
PR: ports/172055
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Approved by: makc, avilla (mentors, implicit)
Feature safe: yes
Diffstat (limited to 'security')
-rw-r--r-- | security/identify/Makefile | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/security/identify/Makefile b/security/identify/Makefile index 8b6e84e5da92..57fb332824e7 100644 --- a/security/identify/Makefile +++ b/security/identify/Makefile @@ -1,30 +1,26 @@ -# New ports collection makefile for: identify -# Date created: 13 March 1999 -# Whom: nsayer@quack.kfu.com -# +# Created by: nsayer@quack.kfu.com # $FreeBSD$ -# PORTNAME= identify PORTVERSION= 0.7 CATEGORIES= security -MASTER_SITES= http://www.scn.rain.com/pub/security/authent/ +MASTER_SITES= http://ftp.nluug.nl/ftp/pub/pub/security/coast/daemons/pidentd/tools/ \ + http://www.scn.rain.com/pub/security/authent/ MAINTAINER= ports@FreeBSD.org COMMENT= Client side ident protocol daemon wrapper -DEPRECATED= No more public distfiles -EXPIRATION_DATE= 2012-10-20 - BUILD_DEPENDS= ${LOCALBASE}/lib/libident.a:${PORTSDIR}/security/libident PORTDOCS= README PLIST_FILES= libexec/identify +.include <bsd.port.options.mk> + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/identify ${PREFIX}/libexec -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif |