blob: 8273df296654dcffa4b052282ecc41c9c62a75ba (
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
|
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
# $FreeBSD$
# $MCom: ports/trunk/devel/goffice/Makefile 17268 2013-04-01 05:13:11Z marcus $
PORTNAME= goffice
PORTVERSION= 0.8.17
PORTREVISION= 4
CATEGORIES= devel gnome
MASTER_SITES= GNOME
MAINTAINER= gnome@FreeBSD.org
COMMENT= GLib/GTK+ set of document centric objects and utilities
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
PORTSCOUT= ignore
LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre
USE_XZ= yes
USE_GMAKE= yes
USE_GNOME= gnomeprefix intlhack gtk20 libgsf ltverhack
USES= gettext pathfix pkgconfig
USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_SUB= VERSION=${PORTVERSION} \
SHORT_VER=0.8
OPTIONS_DEFINE= GCONF
OPTIONS_DEFAULT=GCONF
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGCONF}
USE_GNOME+= gconf2
.else
CONFIGURE_ARGS+=--with-config-backend=keyfile
.endif
.include <bsd.port.mk>
|