diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-09-23 07:19:35 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2003-09-23 07:19:35 +0800 |
commit | ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a (patch) | |
tree | c555e8ad6daab9bb528d46753eabeeed7875abe9 /www/gtkhtml/Makefile | |
parent | 46a534e52f7ead23e61423236ab50949ada36a55 (diff) | |
download | marcuscom-ports-ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a.tar marcuscom-ports-ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a.tar.gz marcuscom-ports-ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a.tar.bz2 marcuscom-ports-ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a.tar.lz marcuscom-ports-ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a.tar.xz marcuscom-ports-ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a.tar.zst marcuscom-ports-ddcbedc85be2d5a7a362a0a005ddbb938a0b8d6a.zip |
Add gtkhtml, and remove gconf support. This fixes crashes encountered in
apps such as GnuCash when trying to view reports or help documents.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1243 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/gtkhtml/Makefile')
-rw-r--r-- | www/gtkhtml/Makefile | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/www/gtkhtml/Makefile b/www/gtkhtml/Makefile new file mode 100644 index 000000000..f06ca8797 --- /dev/null +++ b/www/gtkhtml/Makefile @@ -0,0 +1,51 @@ +# New ports collection makefile for: gtkhtml +# Date created: 2nd June 2000 +# Whom: Ade Lovett <ade@FreeBSD.org> +# +# $FreeBSD: ports/www/gtkhtml/Makefile,v 1.60 2003/06/12 09:46:06 adamw Exp $ +# + +PORTNAME= gtkhtml +PORTVERSION= 1.1.10 +PORTREVISION= 1 +CATEGORIES= www gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.1 +DIST_SUBDIR= gnome + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Lightweight HTML rendering/printing/editing engine + +LIB_DEPENDS= pspell.15:${PORTSDIR}/textproc/aspell + +USE_BZIP2= yes +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_GNOME= gnomehack gnomeprefix gnomehier glibwww libghttp libcapplet gal +INSTALLS_SHLIB= yes +USE_LIBTOOL= yes +USE_REINPLACE= yes +CONFIGURE_ARGS= --with-gconf=no +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +VERSION= ${PORTNAME}-${PORTVERSION} + +.include <bsd.port.pre.mk> + +.if exists(${LOCALBASE}/libdata/pkgconfig/soup.pc) || !defined(WITHOUT_SOUP) +LIB_DEPENDS+= soup.6:${PORTSDIR}/devel/soup +.endif + +post-configure: + @${SED} -e 's|%%PREFIX%%|${PREFIX}|g ; \ + s|%%LOCALBASE%%|${LOCALBASE}|g ; \ + s|%%X11BASE%%|${X11BASE}|g ; \ + s|%%VERSION%%|${VERSION}|g' ${FILESDIR}/gtkhtmlConf.sh \ + > ${WRKSRC}/gtkhtmlConf.sh + +post-install: + ${INSTALL_DATA} ${WRKSRC}/gtkhtmlConf.sh \ + ${PREFIX}/etc/gtkhtmlConf.sh + +.include <bsd.port.post.mk> |