blob: 84845c14ffa57e9b49fbe701f882dc8214288c71 (
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
53
54
|
# Created by: Remington Lang <MrL0Lz@gmail.com>
# $FreeBSD$
PORTNAME= geany
PORTVERSION= 1.23.1
CATEGORIES= devel editors
MASTER_SITES= http://download.geany.org/ SF
MAINTAINER= makc@FreeBSD.org
COMMENT= Fast and lightweight GTK+ IDE
LICENSE= GPLv2
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_GNOME= gtk20
USES= pathfix pkgconfig
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
OPTIONS_DEFINE= VTE NLS DOCS
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
VTE_DESC= Embedded virtual terminal
MAN1= geany.1
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNLS}
USES+= gettext
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.if ${PORT_OPTIONS:MVTE}
USE_GNOME+= vte
CONFIGURE_ARGS+=--enable-vte
.else
CONFIGURE_ARGS+=--disable-vte
.endif
post-patch:
.if !${PORT_OPTIONS:MDOCS}
@${REINPLACE_CMD} -e '/^SUBDIRS/ s|doc||' ${WRKSRC}/Makefile.in
.endif
.if !${PORT_OPTIONS:MNLS}
@${REINPLACE_CMD} -e '/^SUBDIRS/ s|po||' ${WRKSRC}/Makefile.in
.endif
.include <bsd.port.mk>
|