blob: 38bb1529ea022f7a9ecee3167a9812799f58f9b4 (
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
51
52
53
54
55
56
57
|
# $FreeBSD$
PORTNAME= libsixel
PORTVERSION= 0.19.5
PORTEPOCH= 1
CATEGORIES= graphics
MAINTAINER= sue@iwmt.org
COMMENT= A encoder/decoder library for DEC SIXEL graphics
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= saitoha
GH_TAGNAME= v${PORTVERSION}
GH_COMMIT= 200e4d9
USE_LDCONFIG= yes
USES= libtool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig
INSTALL_TARGET= install-strip
PORTDOCS= README.md
OPTIONS_DEFINE= CURL GD PIXBUF
OPTIONS_DEFAULT=
CURL_DESC= libcurl support
GD_DESC= gd support
PIXBUF_DESC= gdk-pixbuf2 support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MCURL}
LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl
CONFIGURE_ARGS+=--with-libcurl
.endif
.if ${PORT_OPTIONS:MGD}
LIB_DEPENDS+= libgd.so:${PORTSDIR}/graphics/gd
CONFIGURE_ARGS+=--with-gd
.endif
.if ${PORT_OPTIONS:MPIXBUF}
LIB_DEPENDS+= libgdk_pixbuf-2.0.so:${PORTSDIR}/graphics/gdk-pixbuf2
CONFIGURE_ARGS+=--with-gdk-pixbuf2
.endif
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
|