blob: 13afad055801f1dbf077e7ba648181920052e282 (
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
|
# Created by: stb@lassitu.de
# $FreeBSD$
PORTNAME= pngnq
PORTVERSION= 1.1
PORTREVISION= 2
CATEGORIES= graphics
MASTER_SITES= SF
MAINTAINER= stb@lassitu.de
COMMENT= Tool for quantizing PNG images in RGBA format
LICENSE= BSD3CLAUSE
LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib -lpng
USES= pkgconfig
PORTDOCS= README COPYING
PLIST_FILES= bin/pngcomp bin/pngnq man/man1/pngnq.1.gz
OPTIONS_DEFINE= DOCS
post-install:
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}/${DOCSDIR}
.endfor
.include <bsd.port.mk>
|