From 1e91a71878f28fb634718941807176a761b3b3ca Mon Sep 17 00:00:00 2001 From: kwm Date: Sun, 10 May 2009 12:10:42 +0000 Subject: Chase webkit lib dump. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12295 df743ca5-7f9a-e211-a948-0013205c9059 --- net/libproxy-webkit/Makefile | 29 ++++++ net/libproxy-webkit/pkg-descr | 7 ++ net/libproxy-webkit/pkg-plist | 1 + net/liferea/Makefile | 89 +++++++++++++++++ net/liferea/distinfo | 3 + net/liferea/files/patch-src-Makefile.in | 12 +++ net/liferea/pkg-descr | 7 ++ net/liferea/pkg-plist | 163 ++++++++++++++++++++++++++++++++ 8 files changed, 311 insertions(+) create mode 100644 net/libproxy-webkit/Makefile create mode 100644 net/libproxy-webkit/pkg-descr create mode 100644 net/libproxy-webkit/pkg-plist create mode 100644 net/liferea/Makefile create mode 100644 net/liferea/distinfo create mode 100644 net/liferea/files/patch-src-Makefile.in create mode 100644 net/liferea/pkg-descr create mode 100644 net/liferea/pkg-plist (limited to 'net') diff --git a/net/libproxy-webkit/Makefile b/net/libproxy-webkit/Makefile new file mode 100644 index 000000000..8432f8610 --- /dev/null +++ b/net/libproxy-webkit/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: libproxy-webkit +# Date created: 26 February 2009 +# Whom: Joe Marcus Clarke +# +# $FreeBSD: ports/net/libproxy-webkit/Makefile,v 1.1 2009/02/27 05:31:08 marcus Exp $ +# + +PORTREVISION= 1 +CATEGORIES= net devel +PKGNAMESUFFIX= -webkit + +MAINTAINER= gnome@FreeBSD.org +COMMENT= WebKit Javascript plug-in for libproxy + +LIB_DEPENDS= proxy.0:${PORTSDIR}/net/libproxy \ + webkit-1.0.6:${PORTSDIR}/www/webkit-gtk2 + +MASTERDIR= ${.CURDIR}/../libproxy +BUILD_WRKSRC= ${WRKSRC}/src/plugins +INSTALL_WRKSRC= ${BUILD_WRKSRC} +DESCR= ${.CURDIR}/pkg-descr +PLIST= ${.CURDIR}/pkg-plist +CONFIGURE_ARGS=--without-gnome --without-kde --with-webkit \ + --without-mozjs --without-networkmanager --without-python \ + --without-envvar --without-file + +LIBPROXY_SLAVE= yes + +.include "${MASTERDIR}/Makefile" diff --git a/net/libproxy-webkit/pkg-descr b/net/libproxy-webkit/pkg-descr new file mode 100644 index 000000000..e9b912c76 --- /dev/null +++ b/net/libproxy-webkit/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 the WebKit web browser to make use of libproxy. + +WWW: http://code.google.com/p/libproxy/ diff --git a/net/libproxy-webkit/pkg-plist b/net/libproxy-webkit/pkg-plist new file mode 100644 index 000000000..1032ea9e2 --- /dev/null +++ b/net/libproxy-webkit/pkg-plist @@ -0,0 +1 @@ +lib/libproxy/%%VERSION%%/plugins/webkit.so diff --git a/net/liferea/Makefile b/net/liferea/Makefile new file mode 100644 index 000000000..512998de5 --- /dev/null +++ b/net/liferea/Makefile @@ -0,0 +1,89 @@ +# Ports collection Makefile for: liferea +# Date created: 28 August 2003 +# Whom: Hye-Shik Chang +# +# $FreeBSD$ +# + +PORTNAME= liferea +PORTVERSION= 1.4.28 +PORTREVISION= 1 +CATEGORIES= net gnome +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= liferea + +MAINTAINER= pav@FreeBSD.org +COMMENT= Simple RSS/RDF feed reader + +LIB_DEPENDS= sqlite3.8:${PORTSDIR}/databases/sqlite3 + +USE_GNOME= gnomeprefix gnomehack libglade2 +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +MAKE_JOBS_SAFE= yes + +MAN1= liferea.1 +MANLANG= "" pl +GCONF_SCHEMAS= liferea.schemas +INSTALLS_ICONS= yes + +OPTIONS= LIBNOTIFY "Enable libnotify support" on \ + DBUS "Enable dbus support" on \ + GNUTLS "Enable SSL/HTTPS support" on \ + GTKHTML "Use GtkHtml for rendering" on \ + WEBKIT "Use Webkit for rendering" off +# XULRUNNER "Use Xulrunner for rendering" off + +.include + +.ifdef WITHOUT_LIBNOTIFY +CONFIGURE_ARGS+=--disable-libnotify +PLIST_SUB+= NOTIFY="@comment " +.else +LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify +PLIST_SUB+= NOTIFY="" +.endif + +.ifdef WITHOUT_GNUTLS +CONFIGURE_ARGS+=--disable-gnutls +.else +LIB_DEPENDS+= gnutls.26:${PORTSDIR}/security/gnutls +.endif + +.ifdef WITH_GTKHTML +USE_GNOME+= libgtkhtml +CONFIGURE_ARGS+=--enable-gtkhtml2 +PLIST_SUB+= GTKHTML="" +.else +CONFIGURE_ARGS+=--disable-gtkhtml2 +PLIST_SUB+= GTKHTML="@comment " +.endif + +.ifdef WITH_WEBKIT +LIB_DEPENDS+= webkit-1.0.6:${PORTSDIR}/www/webkit-gtk2 +CONFIGURE_ARGS+=--enable-webkit +PLIST_SUB+= WEBKIT="" +.else +CONFIGURE_ARGS+=--disable-webkit +PLIST_SUB+= WEBKIT="@comment " +.endif + +.ifdef WITH_XULRUNNER +CONFIGURE_ARGS+=--with-gecko=libxul +BUILD_DEPENDS+= ${LOCALBASE}/lib/libxul/libxul.so:${PORTSDIR}/www/libxul +RUN_DEPENDS+= ${LOCALBASE}/lib/libxul/libxul.so:${PORTSDIR}/www/libxul +PLIST_SUB+= XUL="" +.else +CONFIGURE_ARGS+=--disable-gecko +PLIST_SUB+= XUL="@comment " +.endif + +.ifdef WITHOUT_DBUS +CONFIGURE_ARGS+=--disable-dbus +.else +LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus +.endif + +.include diff --git a/net/liferea/distinfo b/net/liferea/distinfo new file mode 100644 index 000000000..59d76eac1 --- /dev/null +++ b/net/liferea/distinfo @@ -0,0 +1,3 @@ +MD5 (liferea-1.4.28.tar.gz) = 411bd9e56a648056cdce96dbea104c3e +SHA256 (liferea-1.4.28.tar.gz) = d39abe7d9651783f4ecd59a0f6c5e2650f32df834e0e742a6b5d003795913fd6 +SIZE (liferea-1.4.28.tar.gz) = 1697036 diff --git a/net/liferea/files/patch-src-Makefile.in b/net/liferea/files/patch-src-Makefile.in new file mode 100644 index 000000000..8fc032948 --- /dev/null +++ b/net/liferea/files/patch-src-Makefile.in @@ -0,0 +1,12 @@ +--- src/Makefile.in.orig 2008-12-03 10:17:44.000000000 +0100 ++++ src/Makefile.in 2008-12-03 10:18:37.000000000 +0100 +@@ -302,7 +302,8 @@ + top_srcdir = @top_srcdir@ + @WITH_GTKHTML2_TRUE@GTKHTML2 = gtkhtml2 + @WITH_WEBKIT_TRUE@WEBKIT = webkit +-SUBDIRS = net parsers notification ui fl_sources scripting . $(GTKHTML2) $(WEBKIT) mozilla ++@WITH_MOZILLA_TRUE@MOZILLA = mozilla ++SUBDIRS = net parsers notification ui fl_sources scripting . $(GTKHTML2) $(WEBKIT) $(MOZILLA) + AM_CPPFLAGS = \ + -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ + -DPACKAGE_LIB_DIR=\""$(pkglibdir)"\" \ diff --git a/net/liferea/pkg-descr b/net/liferea/pkg-descr new file mode 100644 index 000000000..3f0b1f4cf --- /dev/null +++ b/net/liferea/pkg-descr @@ -0,0 +1,7 @@ +Liferea is a simple FeedReader clone. It is a reader for RSS/RDF +feeds. The problem with FeedReader: for now its only available for +Windows. There are some projects for GNU/Linux or Unices, but no +satisfying solutions for GTK/GNOME. Therefore I started to write +this program. Liferea is an abbreviation for Linux Feed Reader. + +WWW: http://liferea.sourceforge.net/ diff --git a/net/liferea/pkg-plist b/net/liferea/pkg-plist new file mode 100644 index 000000000..28b87c0db --- /dev/null +++ b/net/liferea/pkg-plist @@ -0,0 +1,163 @@ +bin/liferea +bin/liferea-add-feed +bin/liferea-bin +%%GTKHTML%%lib/liferea/liblihtmlg.la +%%GTKHTML%%lib/liferea/liblihtmlg.so +%%WEBKIT%%lib/liferea/liblihtmlw.la +%%WEBKIT%%lib/liferea/liblihtmlw.so +@comment %%XUL%%lib/liferea/liblihtmlx.la +@comment %%XUL%%lib/liferea/liblihtmlx.so +%%NOTIFY%%lib/liferea/liblinotiflibnotify.la +%%NOTIFY%%lib/liferea/liblinotiflibnotify.so +share/applications/liferea.desktop +share/liferea/bloglines_source.glade +share/liferea/google_source.glade +share/liferea/liferea.glade +share/liferea/node_source.glade +share/liferea/opml_source.glade +share/liferea/css/adblock.css +share/liferea/css/liferea.css +share/liferea/doc/html/about_de.html +share/liferea/doc/html/about_en.html +share/liferea/doc/html/concepts_de.html +share/liferea/doc/html/concepts_en.html +share/liferea/doc/html/enclosures_de.html +share/liferea/doc/html/enclosures_en.html +share/liferea/doc/html/faq_de.html +share/liferea/doc/html/faq_en.html +share/liferea/doc/html/faq_ja.html +share/liferea/doc/html/folders_de.html +share/liferea/doc/html/folders_en.html +share/liferea/doc/html/headlines_de.html +share/liferea/doc/html/headlines_en.html +share/liferea/doc/html/help_feed_default.png +share/liferea/doc/html/help_feed_error.png +share/liferea/doc/html/help_feed_prop_adv_1.4.0.png +share/liferea/doc/html/help_feed_prop_cache_1.4.0.png +share/liferea/doc/html/help_feed_prop_downl_1.4.0.png +share/liferea/doc/html/help_feed_prop_general_1.4.0.png +share/liferea/doc/html/help_feed_prop_source_1.4.0.png +share/liferea/doc/html/help_folder.png +share/liferea/doc/html/help_item_flag.png +share/liferea/doc/html/help_item_unread.png +share/liferea/doc/html/help_opml.png +share/liferea/doc/html/help_prefs_browser_1.4.0.png +share/liferea/doc/html/help_prefs_enclosures_1.4.0.png +share/liferea/doc/html/help_prefs_feeds_1.4.0.png +share/liferea/doc/html/help_prefs_folders_1.4.0.png +share/liferea/doc/html/help_prefs_gui_1.4.0.png +share/liferea/doc/html/help_prefs_headlines_1.4.0.png +share/liferea/doc/html/help_prefs_proxy_1.4.0.png +share/liferea/doc/html/help_search_1.4.0.png +share/liferea/doc/html/help_source_add_1.4.0.png +share/liferea/doc/html/help_subscribe_1.4.0.png +share/liferea/doc/html/help_vfolder_1.4.0.png +share/liferea/doc/html/newsbin_de.html +share/liferea/doc/html/newsbin_en.html +share/liferea/doc/html/preferences_de.html +share/liferea/doc/html/preferences_en.html +share/liferea/doc/html/reference.css +share/liferea/doc/html/reference_de.html +share/liferea/doc/html/reference_en.html +share/liferea/doc/html/reference_ja.html +share/liferea/doc/html/reference_nl.html +share/liferea/doc/html/searching_de.html +share/liferea/doc/html/searching_en.html +share/liferea/doc/html/subscriptions_de.html +share/liferea/doc/html/subscriptions_en.html +share/liferea/doc/html/topics_de.html +share/liferea/doc/html/topics_en.html +share/liferea/doc/html/topics_ja.html +share/liferea/doc/html/updating_de.html +share/liferea/doc/html/updating_en.html +share/liferea/dtd/html.ent +share/liferea/media/xspf_license.txt +share/liferea/media/xspf_player_slim.swf +share/liferea/opml/feedlist.opml +share/liferea/opml/feedlist_bg.opml +share/liferea/opml/feedlist_ca.opml +share/liferea/opml/feedlist_de.opml +share/liferea/opml/feedlist_es.opml +share/liferea/opml/feedlist_eu.opml +share/liferea/opml/feedlist_fr.opml +share/liferea/opml/feedlist_nl.opml +share/liferea/opml/feedlist_pl.opml +share/liferea/opml/feedlist_pt.opml +share/liferea/opml/feedlist_pt_BR.opml +share/liferea/opml/feedlist_ru.opml +share/liferea/opml/feedlist_sk.opml +share/liferea/opml/feedlist_sv.opml +share/liferea/opml/feedlist_tr.opml +share/liferea/pixmaps/arrow.png +share/liferea/pixmaps/attachment.png +share/liferea/pixmaps/available.png +share/liferea/pixmaps/available_offline.png +share/liferea/pixmaps/bookmark.png +share/liferea/pixmaps/comments.png +share/liferea/pixmaps/default.png +share/liferea/pixmaps/directory.png +share/liferea/pixmaps/edit.png +share/liferea/pixmaps/empty.png +share/liferea/pixmaps/empty_offline.png +share/liferea/pixmaps/fl_bloglines.png +share/liferea/pixmaps/fl_google.png +share/liferea/pixmaps/fl_opml.png +share/liferea/pixmaps/flag.png +share/liferea/pixmaps/grayflag.png +share/liferea/pixmaps/liferea.png +share/liferea/pixmaps/newsbin.png +share/liferea/pixmaps/ocs.png +share/liferea/pixmaps/offline.png +share/liferea/pixmaps/online.png +share/liferea/pixmaps/read.xpm +share/liferea/pixmaps/tag.png +share/liferea/pixmaps/technorati.png +share/liferea/pixmaps/unread.png +share/liferea/pixmaps/vfolder.png +share/liferea/xslt/feed.xml +share/liferea/xslt/feed.xml.in +share/liferea/xslt/folder.xml +share/liferea/xslt/folder.xml.in +share/liferea/xslt/item.xml +share/liferea/xslt/item.xml.in +share/liferea/xslt/i18n-filter.xslt +share/liferea/xslt/newsbin.xml +share/liferea/xslt/newsbin.xml.in +share/liferea/xslt/source.xml +share/liferea/xslt/source.xml.in +share/liferea/xslt/vfolder.xml +share/liferea/xslt/vfolder.xml.in +share/icons/hicolor/48x48/apps/liferea.png +share/locale/ar/LC_MESSAGES/liferea.mo +share/locale/be@latin/LC_MESSAGES/liferea.mo +share/locale/ca/LC_MESSAGES/liferea.mo +share/locale/cs/LC_MESSAGES/liferea.mo +share/locale/de/LC_MESSAGES/liferea.mo +share/locale/el/LC_MESSAGES/liferea.mo +share/locale/es/LC_MESSAGES/liferea.mo +share/locale/eu/LC_MESSAGES/liferea.mo +share/locale/fr/LC_MESSAGES/liferea.mo +share/locale/hu/LC_MESSAGES/liferea.mo +share/locale/it/LC_MESSAGES/liferea.mo +share/locale/ja/LC_MESSAGES/liferea.mo +share/locale/pl/LC_MESSAGES/liferea.mo +share/locale/pt/LC_MESSAGES/liferea.mo +share/locale/pt_BR/LC_MESSAGES/liferea.mo +share/locale/ru/LC_MESSAGES/liferea.mo +share/locale/sk/LC_MESSAGES/liferea.mo +share/locale/sq/LC_MESSAGES/liferea.mo +share/locale/sv/LC_MESSAGES/liferea.mo +share/locale/tr/LC_MESSAGES/liferea.mo +@dirrm share/liferea/xslt +@dirrm share/liferea/pixmaps +@dirrm share/liferea/opml +@dirrm share/liferea/media +@dirrm share/liferea/dtd +@dirrm share/liferea/doc/html +@dirrm share/liferea/doc +@dirrm share/liferea/css +@dirrm share/liferea +@dirrmtry man/pl/man1 +@dirrmtry man/pl +@dirrm lib/liferea +@dirrmtry share/applications -- cgit v1.2.3