import evolution-rss 0.0.8
This plugin adds RSS Feeds support for evolution mail. Evolution RSS can display articles using summary view or HTML view. tweaks and ok bernd@
This commit is contained in:
parent
a472106929
commit
425e3795e2
45
mail/evolution-plugin-rss/Makefile
Normal file
45
mail/evolution-plugin-rss/Makefile
Normal file
@ -0,0 +1,45 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2008/05/13 14:17:15 jasper Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
COMMENT= RSS-reader plugin for GNOME
|
||||
|
||||
GNOME_PROJECT= evolution-rss
|
||||
GNOME_VERSION= 0.0.8
|
||||
PKGNAME= evolution-plugin-rss-${GNOME_VERSION}
|
||||
CATEGORIES= mail
|
||||
|
||||
HOMEPAGE= http://gnome.eu.org/evo/index.php/Evolution_RSS_Reader_Plugin
|
||||
|
||||
# GPLv2
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
WANTLIB= c dbus-1 glib-2.0 gobject-2.0 pcre pthread
|
||||
|
||||
MASTER_SITES= http://gnome.eu.org/
|
||||
EXTRACT_SUFX= .tar.gz
|
||||
|
||||
MODULES= devel/gettext \
|
||||
x11/gnome
|
||||
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
RUN_DEPENDS= ::mail/evolution
|
||||
LIB_DEPENDS= dbus-glib-1::x11/dbus-glib
|
||||
|
||||
USE_X11= Yes
|
||||
CONFIGURE_STYLE= gnu
|
||||
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
||||
--with-gconf-schema-file-dir=${LOCALBASE}/share/schemas/evolution-rss \
|
||||
--disable-schemas-install \
|
||||
--disable-gecko \
|
||||
--disable-webkit \
|
||||
--with-primary-render=gtkhtml
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
||||
.include <bsd.port.mk>
|
5
mail/evolution-plugin-rss/distinfo
Normal file
5
mail/evolution-plugin-rss/distinfo
Normal file
@ -0,0 +1,5 @@
|
||||
MD5 (evolution-rss-0.0.8.tar.gz) = xa3OCT4zJXO8H8+vI8H4tg==
|
||||
RMD160 (evolution-rss-0.0.8.tar.gz) = 3/kg+HjHubz/LPAloH8QNayCFqU=
|
||||
SHA1 (evolution-rss-0.0.8.tar.gz) = 8pIyl+lZXg4CMLsoQM1bXBvkaVA=
|
||||
SHA256 (evolution-rss-0.0.8.tar.gz) = TD6ao4uVAieFa74sNyXNz6Ua4VyUk5Hxm1AUug9+2ls=
|
||||
SIZE (evolution-rss-0.0.8.tar.gz) = 467683
|
17
mail/evolution-plugin-rss/patches/patch-configure
Normal file
17
mail/evolution-plugin-rss/patches/patch-configure
Normal file
@ -0,0 +1,17 @@
|
||||
$OpenBSD: patch-configure,v 1.1.1.1 2008/05/13 14:17:15 jasper Exp $
|
||||
--- configure.orig Tue May 13 15:00:38 2008
|
||||
+++ configure Tue May 13 15:00:58 2008
|
||||
@@ -20749,11 +20749,8 @@ if test -n "$EVOLUTION_VERSION"; then
|
||||
EVOLUTION_BASE_VERSION=$EVOLUTION_VERSION
|
||||
EVOLUTION_BASE_VERSION_S=""
|
||||
EVOLUTION_EXEC_VERSION=`pkg-config --variable=execversion evolution-shell 2>/dev/null`
|
||||
- if test -n "$EVOLUTION_EXEC_VERSION"; then
|
||||
- break;
|
||||
- else
|
||||
- EVOLUTION_EXEC_VERSION=$EVOLUTION_BASE_VERSION
|
||||
- break;
|
||||
+ if test -z "$EVOLUTION_EXEC_VERSION"; then
|
||||
+ EVOLUTION_EXEC_VERSION=$EVOLUTION_BASE_VERSION
|
||||
fi
|
||||
else
|
||||
evo_versions='12 11 10 8 6 4'
|
11
mail/evolution-plugin-rss/patches/patch-src_Makefile_in
Normal file
11
mail/evolution-plugin-rss/patches/patch-src_Makefile_in
Normal file
@ -0,0 +1,11 @@
|
||||
$OpenBSD: patch-src_Makefile_in,v 1.1.1.1 2008/05/13 14:17:15 jasper Exp $
|
||||
--- src/Makefile.in.orig Tue May 13 15:05:09 2008
|
||||
+++ src/Makefile.in Tue May 13 15:05:17 2008
|
||||
@@ -839,7 +839,6 @@ install-data-local:
|
||||
@echo ""
|
||||
@echo ""
|
||||
@echo ""
|
||||
- GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA)
|
||||
|
||||
uninstall-local:
|
||||
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-uninstall-rule $(schema_DATA)
|
@ -0,0 +1,15 @@
|
||||
$OpenBSD: patch-src_evolution-import-rss_c,v 1.1.1.1 2008/05/13 14:17:15 jasper Exp $
|
||||
|
||||
Increase the time-out to give evolution a fair chance to launch.
|
||||
|
||||
--- src/evolution-import-rss.c.orig Wed May 7 15:50:25 2008
|
||||
+++ src/evolution-import-rss.c Wed May 7 15:50:46 2008
|
||||
@@ -175,7 +175,7 @@ main (int argc, char *argv[])
|
||||
{
|
||||
system("evolution&");
|
||||
g_print("fireing evolution...\n");
|
||||
- sleep(10);
|
||||
+ sleep(60);
|
||||
send_dbus_ping ();
|
||||
g_timeout_add (EVOLUTION_PING_TIMEOUT, err_evo_cb, (gpointer)i++);
|
||||
g_main_loop_run(loop);
|
2
mail/evolution-plugin-rss/pkg/DESCR
Normal file
2
mail/evolution-plugin-rss/pkg/DESCR
Normal file
@ -0,0 +1,2 @@
|
||||
This plugin adds RSS Feeds support for evolution mail.
|
||||
Evolution RSS can display articles using summary view or HTML view.
|
18
mail/evolution-plugin-rss/pkg/PLIST
Normal file
18
mail/evolution-plugin-rss/pkg/PLIST
Normal file
@ -0,0 +1,18 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2008/05/13 14:17:15 jasper Exp $
|
||||
bin/evolution-import-rss
|
||||
lib/bonobo/servers/GNOME_Evolution_RSS_2.12.server
|
||||
lib/evolution/2.12/plugins/liborg-gnome-evolution-rss.a
|
||||
lib/evolution/2.12/plugins/liborg-gnome-evolution-rss.la
|
||||
lib/evolution/2.12/plugins/liborg-gnome-evolution-rss.so
|
||||
lib/evolution/2.12/plugins/org-gnome-evolution-rss.eplug
|
||||
lib/evolution/2.12/plugins/org-gnome-evolution-rss.xml
|
||||
share/evolution/2.12/errors/org-gnome-evolution-rss.error
|
||||
share/evolution/2.12/glade/rss-ui.glade
|
||||
share/evolution/2.12/images/rss.png
|
||||
share/locale/en_AU/LC_MESSAGES/evolution-rss.mo
|
||||
share/locale/ro/LC_MESSAGES/evolution-rss.mo
|
||||
share/locale/sv/LC_MESSAGES/evolution-rss.mo
|
||||
@unexec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-uninstall-rule %D/share/schemas/evolution-rss/*.schemas > /dev/null
|
||||
share/schemas/evolution-rss/
|
||||
share/schemas/evolution-rss/evolution-rss.schemas
|
||||
@exec GCONF_CONFIG_SOURCE=`%D/bin/gconftool-2 --get-default-source` %D/bin/gconftool-2 --makefile-install-rule %D/share/schemas/evolution-rss/*.schemas > /dev/null
|
Loading…
x
Reference in New Issue
Block a user