aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/optipng/Makefile
blob: 3804590f675331cede6ad99fcbe0848f0fdb54c4 (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
# Created by: Thomas Hurst <freaky@aagh.net>
# $FreeBSD$

PORTNAME=   optipng
PORTVERSION=    0.7.4
PORTREVISION=   1
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_ZLIB_DESC=  Use bundled zlib

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

.include <bsd.port.options.mk>

.if empty(PORT_OPTIONS:MBUNDLED_LIBPNG)
CONFIGURE_ARGS+=    --with-system-libpng
CFLAGS+=    "-I${LOCALBASE}/include"
LDFLAGS+=   "-L${LOCALBASE}/lib"
LIB_DEPENDS+=   libpng.so:${PORTSDIR}/graphics/png
.endif

.if empty(PORT_OPTIONS:MBUNDLED_ZLIB)
CONFIGURE_ARGS+=    --with-system-zlib
.endif

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/src/optipng/optipng ${STAGEDIR}${PREFIX}/bin/
    ${INSTALL_MAN} ${WRKSRC}/src/optipng/man/optipng.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/

post-install:
    ${INSTALL} -d ${STAGEDIR}${DOCSDIR}
    ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR}/

.include <bsd.port.mk>