Bug 189616 - [maintainer update] security/yafic: Add stage support
Summary: [maintainer update] security/yafic: Add stage support
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-05-10 17:50 UTC by Allan Saddi
Modified: 2014-05-11 00:10 UTC (History)
0 users

See Also:


Attachments
file.diff (2.45 KB, patch)
2014-05-10 17:50 UTC, Allan Saddi
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Allan Saddi 2014-05-10 17:50:00 UTC

Fix: Patch attached with submission follows:
Comment 1 dfilter service freebsd_committer freebsd_triage 2014-05-11 00:00:28 UTC
Author: rakuco
Date: Sat May 10 23:00:24 2014
New Revision: 353626
URL: http://svnweb.freebsd.org/changeset/ports/353626
QAT: https://qat.redports.org/buildarchive/r353626/

Log:
  Support staging.
  
  PR:		ports/189616
  Submitted by:	Allan Saddi <allan@saddi.com> (maintainer)

Modified:
  head/security/yafic/Makefile
  head/security/yafic/pkg-plist

Modified: head/security/yafic/Makefile
==============================================================================
--- head/security/yafic/Makefile	Sat May 10 22:31:15 2014	(r353625)
+++ head/security/yafic/Makefile	Sat May 10 23:00:24 2014	(r353626)
@@ -3,6 +3,7 @@
 
 PORTNAME=	yafic
 PORTVERSION=	1.2.2
+PORTREVISION=	1
 CATEGORIES=	security
 MASTER_SITES=	SF
 
@@ -10,7 +11,7 @@ MAINTAINER=	allan@saddi.com
 COMMENT=	Yet Another File Integrity Checker, similar to Tripwire
 
 GNU_CONFIGURE=	yes
-USE_GMAKE=	yes
+USES=		gmake
 LDFLAGS+=	-static
 
 .if defined(WITHOUT_OPENSSL)
@@ -20,31 +21,27 @@ PLIST_SUB+=	CRYPTO="@comment "
 PLIST_SUB+=	CRYPTO=""
 .endif
 
-MAN1=		yafic.1
-.if !defined(WITHOUT_OPENSSL)
-MAN1+=		yafic-sign.1
-MLINKS=		yafic-sign.1 yafic-check.1
-.endif
-MAN5=		yafic.conf.5
+PKGMESSAGE=	${WRKDIR}/pkg-message
+
+post-patch:
+	@${SED} -e "s;@@PREFIX@@;${PREFIX};g" \
+		${.CURDIR}/pkg-message > ${PKGMESSAGE}
 
-NO_STAGE=	yes
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/yafic ${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/yafic ${STAGEDIR}${PREFIX}/bin
 .if !defined(WITHOUT_OPENSSL)
-	${INSTALL_PROGRAM} ${WRKSRC}/yafic-sign ${PREFIX}/bin
-	${LN} -f ${PREFIX}/bin/yafic-sign ${PREFIX}/bin/yafic-check
+	${INSTALL_PROGRAM} ${WRKSRC}/yafic-sign ${STAGEDIR}${PREFIX}/bin
+	${LN} -sf yafic-sign ${STAGEDIR}${PREFIX}/bin/yafic-check
 .endif
-	${INSTALL_MAN} ${WRKSRC}/yafic.1 ${PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/yafic.1 ${STAGEDIR}${PREFIX}/man/man1
 .if !defined(WITHOUT_OPENSSL)
-	${INSTALL_MAN} ${WRKSRC}/yafic-sign.1 ${PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/yafic-sign.1 ${STAGEDIR}${PREFIX}/man/man1
+	${LN} -sf yafic-sign.1 ${STAGEDIR}${PREFIX}/man/man1/yafic-check.1
 .endif
-	${INSTALL_MAN} ${WRKSRC}/yafic.conf.5 ${PREFIX}/man/man5
+	${INSTALL_MAN} ${WRKSRC}/yafic.conf.5 ${STAGEDIR}${PREFIX}/man/man5
 
 post-install:
-	@${MKDIR} ${PREFIX}/share/examples/yafic
-	@${CP} ${FILESDIR}/yafic.conf.sample ${EXAMPLESDIR}
-	@${ECHO}
-	@${SED} -e "s%@@PREFIX@@%${PREFIX}%g" ${PKGMESSAGE}
-	@${ECHO}
+	@${MKDIR} ${STAGEDIR}${PREFIX}/share/examples/yafic
+	@${CP} ${FILESDIR}/yafic.conf.sample ${STAGEDIR}${EXAMPLESDIR}
 
 .include <bsd.port.mk>

Modified: head/security/yafic/pkg-plist
==============================================================================
--- head/security/yafic/pkg-plist	Sat May 10 22:31:15 2014	(r353625)
+++ head/security/yafic/pkg-plist	Sat May 10 23:00:24 2014	(r353626)
@@ -1,5 +1,9 @@
 bin/yafic
 %%CRYPTO%%bin/yafic-sign
 %%CRYPTO%%bin/yafic-check
+man/man1/yafic.1.gz
+%%CRYPTO%%man/man1/yafic-check.1.gz
+%%CRYPTO%%man/man1/yafic-sign.1.gz
+man/man5/yafic.conf.5.gz
 %%EXAMPLESDIR%%/yafic.conf.sample
 @dirrm share/examples/yafic
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 2 Raphael Kubo da Costa freebsd_committer freebsd_triage 2014-05-11 00:01:03 UTC
State Changed
From-To: open->closed

Committed, with a change in the way you call ${LN}: symlinks should be 
to relative paths, and you probably meant "-sf" instead of "-f" in the 
arguments.