Summary: | sysutils/bsdadminscripts : install broken | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Olivier <olivier> | ||||
Component: | Individual Port(s) | Assignee: | Jason Helfman <jgh> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Olivier
2012-12-20 15:40:00 UTC
Maintainer of sysutils/bsdadminscripts, Please note that PR ports/174590 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/174590 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) The following patch can be applied, the "NOPORTDOCS" variable should not be used for internal manipulation of arbitrary values in the Makefile, another name should be used. The patch uses the "DOCS" name, I don't know if that's the best choice. -- Olivier Smedts _ ASCII ribbon campaign ( ) e-mail: olivier@gid0.org - against HTML email & vCards X www: http://www.gid0.org - against proprietary attachments / \ "Il y a seulement 10 sortes de gens dans le monde : ceux qui comprennent le binaire, et ceux qui ne le comprennent pas." State Changed From-To: feedback->open feedback timeout, 2+ months Responsible Changed From-To: freebsd-ports-bugs->jgh feedback timeout, 2+ months Author: jgh Date: Tue Mar 5 07:40:45 2013 New Revision: 313441 URL: http://svnweb.freebsd.org/changeset/ports/313441 Log: - fix NOPORTDOCS installation - while here tighten COMMENT and adoption of optionsNG for DOCS PR: 174590 PR: 170542 Submitted by: olivier@gid0.org Approved by: maintainer timeout, kamikaze@bsdforen.de ( 75 days ) Modified: head/sysutils/bsdadminscripts/Makefile Modified: head/sysutils/bsdadminscripts/Makefile ============================================================================== --- head/sysutils/bsdadminscripts/Makefile Tue Mar 5 07:26:03 2013 (r313440) +++ head/sysutils/bsdadminscripts/Makefile Tue Mar 5 07:40:45 2013 (r313441) @@ -8,15 +8,15 @@ CATEGORIES= sysutils ports-mgmt MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= kamikaze@bsdforen.de -COMMENT= A collection of administration scripts +COMMENT= Collection of administration scripts WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src NO_BUILD= yes MANCOMPRESSED= yes -.if defined(NOPORTDOCS) -NOPORTDOCS= -nodoc -.else +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MDOCS} MAN1= bsdadminscripts.1 \ buildflags.mk.1 buildflags.conf.1 buildflags.awk.1 \ distviper.1 \ @@ -32,6 +32,8 @@ PORT_SCRIPTS= build clean fetch package config-recursive fetch-recursive MLINKS+= ${RC_SCRIPTS:S,^,rc,:S,$,.1,:S,^,rcstart.1 ,} \ ${PORT_SCRIPTS:S,^,port,:S,$,.1,:S,^,portconfig.1 ,} +.else +EVALDOCS= -nodoc .endif plist: patch @@ -41,6 +43,6 @@ plist: patch do-install: @cd ${WRKSRC}; ./install.sh \ -prefix=${PREFIX} -ports=${PORTSDIR} -distdir=${DISTDIR} \ - -datadir=${DATADIR} ${NOPORTDOCS} + -datadir=${DATADIR} ${EVALDOCS} .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" State Changed From-To: open->closed Committed, with minor changes. Thanks! |