summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--graphics/librsvg2/Makefile73
-rw-r--r--graphics/librsvg2/distinfo3
-rw-r--r--graphics/librsvg2/files/patch-moz-plugin_Makefile.in11
-rw-r--r--graphics/librsvg2/pkg-descr7
-rw-r--r--graphics/librsvg2/pkg-plist45
-rw-r--r--net/libproxy-mozjs/Makefile29
-rw-r--r--net/libproxy-mozjs/pkg-descr7
-rw-r--r--net/libproxy-mozjs/pkg-plist1
-rw-r--r--security/seahorse-plugins/Makefile6
-rw-r--r--x11-toolkits/py-gnome-extras/Makefile6
-rw-r--r--x11/yelp/Makefile4
11 files changed, 184 insertions, 8 deletions
diff --git a/graphics/librsvg2/Makefile b/graphics/librsvg2/Makefile
new file mode 100644
index 000000000..6685a0b67
--- /dev/null
+++ b/graphics/librsvg2/Makefile
@@ -0,0 +1,73 @@
+# New ports collection makefile for: librsvg2
+# Date created: 8th May 2001
+# Whom: Ade Lovett <ade@FreeBSD.org>
+#
+# $FreeBSD: ports/graphics/librsvg2/Makefile,v 1.76 2009/08/02 19:34:12 mezz Exp $
+# $MCom: ports-stable/graphics/librsvg2/Makefile,v 1.5 2009/04/20 05:55:53 marcus Exp $
+#
+
+PORTNAME= librsvg2
+PORTVERSION= 2.26.0
+PORTREVISION= 2
+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= libxul seamonkey
+USE_WEBPLUGINS= gecko*
+WEBPLUGINS_FILES=libmozsvgdec.so
+.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>
diff --git a/graphics/librsvg2/distinfo b/graphics/librsvg2/distinfo
new file mode 100644
index 000000000..0807c3d1b
--- /dev/null
+++ b/graphics/librsvg2/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/librsvg-2.26.0.tar.bz2) = 65dbd726a514fe8b797d26254b8efc1e
+SHA256 (gnome2/librsvg-2.26.0.tar.bz2) = fdcab5f0d86198d8cbd4ffe5b333076f75e707f6d7e4af5e87a8644ff7533bea
+SIZE (gnome2/librsvg-2.26.0.tar.bz2) = 477499
diff --git a/graphics/librsvg2/files/patch-moz-plugin_Makefile.in b/graphics/librsvg2/files/patch-moz-plugin_Makefile.in
new file mode 100644
index 000000000..728d20fcb
--- /dev/null
+++ b/graphics/librsvg2/files/patch-moz-plugin_Makefile.in
@@ -0,0 +1,11 @@
+--- moz-plugin/Makefile.in.orig 2008-09-23 15:17:45.000000000 -0500
++++ moz-plugin/Makefile.in 2008-09-23 15:19:11.000000000 -0500
+@@ -270,7 +270,7 @@
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES)
+ @$(NORMAL_INSTALL)
+- test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)"
++@WITH_MOZILLA_TRUE@ test -z "$(plugindir)" || $(MKDIR_P) "$(DESTDIR)$(plugindir)"
+ @list='$(plugin_LTLIBRARIES)'; for p in $$list; do \
+ if test -f $$p; then \
+ f=$(am__strip_dir) \
diff --git a/graphics/librsvg2/pkg-descr b/graphics/librsvg2/pkg-descr
new file mode 100644
index 000000000..9e39343a5
--- /dev/null
+++ b/graphics/librsvg2/pkg-descr
@@ -0,0 +1,7 @@
+The librsvg library is a lightweight library for parsing and rendering
+vector-graphic files in SVG format (like the ones made by sodipodi). It also
+includes functions that render anti-aliased fonts using freetype, including
+caching of glyphs. It is used by Nautilus for drawing vector icons and
+anti-aliased text.
+
+WWW: http://librsvg.sourceforge.net/
diff --git a/graphics/librsvg2/pkg-plist b/graphics/librsvg2/pkg-plist
new file mode 100644
index 000000000..c89581974
--- /dev/null
+++ b/graphics/librsvg2/pkg-plist
@@ -0,0 +1,45 @@
+bin/rsvg
+bin/rsvg-convert
+bin/rsvg-view
+include/librsvg-2/librsvg/librsvg-enum-types.h
+include/librsvg-2/librsvg/librsvg-features.h
+include/librsvg-2/librsvg/rsvg-cairo.h
+include/librsvg-2/librsvg/rsvg.h
+%%PLUGIN%%%%WEBPLUGINS_DIR%%/libmozsvgdec.a
+%%PLUGIN%%%%WEBPLUGINS_DIR%%/libmozsvgdec.la
+%%PLUGIN%%%%WEBPLUGINS_DIR%%/libmozsvgdec.so
+lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.a
+lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.la
+lib/gtk-2.0/%%GTK2_VERSION%%/engines/libsvg.so
+lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.a
+lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.la
+lib/gtk-2.0/%%GTK2_VERSION%%/loaders/svg_loader.so
+lib/librsvg-2.a
+lib/librsvg-2.la
+lib/librsvg-2.so
+lib/librsvg-2.so.2
+libdata/pkgconfig/librsvg-2.0.pc
+share/doc/rsvg/home.png
+share/doc/rsvg/index.html
+share/doc/rsvg/index.sgml
+share/doc/rsvg/ix01.html
+share/doc/rsvg/left.png
+share/doc/rsvg/pt02.html
+share/doc/rsvg/pt03.html
+share/doc/rsvg/pt04.html
+share/doc/rsvg/right.png
+share/doc/rsvg/rsvg-Cairo.html
+share/doc/rsvg/rsvg-Core-API.html
+share/doc/rsvg/rsvg-GdkPixbuf.html
+share/doc/rsvg/rsvg.devhelp
+share/doc/rsvg/rsvg.devhelp2
+share/doc/rsvg/rsvg.html
+share/doc/rsvg/style.css
+share/doc/rsvg/up.png
+share/pixmaps/svg-viewer.svg
+@dirrm share/doc/rsvg
+%%PLUGIN%%@dirrmtry %%WEBPLUGINS_DIR%%
+@dirrm include/librsvg-2/librsvg
+@dirrm include/librsvg-2
+@exec %D/bin/gdk-pixbuf-query-loaders > /dev/null 2>&1 && %D/bin/gdk-pixbuf-query-loaders > %D/etc/gtk-2.0/gdk-pixbuf.loaders 2>/dev/null || /usr/bin/true
+@unexec %D/bin/gdk-pixbuf-query-loaders > /dev/null 2>&1 && %D/bin/gdk-pixbuf-query-loaders > %D/etc/gtk-2.0/gdk-pixbuf.loaders 2>/dev/null || /usr/bin/true
diff --git a/net/libproxy-mozjs/Makefile b/net/libproxy-mozjs/Makefile
new file mode 100644
index 000000000..e356767b6
--- /dev/null
+++ b/net/libproxy-mozjs/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: libproxy-mozjs
+# Date created: 26 February 2009
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/net/libproxy-mozjs/Makefile,v 1.3 2009/07/31 13:54:44 dinoex Exp $
+#
+
+PORTREVISION= 2
+CATEGORIES= net devel
+PKGNAMESUFFIX= -mozjs
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= Mozilla Javascript plug-in for libproxy
+
+LIB_DEPENDS= proxy.0:${PORTSDIR}/net/libproxy
+
+MASTERDIR= ${.CURDIR}/../libproxy
+BUILD_WRKSRC= ${WRKSRC}/src/plugins
+INSTALL_WRKSRC= ${BUILD_WRKSRC}
+DESCR= ${.CURDIR}/pkg-descr
+PLIST= ${.CURDIR}/pkg-plist
+USE_GECKO= libxul
+CONFIGURE_ARGS=--without-gnome --without-kde --without-webkit \
+ --with-mozjs --without-networkmanager --without-python \
+ --without-envvar --without-file
+
+LIBPROXY_SLAVE= yes
+
+.include "${MASTERDIR}/Makefile"
diff --git a/net/libproxy-mozjs/pkg-descr b/net/libproxy-mozjs/pkg-descr
new file mode 100644
index 000000000..1bcd6c2a3
--- /dev/null
+++ b/net/libproxy-mozjs/pkg-descr
@@ -0,0 +1,7 @@
+Libproxy exists to answer the question: Given a network resource, how do I
+reach it? It handles all the details, enabling you to get back to
+programming.
+
+This plug-in allows Mozilla-based browsers to make use of libproxy.
+
+WWW: http://code.google.com/p/libproxy/
diff --git a/net/libproxy-mozjs/pkg-plist b/net/libproxy-mozjs/pkg-plist
new file mode 100644
index 000000000..9bd61ce5a
--- /dev/null
+++ b/net/libproxy-mozjs/pkg-plist
@@ -0,0 +1 @@
+lib/libproxy/%%VERSION%%/plugins/mozjs.so
diff --git a/security/seahorse-plugins/Makefile b/security/seahorse-plugins/Makefile
index 9b85b647b..67dfe5329 100644
--- a/security/seahorse-plugins/Makefile
+++ b/security/seahorse-plugins/Makefile
@@ -3,12 +3,12 @@
# Whom: Dave McKay <dave@mu.org>
#
# $FreeBSD$
-# $MCom: ports/security/seahorse-plugins/Makefile,v 1.14 2009/07/19 09:06:09 kwm Exp $
+# $MCom: ports/security/seahorse-plugins/Makefile,v 1.15 2009/08/01 19:32:54 marcus Exp $
#
PORTNAME= seahorse-plugins
PORTVERSION= 2.27.1
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= security gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome2
@@ -21,7 +21,7 @@ LIB_DEPENDS= cryptui.0:${PORTSDIR}/security/seahorse
USE_BZIP2= yes
USE_GETTEXT= yes
USE_GMAKE= yes
-USE_GECKO= firefox libxul
+USE_GECKO= libxul
USE_GNOME= gnomehack intlhack gnomeprefix libglade2 gconf2 gnomedocutils
GNU_CONFIGURE= yes
INSTALLS_ICONS= yes
diff --git a/x11-toolkits/py-gnome-extras/Makefile b/x11-toolkits/py-gnome-extras/Makefile
index 35f7fc48b..c404ec9bf 100644
--- a/x11-toolkits/py-gnome-extras/Makefile
+++ b/x11-toolkits/py-gnome-extras/Makefile
@@ -3,12 +3,12 @@
# Whom: Koop Mast <kwm@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/x11-toolkits/py-gnome-extras/Makefile,v 1.50 2009/05/27 18:27:52 kwm Exp $
+# $MCom: ports/x11-toolkits/py-gnome-extras/Makefile,v 1.51 2009/08/16 21:57:21 marcus Exp $
#
PORTNAME= gnome
PORTVERSION= 2.25.3
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= x11-toolkits python gnome
MASTER_SITES= GNOME
MASTER_SITE_SUBDIR= sources/gnome-python-extras/${PORTVERSION:C/..$//}
@@ -25,7 +25,7 @@ LIB_DEPENDS= gtkspell.0:${PORTSDIR}/textproc/gtkspell \
gksuui1.0.1:${PORTSDIR}/sysutils/libgksuui
# gdl-1.2:${PORTSDIR}/x11-toolkits/gdl
-USE_GECKO= firefox libxul xulrunner mozilla
+USE_GECKO= libxul
USE_BZIP2= yes
USE_GMAKE= yes
USE_PYTHON= yes
diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile
index 33aa7e95b..7f83a9b2e 100644
--- a/x11/yelp/Makefile
+++ b/x11/yelp/Makefile
@@ -3,7 +3,7 @@
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/x11/yelp/Makefile,v 1.138 2009/08/25 10:00:43 kwm Exp $
+# $MCom: ports/x11/yelp/Makefile,v 1.139 2009/08/26 07:48:24 marcus Exp $
#
PORTNAME= yelp
@@ -19,7 +19,7 @@ COMMENT= A help browser for the GNOME 2 desktop
LIB_DEPENDS= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
rarian.0:${PORTSDIR}/textproc/rarian
-USE_GECKO= libxul firefox
+USE_GECKO= libxul
USE_GETTEXT= yes
USE_BZIP2= yes
USE_XORG= ice