blob: 68364957cb16238cc87f66e8e3b2888f715c9da4 (
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
|
# New ports collection makefile for: libgsf
# Date created: 11 September 2002
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/devel/libgsf/Makefile,v 1.35 2010/04/10 08:51:15 kwm Exp $
#
PORTNAME= libgsf
PORTVERSION= 1.14.19
PORTREVISION?= 0
CATEGORIES?= devel
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org
COMMENT?= An extensible i/o abstraction for dealing with structured file formats
.if !exists(/usr/lib/libbz2.so)
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
.endif
USE_BZIP2= yes
USE_GMAKE= yes
USE_GETTEXT= yes
USE_LDCONFIG= yes
USE_GNOME?= gnomehack gnomeprefix glib20 libxml2 ltverhack intlhack
USE_AUTOTOOLS= libtool
CONFIGURE_ARGS?=--without-gnome-vfs --without-python --with-gio \
--without-bonobo
CONFIGURE_ENV?= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.if !defined(GSF_SLAVE)
MAN1= gsf.1 gsf-office-thumbnailer.1 gsf-vba-dump.1
.endif
.if !defined(WITHOUT_GCONF) || exists(${LOCALBASE}/bin/gconftool-2)
USE_GNOME+= gconf2
PLIST_SUB+= THUMB=""
. if !defined(GSF_SLAVE)
GCONF_SCHEMAS= gsf-office-thumbnailer.schemas
. endif
.else
PLIST_SUB+= THUMB="@comment "
.endif
.include <bsd.port.pre.mk>
.if defined(GSF_SLAVE)
.if ${OSVERSION} < 700000
BROKEN= does not configure on 6.X
.endif
.endif
.include <bsd.port.post.mk>
|