Bug 183910 - [maintainer update] Fix x11/xscreensaver.app to build on 10.0
Summary: [maintainer update] Fix x11/xscreensaver.app to build on 10.0
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-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-13 03:30 UTC by Josh Tolbert
Modified: 2013-11-20 19:50 UTC (History)
0 users

See Also:


Attachments
xscreensaver.app.diff (419 bytes, patch)
2013-11-13 03:30 UTC, Josh Tolbert
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Josh Tolbert 2013-11-13 03:30:00 UTC
x11/xscreensaver.app needed some fixing up to build properly on 10.0. Build
and install tested on both 10.0 and 9.2.

Fix: Apply attached patch.
How-To-Repeat: On a 10.0 machine, cd /usr/ports/x11/xscreensaver.app && make install clean

Watch the build break with a linker error.
Comment 1 dfilter service freebsd_committer freebsd_triage 2013-11-20 19:49:22 UTC
Author: rakuco
Date: Wed Nov 20 19:49:14 2013
New Revision: 334446
URL: http://svnweb.freebsd.org/changeset/ports/334446

Log:
  Fix build on 10 and HEAD.
  
  PR:		ports/183910
  Submitted by:	Josh Tolbert <hemi@puresimplicity.net> (maintainer)

Modified:
  head/x11/xscreensaver.app/Makefile

Modified: head/x11/xscreensaver.app/Makefile
==============================================================================
--- head/x11/xscreensaver.app/Makefile	Wed Nov 20 19:47:42 2013	(r334445)
+++ head/x11/xscreensaver.app/Makefile	Wed Nov 20 19:49:14 2013	(r334446)
@@ -17,7 +17,7 @@ GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-MAKE_ARGS=	"LDFLAGS+=-L${LOCALBASE}/lib"
+MAKE_ARGS=	"LDFLAGS+=-L${LOCALBASE}/lib -lX11"
 
 NO_STAGE=	yes
 .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"
Comment 2 Raphael Kubo da Costa freebsd_committer freebsd_triage 2013-11-20 19:49:34 UTC
State Changed
From-To: open->closed

Committed. Thanks!