diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-08-05 04:25:24 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-08-05 04:25:24 +0000 |
commit | e2b6660a18c42ab4696334d192a211710132b146 (patch) | |
tree | 354f1d30e2a6cad8c808905a1710adc220db9cb6 /cad/gerbv/Makefile | |
parent | 73bcd085656b7fd633e629f651bf26b22d2d6c41 (diff) | |
download | FreeBSD-ports-e2b6660a18c42ab4696334d192a211710132b146.zip FreeBSD-ports-e2b6660a18c42ab4696334d192a211710132b146.tar.gz |
switch to GNOMENG
Enable PNG support properly
PR: 41027
Submitted by: Ports Fury
Diffstat (limited to 'cad/gerbv/Makefile')
-rw-r--r-- | cad/gerbv/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/cad/gerbv/Makefile b/cad/gerbv/Makefile index 0db09da..601284f 100644 --- a/cad/gerbv/Makefile +++ b/cad/gerbv/Makefile @@ -8,33 +8,34 @@ PORTNAME= gerbv PORTVERSION= 0.0.9 +#PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org -LIB_DEPENDS= gdk_pixbuf:${PORTSDIR}/graphics/gdk-pixbuf \ - png:${PORTSDIR}/graphics/png \ - gnugetopt:${PORTSDIR}/devel/libgnugetopt +LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt USE_REINPLACE= yes -USE_GTK= yes +USE_GNOMENG= yes +USE_GNOME= gdkpixbuf GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt" +CONFIGURE_ARGS= --enable-exportpng MAN1= gerbv.1 post-patch: @${REINPLACE_CMD} -e "s|malloc.h|stdlib.h|g" ${WRKSRC}/src/amacro.c -.if !defined(NOPORTDOCS) post-install: +.if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} + cd ${WRKSRC}/doc && pax -rw . ${DOCSDIR} @${MKDIR} ${EXAMPLESDIR} - ${CP} -R ${WRKSRC}/example/* ${EXAMPLESDIR} + cd ${WRKSRC}/example && pax -rw . ${EXAMPLESDIR} .endif .include <bsd.port.mk> |