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.
91 lines
2.4 KiB
Makefile
91 lines
2.4 KiB
Makefile
# New ports collection makefile for: librsvg2
|
|
# Date created: 8th May 2001
|
|
# Whom: Ade Lovett <ade@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/graphics/librsvg2/Makefile,v 1.73 2005/10/11 22:27:04 marcus Exp $
|
|
#
|
|
|
|
PORTNAME= librsvg2
|
|
PORTVERSION= 2.12.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/2.12
|
|
DISTNAME= librsvg-${PORTVERSION}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Library for parsing and rendering SVG vector-graphic files
|
|
|
|
BUILD_DEPENDS= freetype-config:${PORTSDIR}/print/freetype2
|
|
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
|
|
popt.0:${PORTSDIR}/devel/popt \
|
|
croco-${CROCO_VERSION}.3:${PORTSDIR}/textproc/libcroco
|
|
RUN_DEPENDS= ${X11BASE}/lib/gtk-2.0/${GTK_VERSION}/engines/libmetal.so:${PORTSDIR}/x11-themes/gtk-engines2
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
INSTALLS_SHLIB= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_REINPLACE= yes
|
|
USE_GNOME= gnomehack gnomeprefix libartlgpl2 libgsf gtk20 ltverhack
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-svgz \
|
|
--disable-gtk-doc \
|
|
--without-gimp \
|
|
--with-croco \
|
|
--disable-gnome-vfs
|
|
|
|
CROCO_VERSION= 0.6
|
|
GTK_VERSION= 2.4.0
|
|
|
|
PLIST_SUB= GTK_VERSION=${GTK_VERSION}
|
|
|
|
MAN1= rsvg.1
|
|
|
|
OPTIONS= MOZILLA_PLUGIN "Enable the SVG browser plug-in" no
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_MOZILLA_PLUGIN)
|
|
WITH_MOZILLA?= firefox
|
|
|
|
.if ${WITH_MOZILLA}=="firefox"
|
|
MOZILLA= firefox
|
|
HEADERS_SUFX=
|
|
.elif ${WITH_MOZILLA}=="mozilla"
|
|
MOZILLA= mozilla
|
|
HEADERS_SUFX=
|
|
.elif ${WITH_MOZILLA}=="mozilla-devel"
|
|
MOZILLA= mozilla
|
|
HEADERS_SUFX= -devel
|
|
.else
|
|
BROKEN= "Unknown Gecko source specified (${WITH_MOZILLA})"
|
|
.endif
|
|
|
|
BUILD_DEPENDS+= ${X11BASE}/libdata/pkgconfig/${MOZILLA}-plugin${HEADERS_SUFX}.pc:${PORTSDIR}/www/${MOZILLA}${HEADERS_SUFX}
|
|
RUN_DEPENDS+= ${X11BASE}/libdata/pkgconfig/${MOZILLA}-plugin${HEADERS_SUFX}.pc:${PORTSDIR}/www/${MOZILLA}${HEADERS_SUFX}
|
|
|
|
.if ${WITH_MOZILLA}=="mozilla-devel" && ${OSVERSION} < 500000
|
|
USE_GCC= 3.4
|
|
.endif
|
|
CONFIGURE_ENV+= MOZILLA_CONFIG=no
|
|
CONFIGURE_ARGS+=--enable-mozilla-plugin=yes
|
|
|
|
PLIST_SUB+= PLUGIN=""
|
|
.else
|
|
CONFIGURE_ARGS+=--enable-mozilla-plugin=no
|
|
|
|
PLIST_SUB+= PLUGIN="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
.if defined(WITH_MOZILLA_PLUGIN)
|
|
@${REINPLACE_CMD} -e 's|mozilla-plugin|${MOZILLA}-plugin${HEADERS_SUFX}|g' \
|
|
${WRKSRC}/configure
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|