blob: 64e28afd032b365269627e286d93e046c252893b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# New ports collection makefile for: optipng
# Date created: 09 July 2003
# Whom: Thomas Hurst <freaky@aagh.net>
#
# $FreeBSD$
#
PORTNAME= optipng
PORTVERSION= 0.6.5
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/OptiPNG/${PORTNAME}-${PORTVERSION}
MAINTAINER= tom@hur.st
COMMENT= An optimizer for PNG files
OPTIONS= BUNDLED_LIBPNG "Use bundled libpng" off \
BUNDLED_ZLIB "Use bundled zlib" off
HAS_CONFIGURE= yes
BUILD_WRKSRC= ${WRKSRC}/src
MAKEFILE= scripts/unix.mak
ALL_TARGET= ${PORTNAME}
PLIST_FILES= bin/optipng
MAN1= optipng.1
PORTDOCS= caveat.txt history.txt manual.html manual.pdf manual.txt \
png_optimization_guide.html thanks.html todo.txt
.include <bsd.port.options.mk>
.ifndef(WITH_BUNDLED_LIBPNG)
CONFIGURE_ARGS+= --with-system-libpng
CFLAGS+= "-I${LOCALBASE}/include"
LIB_DEPENDS+= png.6:${PORTSDIR}/graphics/png
.endif
.ifndef(WITH_BUNDLED_ZLIB)
CONFIGURE_ARGS+= --with-system-zlib
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/optipng ${PREFIX}/bin/
${INSTALL_MAN} ${WRKSRC}/man/optipng.1 ${MAN1PREFIX}/man/man1/
post-install:
.ifndef NOPORTDOCS
${INSTALL} -d ${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|