diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2013-12-15 19:24:24 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2013-12-15 19:24:24 +0000 |
commit | 87b9637c66101be50e01b8c89de01c8e178023d6 (patch) | |
tree | f0cb8c8d596b638d765bb24f1e4f5bb543900754 /misc | |
parent | 23f18f31d28e919a17641967a74fd4b6d045afd7 (diff) | |
download | ports-87b9637c66101be50e01b8c89de01c8e178023d6.tar.gz ports-87b9637c66101be50e01b8c89de01c8e178023d6.zip |
Notes
Diffstat (limited to 'misc')
-rw-r--r-- | misc/magicpoint/Makefile | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/misc/magicpoint/Makefile b/misc/magicpoint/Makefile index 4b6217764aba..19a3bd2b5c91 100644 --- a/misc/magicpoint/Makefile +++ b/misc/magicpoint/Makefile @@ -10,8 +10,8 @@ MASTER_SITES= ftp://sh.wide.ad.jp/WIDE/free-ware/mgp/ MAINTAINER= dinoex@FreeBSD.org COMMENT= An X11-based presentation tool -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png \ - mng:${PORTSDIR}/graphics/libmng +LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png \ + libmng.so:${PORTSDIR}/graphics/libmng RUN_DEPENDS+= pnmscale:${PORTSDIR}/graphics/netpbm MAKE_JOBS_UNSAFE= yes @@ -46,24 +46,18 @@ NO_OPTIONS_SORT=yes FREETYPE_CONFIGURE_ENABLE= freetype XFT_USES= iconv +XFT_USE= XORG=xft XFT_LIB_DEPENDS= libttf.so:${PORTSDIR}/print/freetype XFT_CONFIGURE_ENABLE= xft2 XFT_CONFIGURE_ON= --enable-freetype-charset16 GIF_CONFIGURE_ENABLE= gif GIF_LIB_DEPENDS= libgif.so:${PORTSDIR}/graphics/giflib GIF_CPPFLAGS= -I${LOCALBASE}/include +IMLIB_USE= GNOME=imlib IMLIB_CONFIGURE_ENABLE= imlib .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MXFT} -USE_XORG+= xft -.endif - -.if ${PORT_OPTIONS:MIMLIB} -USE_GNOME+= imlib -.endif - post-patch: ${REINPLACE_CMD} -e 's|-lungif|-lgif|' \ -e 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ @@ -84,7 +78,7 @@ post-install: ${STAGEDIR}${MANPREFIX}/man/man1/ ${INSTALL} ${WRKSRC}/contrib/xmindpath/xmindpath \ ${STAGEDIR}${PREFIX}/bin/ -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && \ ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}/ |