svn commit: r330085 - head/sysutils/ts

Jimmy Olgeni olgeni at FreeBSD.org
Fri Oct 11 15:47:17 UTC 2013


Author: olgeni
Date: Fri Oct 11 15:47:17 2013
New Revision: 330085
URL: http://svnweb.freebsd.org/changeset/ports/330085

Log:
  - Rename ts.1 to ts.8 to avoid conflicts with security/openssl.
  - Upgrade USE_GMAKE.
  - Add staging support.
  
  PR:		ports/182879
  Submitted by:	olgeni
  Approved by:	maintainer

Modified:
  head/sysutils/ts/Makefile   (contents, props changed)

Modified: head/sysutils/ts/Makefile
==============================================================================
--- head/sysutils/ts/Makefile	Fri Oct 11 15:33:47 2013	(r330084)
+++ head/sysutils/ts/Makefile	Fri Oct 11 15:47:17 2013	(r330085)
@@ -3,28 +3,30 @@
 
 PORTNAME=	ts
 PORTVERSION=	0.7.3
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	http://vicerveza.homeunix.net/~viric/soft/ts/ CENKES
 
 MAINTAINER=	demon at FreeBSD.org
 COMMENT=	Serial task spooler
 
-USE_GMAKE=	yes
-PLIST_FILES=	bin/ts
+USES=		gmake
+PLIST_FILES=	bin/ts \
+		man/man8/ts.8.gz
 PORTDOCS=	OBJECTIVES PROTOCOL README TRICKS
-MAN1=		ts.1
 
-NO_STAGE=	yes
 post-patch:
 	${REINPLACE_CMD} -e '/^GLIBCFLAGS/d;/^CFLAGS/d'\
 		${WRKSRC}/Makefile
 
+# Install man page as ts.8 to avoid conflict with security/openssl
+
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/ts ${PREFIX}/bin/
-	${INSTALL_MAN} ${WRKSRC}/ts.1 ${MAN1PREFIX}/man/man1/
+	${INSTALL_PROGRAM} ${WRKSRC}/ts ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/ts.1 ${STAGEDIR}${MAN1PREFIX}/man/man8/ts.8
 .ifndef NOPORTDOCS
-	${INSTALL} -d ${DOCSDIR}/
-	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
+	${INSTALL} -d ${STAGEDIR}${DOCSDIR}
+	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list