Bug 190079 - net/iodine does not support staging
Summary: net/iodine does not support staging
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: David Thiel
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-05-21 18:30 UTC by freebsd
Modified: 2014-05-23 00:00 UTC (History)
1 user (show)

See Also:


Attachments
iodine.patch (1.29 KB, patch)
2014-05-21 18:30 UTC, freebsd
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description freebsd 2014-05-21 18:30:00 UTC
	net/iodine does not support staging
	add license information

Fix: Apply attached patch.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-05-21 18:30:04 UTC
Responsible Changed
From-To: freebsd-ports-bugs->lx

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-05-22 23:54:29 UTC
Author: lx
Date: Thu May 22 22:54:25 2014
New Revision: 354895
URL: http://svnweb.freebsd.org/changeset/ports/354895
QAT: https://qat.redports.org/buildarchive/r354895/

Log:
  Stageify and add license.
  
  PR: ports/190079
  Submitted by: freebsd@nagilum.org

Modified:
  head/net/iodine/Makefile

Modified: head/net/iodine/Makefile
==============================================================================
--- head/net/iodine/Makefile	Thu May 22 22:33:36 2014	(r354894)
+++ head/net/iodine/Makefile	Thu May 22 22:54:25 2014	(r354895)
@@ -11,7 +11,9 @@ DISTNAME=	${PORTNAME}-0.6.0-rc1
 MAINTAINER=	lx@FreeBSD.org
 COMMENT=	Tunnel IPv4 data through a DNS server
 
-PLIST_FILES=	bin/iodine sbin/iodined
+LICENSE=	BSD
+
+PLIST_FILES=	bin/iodine sbin/iodined man/man8/iodine.8.gz man/man8/iodined.8.gz
 
 PORTDOCS=	CHANGELOG README TODO
 
@@ -20,19 +22,20 @@ MLINKS=		iodine.8 iodined.8
 
 USE_RC_SUBR=	iodined
 
-NO_STAGE=	yes
 .include <bsd.port.pre.mk>
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/bin/iodine ${PREFIX}/bin
-	${INSTALL_PROGRAM} ${WRKSRC}/bin/iodined ${PREFIX}/sbin
+	${INSTALL_PROGRAM} ${WRKSRC}/bin/iodine ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/bin/iodined ${STAGEDIR}${PREFIX}/sbin
 .for m in ${MAN8}
-	${INSTALL_MAN} ${WRKSRC}/man/${m} ${MANPREFIX}/man/man8
+	${INSTALL_MAN} ${WRKSRC}/man/${m} ${STAGEDIR}${MANPREFIX}/man/man8
 .endfor
-.if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
+	${GZIP_CMD} ${STAGEDIR}${MANPREFIX}/man/man8/iodine.8
+	${LN} -s iodine.8.gz ${STAGEDIR}${MANPREFIX}/man/man8/iodined.8.gz
+.if !defined(PORT_OPTIONS:MDOCS)
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for f in ${PORTDOCS}
-	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
 .endfor
 .endif
 
_______________________________________________
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 3 David Thiel freebsd_committer freebsd_triage 2014-05-22 23:55:02 UTC
State Changed
From-To: open->closed

Committed, thanks!