Bug 177120 - [PATCH] graphics/piddle: Convert to OptionsNG
Summary: [PATCH] graphics/piddle: Convert to OptionsNG
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: Beech Rintoul
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-19 20:20 UTC by nemysis
Modified: 2013-03-21 20:00 UTC (History)
0 users

See Also:


Attachments
py27-piddle-1.0.15,1.patch (870 bytes, patch)
2013-03-19 20:20 UTC, nemysis
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description nemysis 2013-03-19 20:20:03 UTC
Generated and tested manually, tested with port test, sent with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-19 20:20:41 UTC
Responsible Changed
From-To: freebsd-ports-bugs->beech

beech@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-03-21 19:53:23 UTC
Author: beech
Date: Thu Mar 21 19:53:15 2013
New Revision: 314866
URL: http://svnweb.freebsd.org/changeset/ports/314866

Log:
  - Convert to OptionsNG
  
  PR:		ports/177120
  Submitted by:	nemysis <nemysis@gmx.ch>

Modified:
  head/graphics/piddle/Makefile   (contents, props changed)

Modified: head/graphics/piddle/Makefile
==============================================================================
--- head/graphics/piddle/Makefile	Thu Mar 21 19:13:29 2013	(r314865)
+++ head/graphics/piddle/Makefile	Thu Mar 21 19:53:15 2013	(r314866)
@@ -1,9 +1,5 @@
-# Ports collection makefile for:	piddle
-# Date created:				29 Feb 2000
-# Whom:					dom@happygiraffe.net
-#
+# Created by: dom@happygiraffe.net
 # $FreeBSD$
-#
 
 PORTNAME=	piddle
 PORTVERSION=	1.0.15
@@ -18,14 +14,13 @@ COMMENT=	Graphical Drawing library for P
 USE_PYTHON=	yes
 USE_PYDISTUTILS=	yes
 
-.if !defined(NOPORTDOCS)
 PORTDOCS=	*
-.endif
+
+.include <bsd.port.options.mk>
 
 post-install:
-.if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
-	(cd ${WRKSRC}/docs ; tar cf - *) | (cd ${DOCSDIR} ; tar xf -)
+.if ${PORT_OPTIONS:MDOCS}
+	(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* ${DOCSDIR})
 .endif
 
 .include <bsd.port.mk>
_______________________________________________
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 Beech Rintoul freebsd_committer freebsd_triage 2013-03-21 19:53:50 UTC
State Changed
From-To: open->closed

Committed, Thanks!