9250d94365
It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
65 lines
2.3 KiB
Makefile
65 lines
2.3 KiB
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ming
|
|
PORTVERSION= 0.4.4
|
|
PORTREVISION?= 2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/${PORTNAME}/Releases/
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Flash 4/5 movie output library with many languages support
|
|
|
|
LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \
|
|
gif:${PORTSDIR}/graphics/giflib \
|
|
png15:${PORTSDIR}/graphics/png
|
|
|
|
CONFLICTS= ja-ming-[0-9]*
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
CONFIGURE_ARGS+=--includedir=${PREFIX}/include/ming
|
|
CPPFLAGS+= -I. -I.. -I${LOCALBASE}/include
|
|
LDFLAGS+= -L. -L.. -L${LOCALBASE}/lib
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USES= bison pathfix
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
DOCS= HISTORY NEWS README TODO
|
|
DOCS_UTIL= README TIPS TODO swftoperl.html
|
|
|
|
.if defined(SLAVEPORT)
|
|
LIB_DEPENDS+= ming:${PORTSDIR}/graphics/ming
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|ungif|gif|g' ${WRKSRC}/configure ${WRKSRC}/docs/man/Makefile \
|
|
${WRKSRC}/perl_ext/Makefile.PL ${WRKSRC}/py_ext/setup.py.in
|
|
@${REINPLACE_CMD} -e '/PrintGifError();/d' ${WRKSRC}/src/blocks/gifdbl.c \
|
|
${WRKSRC}/util/gif2dbl.c ${WRKSRC}/util/gif2mask.c
|
|
# patch for graphics/p5-ming
|
|
@${REINPLACE_CMD} -e 's|\.3pm|.3|g' ${WRKSRC}/perl_ext/Makefile.PL ${WRKSRC}/perl_ext/mkdoc
|
|
@${REINPLACE_CMD} -e 's|GvCV(\(.*\)) = \(.*\);|GvCV_set(\1, \2);|' ${WRKSRC}/perl_ext/Exports.c
|
|
@${REINPLACE_CMD} -e '1 s|/usr/bin/perl|${PERL}|' ${WRKSRC}/perl_ext/examples/*.cgi
|
|
# patch for graphics/py-ming
|
|
@${REINPLACE_CMD} -e 's| --root ".*"||' ${WRKSRC}/py_ext/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|/usr/local/|${LOCALBASE}/|g' ${WRKSRC}/py_ext/setup.py.in
|
|
@${LN} -sf ${LOCALBASE}/include/ming ${WRKSRC}/src
|
|
|
|
.if !target(post-install)
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/include/ming/ ${PREFIX}/include/ming/blocks/ ${PREFIX}/include/ming/util/
|
|
cd ${WRKSRC}/ && \
|
|
${INSTALL_SCRIPT} util/cws2fws util/ming-config ${PREFIX}/bin/ && \
|
|
${INSTALL_DATA} *.h src/*.h ${PREFIX}/include/ming/ && \
|
|
${INSTALL_DATA} src/blocks/*.h ${PREFIX}/include/ming/blocks/ && \
|
|
${INSTALL_DATA} util/png2dbl.c util/*.h ${PREFIX}/include/ming/util/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/ ${DOCSDIR}/util/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/
|
|
cd ${WRKSRC}/util/ && ${INSTALL_DATA} ${DOCS_UTIL} ${DOCSDIR}/util/
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|