3680f27ebf
release can be found at http://library.gnome.org/misc/release-notes/2.32/ This will be the last release of the GNOME 2.x series, mainly a bugfix and bridge release to the first release of the GNOME 3.x series. This release features commits by avl, marcus, mezz and myself. The FreeBSD GNOME Team would like to thank the following contributors and testers for there help with this release: Zane C.B. <vvelox@vvelox.net> romain@ Olaf Seibert <O.Seibert@cs.ru.nl> DomiX Bapt <baptiste.daroussin@gmail.com> jsa@ miwi@ Sergio de Almeida Lenzi <lenzi.sergio@gmail.com> Maxim Samsonov <xors@mne.ru> Kris Moore And pav@ for 2 exp-runs PR: ports/152255 ports/143260 ports/141033 ports/149629 ports/150350 ports/151523 With hat: gnome@
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# New ports collection makefile for: glade3
|
|
# Date created: Sun May 22 17:22:53 CEST 2005
|
|
# Whom: Koop Mast <kwm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/glade3/Makefile,v 1.44 2010/06/06 22:11:46 kwm Exp $
|
|
#
|
|
|
|
PORTNAME= glade3
|
|
PORTVERSION= 3.7.1
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= A user interface builder for GTK+/GNOME
|
|
|
|
INSTALLS_ICONS= yes
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnometarget gtk20 libxml2 gnomeprefix gnomehack \
|
|
gnomedocutils desktopfileutils ltverhack
|
|
WANT_GNOME= yes
|
|
USE_GETTEXT= yes
|
|
INSTALLS_OMF= yes
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib"
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/gladeui
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${HAVE_GNOME:Mlibgnomeui}!=""
|
|
USE_GNOME+= libgnomeui
|
|
CONFIGURE_ARGS+=--enable-gnome
|
|
PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gnome
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-gnome
|
|
.endif
|
|
|
|
.if ${HAVE_GNOME:Mpygtk2}!=""
|
|
USE_PYTHON= yes
|
|
.include "${PORTSDIR}/Mk/bsd.python.mk"
|
|
USE_GNOME+= pygtk2
|
|
PLIST_SUB+= PYTHON:=""
|
|
CONFIGURE_ARGS+=--enable-python
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-python
|
|
PLIST_SUB+= PYTHON:="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/lib/glade3/bindings
|
|
@-update-desktop-database
|
|
|
|
.include <bsd.port.post.mk>
|