mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
65 lines
1.6 KiB
Makefile
65 lines
1.6 KiB
Makefile
PORTNAME= gdome2
|
|
PORTVERSION= 0.8.1
|
|
PORTREVISION= 15
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://gdome2.cs.unibo.it/tarball/
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Gnome DOM Engine
|
|
WWW= http://gdome2.cs.unibo.it/
|
|
|
|
LICENSE= GPLv2 LGPL21
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
|
|
LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB
|
|
|
|
USES= gnome libtool localbase pathfix pkgconfig
|
|
USE_GNOME= glib20 libxml2
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
|
CONFIGURE_ENV= GLIB_CONFIG="${LOCALBASE}/bin/pkg-config glib-2.0"
|
|
|
|
INSTALL_TARGET= install-strip
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${DISTNAME}
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400091 || ( ${OSVERSION} >= 1302507 && ${OSVERSION} < 1400000 ))
|
|
CFLAGS+= -Wno-error=incompatible-function-pointer-types
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -type f -and \
|
|
'(' -name '*.[ch]' -or -name '*.xml' ')' | \
|
|
${XARGS} ${REINPLACE_CMD} -e ' \
|
|
s,<parser\.h>,<libxml/parser.h>,; \
|
|
s,<hash\.h>,<libxml/hash.h>,; \
|
|
s,<xmlmemory\.h>,<libxml/xmlmemory.h>,; \
|
|
s,<tree\.h>,<libxml/tree.h>,; \
|
|
s,<xmlerror\.h>,<libxml/xmlerror.h>,; \
|
|
s,<xmlIO\.h>,<libxml/xmlIO.h>,; \
|
|
s,<parserInternals\.h>,<libxml/parserInternals.h>,; \
|
|
s,<entities\.h>,<libxml/entities.h>,'
|
|
|
|
post-patch-DOCS-on:
|
|
@${REINPLACE_CMD} -E -e \
|
|
's,^(HTML_DIR *= *).*,\1\$$(DESTDIR)$$(prefix)/share/doc,' \
|
|
${WRKSRC}/gtk-doc/Makefile.in
|
|
|
|
post-patch-DOCS-off:
|
|
@${REINPLACE_CMD} '/gtk-doc/d' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgdome.so
|
|
|
|
.include <bsd.port.mk>
|