Bug 170771 - [PATCH] textproc/iksemel: Fails to build due to missing pkgconfig dependency
Summary: [PATCH] textproc/iksemel: Fails to build due to missing pkgconfig dependency
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-08-19 22:30 UTC by Bryan Drewery
Modified: 2012-09-02 22:30 UTC (History)
0 users

See Also:


Attachments
patch-textproc-iksemel-pkgconf.txt (622 bytes, patch)
2012-08-19 22:30 UTC, Bryan Drewery
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Bryan Drewery freebsd_committer freebsd_triage 2012-08-19 22:30:08 UTC
	Due to the recent changes with pkgconf [1], security/gnutls (a lib depends of iksemel) was changed [2] to only depend on pkgconf at build time.

	iksemel is missing a proper build dependency on pkgconfig, so it is now failing to build [3]

	Attached patch fixes to depend on pkgconfig via USE_PKGCONFIG, and also fixes LIB_DEPENDS to not use a versioned lib as any version should be ok.

	[1] http://lists.freebsd.org/pipermail/freebsd-ports/2012-July/077043.html
	[2] http://www.freshports.org/commit.php?category=security&port=gnutls&files=yes&message_id=201208151357.q7FDv1RK063257@svn.freebsd.org
	[3] http://redports.org/~bdrewery/20120818181834-46080-50801/iksemel-1.4_3.log
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-19 22:30:23 UTC
Responsible Changed
From-To: freebsd-ports-bugs->bdrewery

Submitter has GNATS access (via the GNATS Auto Assign Tool)
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-19 22:30:27 UTC
Maintainer of textproc/iksemel,

Please note that PR ports/170771 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/170771

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2012-08-19 22:30:30 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 4 dfilter service freebsd_committer freebsd_triage 2012-09-02 22:23:17 UTC
Author: bdrewery
Date: Sun Sep  2 21:23:07 2012
New Revision: 303577
URL: http://svn.freebsd.org/changeset/ports/303577

Log:
  - Fix build by adding dependency on pkgconfig
  - Remove ABI version from LIB_DEPENDS
  
  PR:		ports/170771 [1]
  Submitted by:	bdrewery [1]
  PR:		ports/171139 [2]
  Submitted by:	Frank Wall <fw@moov.de> [2]
  Approved by:	maintainer timeout (2w)
  Approved by:	bapt (mentor)

Modified:
  head/textproc/iksemel/Makefile

Modified: head/textproc/iksemel/Makefile
==============================================================================
--- head/textproc/iksemel/Makefile	Sun Sep  2 21:01:06 2012	(r303576)
+++ head/textproc/iksemel/Makefile	Sun Sep  2 21:23:07 2012	(r303577)
@@ -14,7 +14,7 @@ MASTER_SITES=	${MASTER_SITE_GOOGLE_CODE}
 MAINTAINER=	rhaamo@gruik.at
 COMMENT=	XML parser library mainly designed for Jabber applications
 
-LIB_DEPENDS=	gnutls.47:${PORTSDIR}/security/gnutls
+LIB_DEPENDS=	gnutls:${PORTSDIR}/security/gnutls
 
 USE_AUTOTOOLS=	aclocal autoheader automake autoconf libtool
 ACLOCAL_ARGS=	-I ${LOCALBASE}/share/aclocal
@@ -22,6 +22,7 @@ GNU_CONFIGURE=	yes
 CPPFLAGS+=	${CXXFLAGS} -I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 USE_LDCONFIG=	yes
+USE_PKGCONFIG=	build
 
 INFO=	iksemel
 
_______________________________________________
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 5 Bryan Drewery freebsd_committer freebsd_triage 2012-09-02 22:23:29 UTC
State Changed
From-To: feedback->closed

Committed due to 2 week maintainer timeout.