e18151212d
and new features. Don't believe me? Then see for yourself at http://www.gnome.org/start/2.12/notes/en/. DO NOT USE portupgrade by itself to upgrade to GNOME 2.12. Instead, use the gnome_upgrade.sh script from http://www.marcuscom.com/downloads/gnome_upgrade212.sh. This script will circumvent some potential pitfalls users can see if they use portupgrade by itself. In keeping with tradition, GNOME 2.12 for FreeBSD comes with a special splash screen. The winner of this release's contest is Dominique Goncalves <dominique.goncalves@gmail.com>. His splash screen was inspired by http://art.gnome.org/contests/2.12-splash/83. The FreeBSD GNOME Team would lank to thank the following users for their contributions to this release: Matthew Luckie <mjl@luckie.org.nz> ade sajd on #freebsd-gnome Caelian on #freebsd-gnome mnag Yasuda Keisuke <kysd@po.harenet.ne.jp> Mark Hobden <markhobden@gmail.com> Sergey Akifyev <asa@agava.com> Andreas Kohn For more information on GNOME on FreeBSD, checkout http://www.FreeBSD.org/gnome/. The 2.12 documentation will be posted shortly.
36 lines
1,015 B
Makefile
36 lines
1,015 B
Makefile
# New ports collection makefile for: libgsf
|
|
# Date created: 11 September 2002
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/devel/libgsf-gnome/Makefile,v 1.8 2005/09/08 17:53:00 marcus Exp $
|
|
#
|
|
|
|
CATEGORIES= devel gnome
|
|
PKGNAMESUFFIX= -gnome
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= A GNOME wrapper for libgsf
|
|
|
|
MASTERDIR= ${.CURDIR}/../libgsf
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
USE_GNOME= gnomehack libgsf gnomevfs2 ltverhack intlhack
|
|
CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc/gsf \
|
|
--disable-gtk-doc --with-bz2 --with-gnome
|
|
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib -lgsf-1"
|
|
|
|
GCONF_SCHEMAS=
|
|
GSF_SLAVE= yes
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}/gsf-gnome && ${MAKE}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/gsf-gnome && ${MAKE} ${INSTALL_TARGET}
|
|
${MKDIR} ${PREFIX}/libdata/pkgconfig
|
|
${INSTALL_DATA} ${WRKSRC}/libgsf-gnome-1.pc ${PREFIX}/libdata/pkgconfig
|
|
|
|
.include "${MASTERDIR}/Makefile"
|