f899c758a6
everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# Created by: Thomas Hurst <tom@hur.st>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= optipng
|
|
PORTVERSION= 0.7.5
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/${PORTNAME}/OptiPNG/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= tom@hur.st
|
|
COMMENT= Optimizer for PNG files
|
|
|
|
LICENSE= ZLIB
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
OPTIONS_DEFINE= BUNDLED_LIBPNG BUNDLED_ZLIB
|
|
|
|
BUNDLED_LIBPNG_DESC= Use bundled libpng
|
|
BUNDLED_LIBPNG_CONFIGURE_OFF= --with-system-libpng
|
|
BUNDLED_LIBPNG_CONFIGURE_ON= --without-system-libpng
|
|
BUNDLED_LIBPNG_LIB_DEPENDS_OFF= libpng.so:graphics/png
|
|
BUNDLED_LIBPNG_CFLAGS_OFF= -I${LOCALBASE}/include
|
|
BUNDLED_LIBPNG_LDFLAGS_OFF= -L${LOCALBASE}/lib
|
|
|
|
BUNDLED_ZLIB_DESC= Use bundled zlib
|
|
BUNDLED_ZLIB_CONFIGURE_OFF= --with-system-zlib
|
|
BUNDLED_ZLIB_CONFIGURE_ON= --without-system-zlib
|
|
|
|
USES= gmake
|
|
HAS_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/optipng man/man1/optipng.1.gz
|
|
PORTDOCS= history.txt optipng.man.html optipng.man.pdf optipng.man.txt \
|
|
png_optimization.html todo.txt
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/optipng/optipng ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/src/optipng/man/optipng.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
|
|
|
${INSTALL} -d ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|