mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
75 lines
2.0 KiB
Makefile
75 lines
2.0 KiB
Makefile
# New ports collection makefile for: librsvg2
|
|
# Date created: 8th May 2001
|
|
# Whom: Ade Lovett <ade@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports-stable/graphics/librsvg2/Makefile,v 1.5 2009/04/20 05:55:53 marcus Exp $
|
|
#
|
|
|
|
PORTNAME= librsvg2
|
|
PORTVERSION= 2.26.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics gnome
|
|
MASTER_SITES= GNOME
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
|
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 \
|
|
croco-${CROCO_VERSION}.3:${PORTSDIR}/textproc/libcroco
|
|
RUN_DEPENDS= gtk-engines2>=2.7.5_1:${PORTSDIR}/x11-themes/gtk-engines2
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_GNOME= gnomehack gnomeprefix libgsf gtk20 ltverhack
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-svgz \
|
|
--without-gimp \
|
|
--with-croco \
|
|
--disable-gnome-vfs \
|
|
--enable-gtk-theme \
|
|
--disable-gnome-print
|
|
|
|
CROCO_VERSION= 0.6
|
|
|
|
MAN1= rsvg.1
|
|
|
|
OPTIONS= MOZILLA_PLUGIN "Enable the SVG browser plug-in" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_MOZILLA_PLUGIN)
|
|
USE_GECKO= firefox mozilla seamonkey libxul xulrunner
|
|
USE_WEBPLUGINS= gecko*
|
|
WEBPLUGINS_FILES=libmozsvgdec.so
|
|
.include "${PORTSDIR}/www/mozilla/bsd.gecko.mk"
|
|
.include "${PORTSDIR}/www/firefox/Makefile.webplugins"
|
|
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)
|
|
.if ${GECKO:Mlibxul}==""
|
|
@${REINPLACE_CMD} -e 's|mozilla-plugin|${GECKO}-plugin|g' \
|
|
${WRKSRC}/configure
|
|
.endif
|
|
@${REINPLACE_CMD} -e 's|[$$][(]libdir[)]/mozilla/plugins|${WEBPLUGINS_DIR}|g' \
|
|
${WRKSRC}/moz-plugin/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|