make fails due to missing GNOME flag If one does not compile with the gnome options, one does not need the WANT_GNOME=yes, but I'm not sure how to conditionally integrate the WANT_GNOME-flag before bsd.port.pre.mk. How-To-Repeat: # cd /usr/ports/sysutils/ntfsprogs/ # make "/usr/ports/Mk/bsd.gnome.mk", line 657: The Pre include part of bsd.gnome.mk part is not included. Did you forget WANT_GNOME=yes before bsd.port.pre.mk?
Responsible Changed From-To: freebsd-ports-bugs->bdrewery I'll take it.
State Changed From-To: open->closed Committed, with minor changes. Thanks!
Author: bdrewery Date: Mon Oct 8 16:42:09 2012 New Revision: 305546 URL: http://svn.freebsd.org/changeset/ports/305546 Log: - Fix build when selecting GNOMEVFS2 option PR: ports/172453 Submitted by: Kurt Jaeger <fbsd-ports@opsec.eu> (based on) Modified: head/sysutils/ntfsprogs/Makefile Modified: head/sysutils/ntfsprogs/Makefile ============================================================================== --- head/sysutils/ntfsprogs/Makefile Mon Oct 8 16:22:29 2012 (r305545) +++ head/sysutils/ntfsprogs/Makefile Mon Oct 8 16:42:09 2012 (r305546) @@ -38,6 +38,12 @@ MLINKS= ntfsmount.8 mount_ntfs-fuse.8 SUB_FILES= pkg-message +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MGNOMEVFS2} +WANT_GNOME= yes +.endif + .include <bsd.port.pre.mk> .if ${ARCH} == "i386" _______________________________________________ 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"