openbsd-ports/devel/vte/Makefile
jasper a8837a024a disable the -python subpackage on mips64*. py-gtk2 doesn't build there due to
toolchain bugs and it would take out all ports that depend on the regular vte
C library.

ok aja@
2011-04-16 12:17:40 +00:00

72 lines
1.8 KiB
Makefile

# $OpenBSD: Makefile,v 1.70 2011/04/16 12:17:40 jasper Exp $
COMMENT-main= terminal emulation library
COMMENT-python= python bindings for vte
GNOME_PROJECT= vte
GNOME_VERSION= 0.26.2
PKGNAME-main= ${DISTNAME}
PKGNAME-python= py-${DISTNAME}
REVISION-main= 0
CATEGORIES= devel
SHARED_LIBS+= vte 14.1 # 2609.0
HOMEPAGE= http://www.gnome.org/
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>, \
Antoine Jacoutot <ajacoutot@openbsd.org>
# LGPLv2
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= devel/gettext \
lang/python \
x11/gnome
MODPY_RUNDEP= No
MULTI_PACKAGES= -main -python
# Don't pull in x11/py-gtk2 on these archs; build fails with binutils 2.15
NOT_FOR_ARCHS-python= mips64 mips64el
WANTLIB += X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
WANTLIB += Xi Xinerama Xrandr Xrender atk-1.0 cairo expat fontconfig
WANTLIB += freetype gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0
WANTLIB += m ncurses pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre
WANTLIB += pixman-1 png pthread-stubs xcb xcb-render drm xcb-shm
WANTLIB += z gthread-2.0 gdk_pixbuf-2.0 gdk-x11-2.0 GL Xxf86vm
WANTLIB-main= ${WANTLIB} util c pthread
LIB_DEPENDS-main= ${LIB_DEPENDS} \
x11/gtk+2
WANTLIB-python= ${WANTLIB} ffi vte>=14 gtk-x11-2.0
BUILD_DEPENDS= devel/gobject-introspection
.if ! ${MACHINE_ARCH:Mmips64*}
BUILD_DEPENDS+= x11/py-gtk2
.endif
LIB_DEPENDS-python= ${LIB_DEPENDS-main} \
${BASE_PKGPATH} \
devel/libffi
RUN_DEPENDS-python= ${MODPY_RUN_DEPENDS} \
x11/py-gtk2
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
--enable-introspection \
--disable-Bsymbolic
.if ! ${MACHINE_ARCH:Mmips64*}
CONFIGURE_ARGS+= --enable-python
.endif
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.include <bsd.port.mk>