diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-02 19:14:53 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-04-02 19:14:53 +0000 |
commit | 94b062ef00de44a33e8f3ca8e4c906e22c0c250b (patch) | |
tree | 2869eaaa33c4df96ef4ad357d910a08c0738c251 /graphics/poppler | |
parent | 08918c14c47aae301aa03f97966042515b77d437 (diff) | |
download | ports-94b062ef00de44a33e8f3ca8e4c906e22c0c250b.tar.gz ports-94b062ef00de44a33e8f3ca8e4c906e22c0c250b.zip |
Fix up the pkg-config files so they don't reference a non-existent
poppler-0.1.2.pc. This cleans up pkg-config --list-all.
Notes
Notes:
svn path=/head/; revision=132232
Diffstat (limited to 'graphics/poppler')
-rw-r--r-- | graphics/poppler/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile index e20ccd7bf781..c0c118bf3043 100644 --- a/graphics/poppler/Makefile +++ b/graphics/poppler/Makefile @@ -7,6 +7,7 @@ PORTNAME= poppler PORTVERSION= 0.1.2 +PORTREVISION= 1 CATEGORIES= graphics print MASTER_SITES= http://poppler.freedesktop.org/ @@ -20,7 +21,13 @@ USE_GMAKE= yes USE_LIBTOOL_VER=15 USE_GNOME= gnomeprefix gnomehack gtk20 INSTALLS_SHLIB= yes +USE_REINPLACE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +post-patch: + @${REINPLACE_CMD} -e 's|poppler-[@]VERSION[@]|poppler|g' \ + ${WRKSRC}/poppler-cairo.pc.in \ + ${WRKSRC}/poppler-splash.pc.in + .include <bsd.port.mk> |