diff options
author | edwin <edwin@FreeBSD.org> | 2004-12-22 00:40:53 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-12-22 00:40:53 +0000 |
commit | b06eaad449fdb5f3ce4937bc98e39fafc02cb9e6 (patch) | |
tree | e70e9de0280c2a0f34e4fcc3d83953961021daa2 /deskutils | |
parent | 245dbf325089cf4b16d84cfc32edb7fb870537eb (diff) | |
download | FreeBSD-ports-b06eaad449fdb5f3ce4937bc98e39fafc02cb9e6.zip FreeBSD-ports-b06eaad449fdb5f3ce4937bc98e39fafc02cb9e6.tar.gz |
[ patch ] fix logjam + gtkhtml3 problem
LogJam's configure script tries to find libgtkhtml-3.0,
while we have libgtkhtml-3.1 in ports tree. Of cource, it
fails to do so and as a result we have logjam compiled
without gtkhtml support even if gtkhtml3 is installed.
PR: ports/74260
Submitted by: Roman Bogorodskiy <bogorodskiy@inbox.ru>
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/logjam/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/deskutils/logjam/Makefile b/deskutils/logjam/Makefile index e278535..893e01d 100644 --- a/deskutils/logjam/Makefile +++ b/deskutils/logjam/Makefile @@ -7,7 +7,7 @@ PORTNAME= logjam PORTVERSION= 4.4.0 -PORTREVISION?= 3 +PORTREVISION= 4 CATEGORIES= deskutils MASTER_SITES= http://logjam.danga.com/download/ @@ -24,6 +24,7 @@ LIB_DEPENDS= curl.3:${PORTSDIR}/ftp/curl MAN1= logjam.1 +USE_REINPLACE= yes USE_BZIP2= yes USE_GMAKE= yes WANT_GNOME= yes @@ -69,4 +70,7 @@ pre-everything:: @${ECHO_MSG} " WITH_XMMS Enable XMMS music detection" @${ECHO_MSG} "" +post-patch: + @${REINPLACE_CMD} -e 's|libgtkhtml-3.0|libgtkhtml-3.1|g' ${WRKSRC}/configure + .include <bsd.port.post.mk> |