mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
75526e8422
- Convert to new LIB_DEPENDS format - Strip shared library - Fix shebang - Use CONFLICTS_INSTALL instead of CONFLICTS - Add SLAVEDIRS - Support STAGEDIR
84 lines
2.9 KiB
Makefile
84 lines
2.9 KiB
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ming
|
|
PORTVERSION= 0.4.5
|
|
PORTREVISION?= 0
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/${PORTNAME}/Releases/
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Flash 4/5 movie output library with many languages support
|
|
|
|
LICENSE= GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
|
|
LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \
|
|
libgif.so:${PORTSDIR}/graphics/giflib \
|
|
libpng15.so:${PORTSDIR}/graphics/png
|
|
|
|
CONFLICTS_INSTALL= ja-ming-[0-9]*
|
|
|
|
.if defined(SLAVEPORT)
|
|
LIB_DEPENDS+= libming.so:${PORTSDIR}/graphics/ming
|
|
.else
|
|
OPTIONS_DEFINE= DOCS
|
|
.endif
|
|
|
|
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
|
|
USE_LDCONFIG= yes
|
|
USES+= bison gmake pathfix shebangfix
|
|
|
|
DOCS= HISTORY NEWS README TODO
|
|
DOCS_UTIL= README TIPS TODO swftoperl.html
|
|
|
|
SHEBANG_FILES= util/cws2fws
|
|
|
|
SLAVEDIRS= graphics/p5-ming graphics/py-ming
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
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
|
|
@${REINPLACE_CMD} -e 's|#if GIFLIB_GIFERRORSTRING|#if 0|' ${WRKSRC}/src/libming.h
|
|
# patch for graphics/p5-ming
|
|
@${REINPLACE_CMD} -e '/ming_is_compiled()/ s|^|#|; /LIBS/d' ${WRKSRC}/perl_ext/Makefile.PL
|
|
@${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-build)
|
|
post-build:
|
|
.if !defined(SLAVEPORT)
|
|
@${STRIP_CMD} ${WRKSRC}/src/.libs/libming.so.5
|
|
.endif
|
|
.endif
|
|
|
|
.if !target(post-install)
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/include/ming/ ${STAGEDIR}${PREFIX}/include/ming/blocks/ ${STAGEDIR}${PREFIX}/include/ming/util/
|
|
cd ${WRKSRC}/ && ${INSTALL_SCRIPT} util/cws2fws util/ming-config ${STAGEDIR}${PREFIX}/bin/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} *.h src/*.h ${STAGEDIR}${PREFIX}/include/ming/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} src/blocks/*.h ${STAGEDIR}${PREFIX}/include/ming/blocks/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} util/png2dbl.c util/*.h ${STAGEDIR}${PREFIX}/include/ming/util/
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/ ${STAGEDIR}${DOCSDIR}/util/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/util/ && ${INSTALL_DATA} ${DOCS_UTIL} ${STAGEDIR}${DOCSDIR}/util/
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|