Bug 172453 - [patch update] sysutils/ntfsprogs Makefile GNOME issue
Summary: [patch update] sysutils/ntfsprogs Makefile GNOME issue
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: Bryan Drewery
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-07 14:50 UTC by Kurt Jaeger
Modified: 2012-10-08 17:50 UTC (History)
0 users

See Also:


Attachments
file.diff (270 bytes, patch)
2012-10-07 14:50 UTC, Kurt Jaeger
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kurt Jaeger 2012-10-07 14:50:13 UTC
	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?
Comment 1 Bryan Drewery freebsd_committer freebsd_triage 2012-10-08 17:35:02 UTC
Responsible Changed
From-To: freebsd-ports-bugs->bdrewery

I'll take it.
Comment 2 Bryan Drewery freebsd_committer freebsd_triage 2012-10-08 17:42:12 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!
Comment 3 dfilter service freebsd_committer freebsd_triage 2012-10-08 17:42:18 UTC
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"