summaryrefslogtreecommitdiffstats
path: root/www/epiphany-extensions
diff options
context:
space:
mode:
authoradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2004-05-19 09:35:54 +0800
committeradamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059>2004-05-19 09:35:54 +0800
commitfdbe3418e656a4ebc11b54bc55d050e50a585bc6 (patch)
tree06fdac3e71d8d06d5d96cafde33dca3dabf2cb84 /www/epiphany-extensions
parentc4a9813376b53fce979daa71885ebe7b9b019086 (diff)
downloadmarcuscom-ports-fdbe3418e656a4ebc11b54bc55d050e50a585bc6.tar
marcuscom-ports-fdbe3418e656a4ebc11b54bc55d050e50a585bc6.tar.gz
marcuscom-ports-fdbe3418e656a4ebc11b54bc55d050e50a585bc6.tar.bz2
marcuscom-ports-fdbe3418e656a4ebc11b54bc55d050e50a585bc6.tar.lz
marcuscom-ports-fdbe3418e656a4ebc11b54bc55d050e50a585bc6.tar.xz
marcuscom-ports-fdbe3418e656a4ebc11b54bc55d050e50a585bc6.tar.zst
marcuscom-ports-fdbe3418e656a4ebc11b54bc55d050e50a585bc6.zip
Re-add epiphany-extensions at 0.9.0.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2297 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/epiphany-extensions')
-rw-r--r--www/epiphany-extensions/Makefile85
-rw-r--r--www/epiphany-extensions/distinfo2
-rw-r--r--www/epiphany-extensions/files/patch-configure13
-rw-r--r--www/epiphany-extensions/pkg-descr9
-rw-r--r--www/epiphany-extensions/pkg-plist54
5 files changed, 163 insertions, 0 deletions
diff --git a/www/epiphany-extensions/Makefile b/www/epiphany-extensions/Makefile
new file mode 100644
index 000000000..5d91c1ea5
--- /dev/null
+++ b/www/epiphany-extensions/Makefile
@@ -0,0 +1,85 @@
+# Ports collection Makefile for: epiphany-extensions
+# Date created: 30 December 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD: ports/www/epiphany-extensions/Makefile,v 1.2 2004/04/13 19:03:06 marcus Exp $
+#
+
+PORTNAME= epiphany
+PORTVERSION= 0.9.0
+CATEGORIES= www gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}${PKGNAMESUFFIX}/0.9
+PKGNAMESUFFIX= -extensions
+DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A set of add-ons for the Epiphany web browser
+
+BUILD_DEPENDS= epiphany:${PORTSDIR}/www/epiphany \
+ ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA}
+RUN_DEPENDS= epiphany:${PORTSDIR}/www/epiphany \
+ ${X11BASE}/lib/${MOZILLA}/components/libwidget_gtk2.so:${PORTSDIR}/www/${MOZILLA}
+
+MOZILLA= mozilla
+HEADERS_SUFX=
+
+MOZ_CONFIGURE_ARGS= --with-mozilla-snapshot="1.6"
+
+.if !defined(WITH_MOZILLA)
+MOZILLA= mozilla
+HEADERS_SUFX=
+.else
+.if ${WITH_MOZILLA}=="mozilla-devel" || ${WITH_MOZILLA}=="mozilla-devel-gtk2"
+MOZILLA= mozilla-devel
+HEADERS_SUFX= -devel
+MOZ_CONFIGURE_ARGS= --with-mozilla-snapshot="1.7b"
+.else
+MOZILLA= mozilla
+HEADERS_SUFX=
+.endif
+.endif
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+USE_GNOME= gnomeprefix gnomehack lthack gnometarget
+USE_LIBTOOL_VER=13
+USE_GMAKE= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \
+ LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
+CONFIGURE_ARGS= --with-extensions="all" \
+ ${MOZ_CONFIGURE_ARGS}
+
+.if defined(PACKAGE_BUILDING) || defined(PARALLEL_PACKAGE_BUILD)
+.undef WITHOUT_OPENSP
+WITH_OPENSP= yes
+.endif
+
+.include <bsd.port.pre.mk>
+
+.if exists(${LOCALBASE}/lib/libosp.so)
+WITH_OPENSP= yes
+.endif
+
+.if defined(WITH_OPENSP)
+CONFIGURE_ARGS+= --enable-opensp=yes
+.else
+CONFIGURE_ARGS+= --enable-opensp=no
+.endif
+
+pre-everything::
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} " By default epiphany-extensions builds with www/mozilla support, but you can"
+ @${ECHO_MSG} " change this by defining WITH_MOZILLA to one of the following values:"
+ @${ECHO_MSG}
+ @${ECHO_MSG} " mozilla-devel "
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "Epiphany-extensions also supports the following tunable option(s):"
+ @${ECHO_MSG} " WITH_OPENSP=yes Enable support for OpenSP SGML validation"
+ @${ECHO_MSG} ""
+
+post-patch:
+ @${REINPLACE_CMD} -e 's|mozilla-gtkmozembed|mozilla-gtkmozembed${HEADERS_SUFX}|g' ${WRKSRC}/configure
+
+.include <bsd.port.post.mk>
diff --git a/www/epiphany-extensions/distinfo b/www/epiphany-extensions/distinfo
new file mode 100644
index 000000000..0cf3bd335
--- /dev/null
+++ b/www/epiphany-extensions/distinfo
@@ -0,0 +1,2 @@
+MD5 (gnome2/epiphany-extensions-0.9.0.tar.bz2) = d79fef510d8ce0173f09d334973f674e
+SIZE (gnome2/epiphany-extensions-0.9.0.tar.bz2) = 379373
diff --git a/www/epiphany-extensions/files/patch-configure b/www/epiphany-extensions/files/patch-configure
new file mode 100644
index 000000000..3d1a72f41
--- /dev/null
+++ b/www/epiphany-extensions/files/patch-configure
@@ -0,0 +1,13 @@
+--- configure.orig Mon Feb 2 01:47:03 2004
++++ configure Mon Feb 2 01:47:33 2004
+@@ -22050,6 +22050,10 @@
+ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ ac_compiler_gnu=$ac_cv_c_compiler_gnu
++else
++
++ HAVE_OPENSP_TRUE='#'
++ HAVE_OPENSP_FALSE=
+
+ fi
+
diff --git a/www/epiphany-extensions/pkg-descr b/www/epiphany-extensions/pkg-descr
new file mode 100644
index 000000000..220193f34
--- /dev/null
+++ b/www/epiphany-extensions/pkg-descr
@@ -0,0 +1,9 @@
+Epiphany-extensions is a set of plugins for the Epiphany web browser that
+extend its base functionality. Currently, the following extensions are
+supported:
+
+* Mouse gestures
+* Pop-up blocker
+* Tabs menu
+
+WWW: http://savannah.nongnu.org/projects/ephyplugins/
diff --git a/www/epiphany-extensions/pkg-plist b/www/epiphany-extensions/pkg-plist
new file mode 100644
index 000000000..793d1dcb8
--- /dev/null
+++ b/www/epiphany-extensions/pkg-plist
@@ -0,0 +1,54 @@
+lib/epiphany/extensions/libcertificatesextension.a
+lib/epiphany/extensions/libcertificatesextension.so
+lib/epiphany/extensions/libcertificatesextension.so.0
+lib/epiphany/extensions/libdashboardextension.a
+lib/epiphany/extensions/libdashboardextension.so
+lib/epiphany/extensions/libdashboardextension.so.0
+lib/epiphany/extensions/liberrorviewerextension.a
+lib/epiphany/extensions/liberrorviewerextension.so
+lib/epiphany/extensions/liberrorviewerextension.so.0
+lib/epiphany/extensions/libgesturesextension.a
+lib/epiphany/extensions/libgesturesextension.so
+lib/epiphany/extensions/libgesturesextension.so.0
+lib/epiphany/extensions/libpopupblockerextension.a
+lib/epiphany/extensions/libpopupblockerextension.so
+lib/epiphany/extensions/libpopupblockerextension.so.0
+lib/epiphany/extensions/libtabsmenuextension.a
+lib/epiphany/extensions/libtabsmenuextension.so
+lib/epiphany/extensions/libtabsmenuextension.so.0
+share/gnome/epiphany-extensions/ephy-gestures.xml
+share/gnome/epiphany-extensions/glade/error-viewer.glade
+share/gnome/epiphany-extensions/icons/popup-blocker.svg
+share/locale/ca/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/cs/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/da/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/de/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/el/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/en_GB/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/es/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/fr/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/hr/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/hu/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/it/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/ja/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/lt/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/nl/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/no/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/pa/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/pl/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/pt/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/pt_BR/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/ru/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/sk/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/sq/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/sr/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/sr@Latn/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/sv/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/uk/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/wa/LC_MESSAGES/epiphany-extensions-1.0.mo
+share/locale/zh_CN/LC_MESSAGES/epiphany-extensions-1.0.mo
+@dirrm share/gnome/epiphany-extensions/icons
+@dirrm share/gnome/epiphany-extensions/glade
+@dirrm share/gnome/epiphany-extensions
+@dirrm lib/epiphany/extensions
+@dirrm lib/epiphany