Bug 169588 - news/suck makefile needs a change for news/inn 2.5.2
Summary: news/suck makefile needs a change for news/inn 2.5.2
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: Dirk Meyer
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-07-02 04:50 UTC by John Levine
Modified: 2012-07-17 18:18 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description John Levine 2012-07-02 04:50:14 UTC
inn 2.5.2 moves include files from news/include to news/include/inn which breaks suck

Fix: 

Change line 44 of the port Makefile to:

MAKE_ENV+=	DB_INC_LOC="-I${LOCALBASE}/news/include -I${LOCALBASE}/news/include/inn"

(that's supposed to be one line)
How-To-Repeat: update to inn 2.5.2, try to build suck
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-07-03 12:07:30 UTC
Responsible Changed
From-To: freebsd-ports-bugs->fluffy

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Mark Linimon freebsd_committer freebsd_triage 2012-07-16 03:45:27 UTC
Responsible Changed
From-To: fluffy->dinoex

Over to maintainer of news/suck.
Comment 3 dfilter service freebsd_committer freebsd_triage 2012-07-17 05:59:43 UTC
Author: dinoex
Date: Tue Jul 17 04:59:29 2012
New Revision: 300990
URL: http://svn.freebsd.org/changeset/ports/300990

Log:
  - fix build after inn has moved includes.
  PR:		169588
  Submitted by:	John Levine

Modified:
  head/news/suck/Makefile

Modified: head/news/suck/Makefile
==============================================================================
--- head/news/suck/Makefile	Tue Jul 17 03:18:44 2012	(r300989)
+++ head/news/suck/Makefile	Tue Jul 17 04:59:29 2012	(r300990)
@@ -41,7 +41,7 @@ CFLAGS+=	-DNO_CONFIGDATA -I${LOCALBASE}/
 MAKE_ENV+=	DB_TYPE="-DUSE_INN23 -DDO_TAGGED_HASH"
 MAKE_ENV+=	DB_LIB="-linn -lstorage"
 MAKE_ENV+=	DB_LIB_LOC=-L${LOCALBASE}/news/lib
-MAKE_ENV+=	DB_INC_LOC=-I${LOCALBASE}/news/include
+MAKE_ENV+=	DB_INC_LOC="-I${LOCALBASE}/news/include -I${LOCALBASE}/news/include/inn"
 MAKE_ENV+=	INCDIR2=-I${LOCALBASE}/include
 BUILD_DEPENDS+=	${LOCALBASE}/news/lib/libinn.a:${PORTSDIR}/news/inn
 CONFLICTS+=	suck-cnews-4.*
_______________________________________________
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 4 Dirk Meyer freebsd_committer freebsd_triage 2012-07-17 18:18:14 UTC
State Changed
From-To: open->closed

committed, thanks.