Bug 177379 - package building for x11/gnome-applets fails
Summary: package building for x11/gnome-applets fails
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: freebsd-gnome (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-25 18:50 UTC by Stephen Montgomery-Smith
Modified: 2013-03-25 19:10 UTC (History)
0 users

See Also:


Attachments
file.diff (433 bytes, patch)
2013-03-25 18:50 UTC, Stephen Montgomery-Smith
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Stephen Montgomery-Smith freebsd_committer freebsd_triage 2013-03-25 18:50:00 UTC
If making a package or deinstalling x11/gnome-applets, it is obvious that some
entries in PLIST_SUB were not set properly.

How-To-Repeat: cd /usr/ports/x11/gnome-applets && make package
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-25 18:50:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->gnome

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-03-25 19:08:56 UTC
Author: kwm
Date: Mon Mar 25 19:08:43 2013
New Revision: 315241
URL: http://svnweb.freebsd.org/changeset/ports/315241

Log:
  Make plist_SUB add not overwrite.
  
  PR:		ports/177379
  Submitted by:	stephen@

Modified:
  head/x11/gnome-applets/Makefile

Modified: head/x11/gnome-applets/Makefile
==============================================================================
--- head/x11/gnome-applets/Makefile	Mon Mar 25 18:44:20 2013	(r315240)
+++ head/x11/gnome-applets/Makefile	Mon Mar 25 19:08:43 2013	(r315241)
@@ -74,10 +74,10 @@ PLIST_SUB+=	PYTHON="@comment "
 
 .if ${ARCH} != "i386" && ${ARCH} != "amd64"
 CFLAGS+=	-fPIC
-PLIST_SUB=	BATTERY="@comment "
+PLIST_SUB+=	BATTERY="@comment "
 .else
 GCONF_SCHEMAS+=	battstat.schemas
-PLIST_SUB=	BATTERY=""
+PLIST_SUB+=	BATTERY=""
 .endif
 
 .if ${ARCH} != "i386" && ${ARCH} != "amd64"
_______________________________________________
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 3 Koop Mast freebsd_committer freebsd_triage 2013-03-25 19:09:04 UTC
State Changed
From-To: open->closed

Committed thanks! 
I was onder the impression that I had this already fixed. Thanks for the report.