svn commit: r306159 - head/security/identify

Jason E. Hale jhale at FreeBSD.org
Sat Oct 20 05:10:27 UTC 2012


Author: jhale
Date: Sat Oct 20 05:10:27 2012
New Revision: 306159
URL: http://svn.freebsd.org/changeset/ports/306159

Log:
  - 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 at yahoo.com>
  Approved by:	makc, avilla (mentors, implicit)
  Feature safe:	yes

Modified:
  head/security/identify/Makefile   (contents, props changed)

Modified: head/security/identify/Makefile
==============================================================================
--- head/security/identify/Makefile	Sat Oct 20 05:09:50 2012	(r306158)
+++ head/security/identify/Makefile	Sat Oct 20 05:10:27 2012	(r306159)
@@ -1,30 +1,26 @@
-# New ports collection makefile for:	identify
-# Date created:		13 March 1999
-# Whom:			nsayer at quack.kfu.com
-#
+# Created by: nsayer at 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 at 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
 


More information about the svn-ports-all mailing list