blob: 935cf68c7ec527d622883ab345b6c600094542a8 (
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
58
59
60
61
|
# Created by: Koop Mast <kwm@FreeBSD.org>
# $FreeBSD$
# $MCom: ports/trunk/devel/glade3/Makefile 17268 2013-04-01 05:13:11Z marcus $
PORTNAME= glade3
PORTVERSION= 3.8.3
CATEGORIES= devel gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT= A user interface builder for GTK+/GNOME
CONFLICTS= glade-3.*
PORTSCOUT= ignore
LATEST_LINK= glade3
INSTALLS_ICONS= yes
USE_XZ= yes
USE_GMAKE= yes
USE_GNOME= gtk20 libxml2 gnomeprefix gnomedocutils ltverhack:10
USES= gettext pathfix desktop-file-utils pkgconfig
INSTALLS_OMF= yes
USE_LDCONFIG= yes
USE_AUTOTOOLS= libtool
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
DOCSDIR= ${PREFIX}/share/doc/gladeui
OPTIONS_DEFINE= GNOME PYTHON
OPTIONS_DEFAULT=PYTHON
GNOME_DESC= GNOME UI widget support
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGNOME}
USE_GNOME+= libgnomeui
CONFIGURE_ARGS+=--enable-gnome
PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gnome
PLIST_SUB+= GNOME:=""
.else
CONFIGURE_ARGS+=--disable-gnome
PLIST_SUB+= GNOME:="@comment "
.endif
.if ${PORT_OPTIONS:MPYTHON}
USE_PYTHON= yes
USE_GNOME+= pygtk2
PLIST_SUB+= PYTHON:=""
CONFIGURE_ARGS+=--enable-python
.else
CONFIGURE_ARGS+=--disable-python
PLIST_SUB+= PYTHON:="@comment "
.endif
post-install:
${MKDIR} ${PREFIX}/lib/glade3/bindings
.include <bsd.port.mk>
|