diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2012-06-03 01:06:00 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2012-06-03 01:06:00 +0800 |
commit | 38a4c49dfa06fe2d66299e000705c83758f1ddb6 (patch) | |
tree | 5067bcfa34a3d68fa8b1ec8fac0764c5a676875d /graphics/ming | |
parent | 8e2e1fa17d96917a990ee4e58427571322020b38 (diff) | |
download | freebsd-ports-gnome-38a4c49dfa06fe2d66299e000705c83758f1ddb6.tar.gz freebsd-ports-gnome-38a4c49dfa06fe2d66299e000705c83758f1ddb6.tar.zst freebsd-ports-gnome-38a4c49dfa06fe2d66299e000705c83758f1ddb6.zip |
- Remove PrintGifError() which is retired from giflib 4.2.0 [1]
- Pet portlint: remove ABI version number from LIB_DEPENDS
Reference: http://giflib.git.sourceforge.net/git/gitweb.cgi?p=giflib/giflib;a=blob;f=NEWS [1]
Diffstat (limited to 'graphics/ming')
-rw-r--r-- | graphics/ming/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/graphics/ming/Makefile b/graphics/ming/Makefile index e27479b3f86d..4b7b197c81ef 100644 --- a/graphics/ming/Makefile +++ b/graphics/ming/Makefile @@ -14,8 +14,8 @@ MASTER_SITES= SF/${PORTNAME}/Releases/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flash 4/5 movie output library with many languages support -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \ - gif.5:${PORTSDIR}/graphics/giflib \ +LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ + gif:${PORTSDIR}/graphics/giflib \ png15:${PORTSDIR}/graphics/png CONFLICTS= ja-ming-[0-9]* @@ -35,12 +35,14 @@ DOCS= HISTORY NEWS README TODO DOCS_UTIL= README TIPS TODO swftoperl.html .if defined(SLAVEPORT) -LIB_DEPENDS+= ming.5:${PORTSDIR}/graphics/ming +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 |