View | Details | Raw Unified | Return to bug 190348
Collapse All | Expand All

(-)libsixel/Makefile (-3 / +32 lines)
Lines 1-7 Link Here
1
# $FreeBSD: head/graphics/libsixel/Makefile 354800 2014-05-22 08:03:57Z miwi $
1
# $FreeBSD: head/graphics/libsixel/Makefile 354800 2014-05-22 08:03:57Z miwi $
2
2
3
PORTNAME=	libsixel
3
PORTNAME=	libsixel
4
PORTVERSION=	20140422
4
PORTVERSION=	0.19.5
5
PORTEPOCH=	1
5
CATEGORIES=	graphics
6
CATEGORIES=	graphics
6
7
7
MAINTAINER=	sue@iwmt.org
8
MAINTAINER=	sue@iwmt.org
Lines 12-24 Link Here
12
13
13
USE_GITHUB=	yes
14
USE_GITHUB=	yes
14
GH_ACCOUNT=	saitoha
15
GH_ACCOUNT=	saitoha
15
GH_TAGNAME=	${GH_COMMIT}
16
GH_TAGNAME=	v${PORTVERSION}
16
GH_COMMIT=	8bd21f7
17
GH_COMMIT=	200e4d9
18
19
USE_LDCONFIG=	yes
20
USES=		libtool
17
21
18
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
23
CONFIGURE_ARGS=	--with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig
19
24
20
PORTDOCS=	README.md
25
PORTDOCS=	README.md
21
26
27
OPTIONS_DEFINE=	CURL GD PIXBUF
28
OPTIONS_DEFAULT=
29
30
CURL_DESC=	libcurl support
31
GD_DESC=	gd support
32
PIXBUF_DESC=	gdk-pixbuf2 support
33
34
.include <bsd.port.options.mk>
35
36
.if ${PORT_OPTIONS:MCURL}
37
LIB_DEPENDS+=	libcurl.so:${PORTSDIR}/ftp/curl
38
CONFIGURE_ARGS+=--with-libcurl
39
.endif
40
41
.if ${PORT_OPTIONS:MGD}
42
LIB_DEPENDS+=	libgd.so:${PORTSDIR}/graphics/gd
43
CONFIGURE_ARGS+=--with-gd
44
.endif
45
46
.if ${PORT_OPTIONS:MPIXBUF}
47
LIB_DEPENDS+=	libgdk_pixbuf-2.0.so:${PORTSDIR}/graphics/gdk-pixbuf2
48
CONFIGURE_ARGS+=--with-gdk-pixbuf2
49
.endif
50
22
post-install:
51
post-install:
23
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsixel.so.0
52
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsixel.so.0
24
	${MKDIR} ${STAGEDIR}${DOCSDIR}
53
	${MKDIR} ${STAGEDIR}${DOCSDIR}
(-)libsixel/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (libsixel-20140422.tar.gz) = 6910e7a8a5310ddc60909b9fce8e67a3c5017f1b37b56b00cb179c0baddc8d6c
1
SHA256 (libsixel-0.19.5.tar.gz) = 3975e03be25b64cbf66bd61b1b4c9d976f15e5b11ec4f610c3a04aa2ef210e24
2
SIZE (libsixel-20140422.tar.gz) = 466077
2
SIZE (libsixel-0.19.5.tar.gz) = 492241
(-)libsixel/pkg-plist (-4 / +8 lines)
Lines 1-7 Link Here
1
bin/img2sixel
2
bin/sixel2png
1
include/sixel.h
3
include/sixel.h
2
lib/libsixel.la
4
lib/libsixel.a
3
lib/libsixel.so.0
5
lib/libsixel.so.0
6
lib/libsixel.so.0.0.0
4
lib/libsixel.so
7
lib/libsixel.so
5
lib/libsixel.a
8
libdata/pkgconfig/libsixel.pc
6
bin/img2sixel
9
man/man1/img2sixel.1.gz
7
bin/sixel2png
10
man/man1/sixel2png.1.gz
11
man/man5/sixel.5.gz

Return to bug 190348