blob: cd9241d7b94bfcebb12ad2c4da1d9dec08deca3a (
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
|
# $NetBSD: Makefile,v 1.27 2002/09/21 23:47:01 jlam Exp $
DISTNAME= gnome-python-1.4.0
PKGNAME= ${PYPKGPREFIX}-gnome-1.4.0
PKGREVISION= 2
CATEGORIES= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=stable/sources/gnome-python/}
MAINTAINER= drochner@netbsd.org
HOMEPAGE= http://www.daa.com.au/~james/gnome/
COMMENT= Python Bindings for the GNU Network Object Model Environment
DEPENDS+= gnome-core>=1.4.0.4nb1:../../x11/gnome-core
DEPENDS+= gtkglarea-[0-9]*:../../x11/gtkglarea
DEPENDS+= libglade-0.17nb1:../../devel/libglade
CONFLICTS+= py-gtk-[0-9]*
CONFLICTS+= gnome-python-*
GNU_CONFIGURE= yes
USE_X11= yes
USE_GMAKE= yes
USE_LIBTOOL= yes
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
CONFIGURE_ENV+= PYTHON=${PYTHONBIN}
MAKE_ENV+= PYINC=${PYINC}
PY_PATCHPLIST= yes
PYBINMODULE= yes
.include "../../mk/bsd.prefs.mk"
.if (${OBJECT_FMT} == a.out)
post-configure:
.for DIR in pygtk pygnome
${MV} ${WRKSRC}/${DIR}/Makefile ${WRKSRC}/${DIR}/Makefile.old
${SED} -e 's#-Wl,-R#-R#g' ${WRKSRC}/${DIR}/Makefile.old \
>${WRKSRC}/${DIR}/Makefile
.endfor
.endif
.include "../../lang/python/extension.mk"
.include "../../x11/gnome-core/buildlink.mk"
.include "../../mk/bsd.pkg.mk"
|