summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2006-06-18 16:52:04 +0000
committerAndrej Kacian <ticho@gentoo.org>2006-06-18 16:52:04 +0000
commit6613ea20a200e6064d683f92827ef912ce7c44b2 (patch)
tree01fdf6b1e83ffb9b509d1788e0a390bed5a0e798 /mail-client/sylpheed-claws-rssyl
parentStable on ppc64; bug #136708 (diff)
downloadgentoo-2-6613ea20a200e6064d683f92827ef912ce7c44b2.tar.gz
gentoo-2-6613ea20a200e6064d683f92827ef912ce7c44b2.tar.bz2
gentoo-2-6613ea20a200e6064d683f92827ef912ce7c44b2.zip
Version bump.
(Portage version: 2.1.1_pre1)
Diffstat (limited to 'mail-client/sylpheed-claws-rssyl')
-rw-r--r--mail-client/sylpheed-claws-rssyl/ChangeLog8
-rw-r--r--mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.53
-rw-r--r--mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.5.ebuild34
3 files changed, 44 insertions, 1 deletions
diff --git a/mail-client/sylpheed-claws-rssyl/ChangeLog b/mail-client/sylpheed-claws-rssyl/ChangeLog
index 06909c635b13..6e441088c152 100644
--- a/mail-client/sylpheed-claws-rssyl/ChangeLog
+++ b/mail-client/sylpheed-claws-rssyl/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for mail-client/sylpheed-claws-rssyl
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-rssyl/ChangeLog,v 1.7 2006/05/19 18:26:49 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-rssyl/ChangeLog,v 1.8 2006/06/18 16:52:04 ticho Exp $
+
+*sylpheed-claws-rssyl-0.5 (18 Jun 2006)
+
+ 18 Jun 2006; Andrej Kacian <ticho@gentoo.org>
+ +sylpheed-claws-rssyl-0.5.ebuild:
+ Version bump.
19 May 2006; Markus Rothe <corsair@gentoo.org>
sylpheed-claws-rssyl-0.4.ebuild:
diff --git a/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.5 b/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.5
new file mode 100644
index 000000000000..60b313a1234c
--- /dev/null
+++ b/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.5
@@ -0,0 +1,3 @@
+MD5 06b53d69913ea1c96fb154fa2686606a sylpheed-claws-extra-plugins-2.3.0.tar.bz2 3901667
+RMD160 64f026271d993de2c5895c251abf18c529b0244d sylpheed-claws-extra-plugins-2.3.0.tar.bz2 3901667
+SHA256 45e30623f3908577518a474a2f308453654d1f6422a2f15ff27ec4fb934aa438 sylpheed-claws-extra-plugins-2.3.0.tar.bz2 3901667
diff --git a/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.5.ebuild b/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.5.ebuild
new file mode 100644
index 000000000000..6f68cf162835
--- /dev/null
+++ b/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.5.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.5.ebuild,v 1.1 2006/06/18 16:52:04 ticho Exp $
+
+MY_P="${P##sylpheed-claws-}"
+SC_BASE="2.3.0"
+SC_BASE_NAME="sylpheed-claws-extra-plugins-${SC_BASE}"
+
+DESCRIPTION="This plugin allows you to read your favorite newsfeeds in Claws. RSS 1.0, 2.0 and Atom feeds are currently supported."
+HOMEPAGE="http://claws.sylpheed.org"
+SRC_URI="mirror://sourceforge/sylpheed-claws/${SC_BASE_NAME}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc64 ~x86"
+IUSE="nls"
+DEPEND=">=mail-client/sylpheed-claws-2.2.3
+ net-misc/curl
+ dev-libs/libxml2
+ nls? ( >=sys-devel/gettext-0.12.1 )"
+
+S="${WORKDIR}/${SC_BASE_NAME}/${MY_P}"
+
+src_compile() {
+ econf $(use_enable nls) || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install
+ dodoc ChangeLog README
+
+ # kill useless files
+ rm -f ${D}/usr/lib*/sylpheed-claws/plugins/*.{a,la}
+}