# New ports collection makefile for: optipng # Date created: 09 July 2003 # Whom: Thomas Hurst # # $FreeBSD$ # PORTNAME= optipng PORTVERSION= 0.7.1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/OptiPNG/${PORTNAME}-${PORTVERSION} MAINTAINER= tom@hur.st COMMENT= An optimizer for PNG files OPTIONS_DEFINE= BUNDLED_LIBPNG BUNDLED_ZLIB BUNDLED_LIBPNG_DESC= Use bundled libpng BUNDLED_ZLIB_DESC= Use bundled zlib HAS_CONFIGURE= yes PLIST_FILES= bin/optipng MAN1= optipng.1 PORTDOCS= history.txt optipng.man.html optipng.man.pdf optipng.man.txt \ png_optimization.html todo.txt .include .if empty(PORT_OPTIONS:MBUNDLED_LIBPNG) CONFIGURE_ARGS+= --with-system-libpng CFLAGS+= "-I${LOCALBASE}/include" LDFLAGS+= "-L${LOCALBASE}/lib" LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png .endif .if empty(PORT_OPTIONS:MBUNDLED_ZLIB) CONFIGURE_ARGS+= --with-system-zlib .endif do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/optipng/optipng ${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/src/optipng/man/optipng.1 ${MAN1PREFIX}/man/man1/ post-install: .if ${PORT_OPTIONS:MDOCS} ${INSTALL} -d ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${DOCSDIR}/ .endif .include