The build failed for me with ===> docproj-1.17_6 user must set WITH_JADETEX variable to 'yes' or 'no'. *** [install] Error code 1 Stop in /usr/ports/textproc/docproj. Fix: Use the attached patch. Patch attached with submission follows: How-To-Repeat: Build /usr/ports/textproc/docproj. I see there are textproc/docproj-{,no}jadetex ports as well, which set WITH_JADETEX appropriately.
Responsible Changed From-To: freebsd-bugs->freebsd-ports-bugs reassign.
Responsible Changed From-To: freebsd-ports-bugs->doceng Over to maintainer (via the GNATS Auto Assign Tool)
Did you try building as it is suggested? make -DWITH_JADETEX or make -DWITHOUT_JADETEX This should work, as designed. That being said, maybe the port can be massaged to be more user friendly in the way of ports/packages with an option, and pkgsuffix (ie. similiar to -nox11) -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve On Thu, Jan 3, 2013 at 1:31 PM, <edwin@freebsd.org> wrote: > Synopsis: [patch] textproc/docproj fails to build > > Responsible-Changed-From-To: freebsd-ports-bugs->doceng > Responsible-Changed-By: edwin > Responsible-Changed-When: Thu Jan 3 21:31:37 UTC 2013 > Responsible-Changed-Why: > Over to maintainer (via the GNATS Auto Assign Tool) > > http://www.freebsd.org/cgi/query-pr.cgi?pr=174952 > _______________________________________________ > freebsd-ports-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs > To unsubscribe, send any mail to " > freebsd-ports-bugs-unsubscribe@freebsd.org" >
On Thu, Jan 03, 2013 at 02:53:09PM -0800, Jason Helfman wrote: > Did you try building as it is suggested? > > make -DWITH_JADETEX > or > make -DWITHOUT_JADETEX > > This should work, as designed. That being said, maybe the port can be > massaged to be more user friendly in the way of ports/packages with an > option, and pkgsuffix (ie. similiar to -nox11) -jadetex and -nojadetex PKGSUFFIXes already exist. I agree with Mark that the default behavior is wrong, and am waiting for feedback before committing the proposed change. Glen
Author: gjb Date: Thu Jan 3 23:04:00 2013 New Revision: 309908 URL: http://svnweb.freebsd.org/changeset/ports/309908 Log: Unset WITH_JADETEX if not otherwise specified. PR: ports/174952 Submitted by: markj Approved by: doceng (implicit), eadler (mentor) Modified: head/textproc/docproj/Makefile Modified: head/textproc/docproj/Makefile ============================================================================== --- head/textproc/docproj/Makefile Thu Jan 3 21:59:30 2013 (r309907) +++ head/textproc/docproj/Makefile Thu Jan 3 23:04:00 2013 (r309908) @@ -53,7 +53,7 @@ RUN_DEPENDS+= jade:${PORTSDIR}/textproc/ .if defined(JADETEX) WITH_JADETEX= ${JADETEX} .endif -WITH_JADETEX?= +WITH_JADETEX?= no .if defined(PACKAGE_BUILDING) WITH_JADETEX= yes _______________________________________________ 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, thanks!