Bug 170741 - [MAINTAINER] games/sets: Makefile changed, OptionsNG
Summary: [MAINTAINER] games/sets: Makefile changed, 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: Jason Helfman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-18 14:40 UTC by nemysis
Modified: 2012-08-21 10:30 UTC (History)
1 user (show)

See Also:


Attachments
sets-1.0.0_1.patch (793 bytes, patch)
2012-08-18 14:40 UTC, nemysis
no flags Details | Diff
sets.diff (944 bytes, patch)
2012-08-20 21:52 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 2012-08-18 14:40:07 UTC
Makefile changed:

Changed all to ${PORTNAME}

OptionsNG

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MDOCS}

Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports)
Comment 1 Po-Chuan Hsieh freebsd_committer freebsd_triage 2012-08-18 17:09:10 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sunpoet

I'll take it.
Comment 2 Po-Chuan Hsieh freebsd_committer freebsd_triage 2012-08-20 12:00:34 UTC
Responsible Changed
From-To: sunpoet->jgh

Jason would like to take nemysis's PRs.
Comment 3 dfilter service freebsd_committer freebsd_triage 2012-08-21 10:21:50 UTC
Author: jgh
Date: Tue Aug 21 09:21:36 2012
New Revision: 302851
URL: http://svn.freebsd.org/changeset/ports/302851

Log:
  - optionsNG for DOCS
  
  PR:     170741
  Submitted by:   maintainer, nemysis@gmx.ch

Modified:
  head/games/sets/Makefile   (contents, props changed)

Modified: head/games/sets/Makefile
==============================================================================
--- head/games/sets/Makefile	Tue Aug 21 09:15:20 2012	(r302850)
+++ head/games/sets/Makefile	Tue Aug 21 09:21:36 2012	(r302851)
@@ -20,21 +20,21 @@ USE_GMAKE=	yes
 ALL_TARGET=	${PORTNAME}
 USE_SDL=	sdl image
 
-PLIST_FILES=	bin/sets
+PLIST_FILES=	bin/${PORTNAME}
 
 PORTDOCS=	README
 
+.include <bsd.port.options.mk>
+
 do-install:
 # Executable
 	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
 
 post-install:
 # Documentation
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 	${MKDIR} ${DOCSDIR}
-.  for f in ${PORTDOCS}
-	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
-.  endfor
+	${INSTALL_DATA} ${WRKSRC}/README ${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 4 Jason Helfman freebsd_committer freebsd_triage 2012-08-21 10:22:14 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!