blob: ab027538986a626cd18d753cecead1e4b8f26b1b (
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
|
# $NetBSD: Makefile,v 1.43 2002/01/28 09:35:03 drochner Exp $
#
DISTNAME= gnumeric-1.0.2
CATEGORIES= math gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/gnumeric/}
MAINTAINER= rh@netbsd.org
HOMEPAGE= http://www.gnome.org/gnumeric/
COMMENT= Powerful and easy to use spreadsheet program from the GNOME project
# wctype.h is found on NetBSD 1.5R and later
ONLY_FOR_PLATFORM= NetBSD-1.5[R-Z]-* NetBSD-1.5Z[A-Z]-*
# for Python support a shared libpython is required but not provided yet
#BUILD_DEPENDS+= python>=2.0:../../lang/python
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
USE_X11BASE= YES
USE_GMAKE= YES
USE_PERL5= YES
LDFLAGS+= -L${LOCALBASE}/lib
LDFLAGS+= -Wl,-R${LOCALBASE}/lib
LDFLAGS+= -lunicode
CPPFLAGS+= -I${LOCALBASE}/include
CONFIGURE_ARGS+= --without-guile # needs CVS-only guile-1.5
CONFIGURE_ARGS+= --without-python
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
pre-configure:
for i in ${WRKSRC}/plugins/*/Makefile.in ; do \
${SED} <$$i >$$i.fixed \
-e 's/^\(COMPILE.*\)\\$$/\1 $${EXTRA_GNOME_CFLAGS} \\/' \
-e 's/^\(COMPILE.*[^\\]\)$$/\1 $${EXTRA_GNOME_CFLAGS}/' && \
${MV} $$i.fixed $$i ; \
done
.include "../../devel/gettext-lib/buildlink.mk"
.include "../../textproc/libxml/buildlink.mk"
.include "../../devel/libglade/buildlink.mk"
.include "../../devel/libole2/buildlink.mk"
.include "../../devel/oaf/buildlink.mk"
.include "../../devel/gal/buildlink.mk"
.include "../../mk/x11.buildlink.mk"
.include "../../mk/bsd.pkg.mk"
|