| Summary: | Fixing the security/kc build missing pkg-config | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Daniel <leva> | ||||
| Component: | Individual Port(s) | Assignee: | Po-Chuan Hsieh <sunpoet> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Daniel
2013-09-14 15:50:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->sunpoet I'll take it. State Changed From-To: open->closed Committed. Thanks! Author: sunpoet Date: Sat Sep 14 16:32:56 2013 New Revision: 327300 URL: http://svnweb.freebsd.org/changeset/ports/327300 Log: - Fix build - While I'm here: - Pet portlint: move USES downward - Convert to new LIB_DEPENDS format PR: ports/182096 Submitted by: LEVAI Daniel <leva@ecentrum.hu> (maintainer) Modified: head/security/kc/Makefile Modified: head/security/kc/Makefile ============================================================================== --- head/security/kc/Makefile Sat Sep 14 15:53:45 2013 (r327299) +++ head/security/kc/Makefile Sat Sep 14 16:32:56 2013 (r327300) @@ -11,11 +11,12 @@ COMMENT= Console based password storing LICENSE= BSD -USES= pkgconfig -LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 \ - pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 \ + libpcre.so:${PORTSDIR}/devel/pcre RUN_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser +USES= pkgconfig + MAN1= kc.1 MANCOMPRESSED= yes @@ -25,6 +26,9 @@ PLIST_FILES= bin/kc \ MAKE_ENV+= HAVE_PCRE=yes +post-patch: + @${REINPLACE_CMD} -e 's|pkg-config|${LOCALBASE}/bin/pkgconf|' ${WRKSRC}/Makefile + post-install: ${INSTALL} -d ${PREFIX}/share/kc ${INSTALL} ${WRKSRC}/pwsafe_to_kc.pl ${PREFIX}/share/kc/ _______________________________________________ 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" |