blob: 27638af55dfc8ee254aeb1aee815564d9bdb4575 (
plain)
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
|
# Created by: Jeremy Norris <ishmael27@home.com>
# $FreeBSD$
PORTNAME= imlib2_loaders
PORTVERSION= 1.4.5
PORTREVISION= 1
PORTEPOCH= 2
CATEGORIES= graphics enlightenment
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= enlightenment/imlib2-src/${PORTVERSION}
MAINTAINER= bf@FreeBSD.org
COMMENT= Extra image loader plugins for Imlib 2
GNU_CONFIGURE= yes
USE_BZIP2= yes
USES= pathfix
USE_EFL= imlib2 libtool_hack
OPTIONS_DEFINE= EDB EET XCF
OPTIONS_DEFAULT= EDB EET XCF
EDB_DESC= Enable edb loader
EET_DESC= Enable eet loader
XCF_DESC= Enable XCF loader
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MEDB}
USE_EFL+= edb
PLIST_SUB+= EDB=""
.else
CONFIGURE_ARGS+= --disable-edb
PLIST_SUB+= EDB="@comment "
.endif
.if ${PORT_OPTIONS:MEET}
USE_EFL+= eet
PLIST_SUB+= EET=""
.else
CONFIGURE_ARGS+= --disable-eet
PLIST_SUB+= EET="@comment "
.endif
.if ${PORT_OPTIONS:MXCF}
PLIST_SUB+= XCF=""
.else
CONFIGURE_ARGS+= --disable-xcf
PLIST_SUB+= XCF="@comment "
.endif
.include <bsd.port.mk>
|