diff options
author | marcus <marcus@FreeBSD.org> | 2005-04-02 19:14:53 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2005-04-02 19:14:53 +0000 |
commit | 3eb6270ec4203acf9716385f30ffff2f714a5500 (patch) | |
tree | a0124daff5872a044ded1b518553645dbc723d5c /graphics/poppler | |
parent | 83e57e08f7142c25fd360a4faaf09e2005e22f66 (diff) | |
download | FreeBSD-ports-3eb6270ec4203acf9716385f30ffff2f714a5500.zip FreeBSD-ports-3eb6270ec4203acf9716385f30ffff2f714a5500.tar.gz |
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.
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 e20ccd7..c0c118b 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> |