summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrej Kacian <ticho@gentoo.org>2006-11-13 17:55:00 +0000
committerAndrej Kacian <ticho@gentoo.org>2006-11-13 17:55:00 +0000
commit9af5dad1d22ab244f84cf1db4d207a4ba77f61b6 (patch)
tree61753dc3dcde75151ac17e3aac9888f60677a087
parentUse separate tarball instead of the whole extra-plugins package. (diff)
downloadgentoo-2-9af5dad1d22ab244f84cf1db4d207a4ba77f61b6.tar.gz
gentoo-2-9af5dad1d22ab244f84cf1db4d207a4ba77f61b6.tar.bz2
gentoo-2-9af5dad1d22ab244f84cf1db4d207a4ba77f61b6.zip
Version bump. Use separate tarball instead of the whole extra-plugins package.
(Portage version: 2.1.2_rc1-r6)
-rw-r--r--mail-client/sylpheed-claws-rssyl/ChangeLog8
-rw-r--r--mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.73
-rw-r--r--mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.7.ebuild32
3 files changed, 42 insertions, 1 deletions
diff --git a/mail-client/sylpheed-claws-rssyl/ChangeLog b/mail-client/sylpheed-claws-rssyl/ChangeLog
index c11b5a56032b..34d41c109e7b 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.15 2006/11/13 10:11:49 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-rssyl/ChangeLog,v 1.16 2006/11/13 17:55:00 ticho Exp $
+
+*sylpheed-claws-rssyl-0.7 (13 Nov 2006)
+
+ 13 Nov 2006; Andrej Kacian <ticho@gentoo.org>
+ +sylpheed-claws-rssyl-0.7.ebuild:
+ Version bump. Use separate tarball instead of the whole extra-plugins package.
13 Nov 2006; Joseph Jezak <josejx@gentoo.org>
sylpheed-claws-rssyl-0.6.1.ebuild:
diff --git a/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.7 b/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.7
new file mode 100644
index 000000000000..d4606a03bd82
--- /dev/null
+++ b/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.7
@@ -0,0 +1,3 @@
+MD5 a5f8d0b37ac294732539e6315eebe2f6 rssyl-0.7.tar.gz 448632
+RMD160 d7e1d7766096a40a21f477818e047df542772365 rssyl-0.7.tar.gz 448632
+SHA256 20d16203880c914642ad97d377cb32eacd165355777c8b2ba821a87b63d6b299 rssyl-0.7.tar.gz 448632
diff --git a/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.7.ebuild b/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.7.ebuild
new file mode 100644
index 000000000000..049a11fb02bb
--- /dev/null
+++ b/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.7.ebuild
@@ -0,0 +1,32 @@
+# 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.7.ebuild,v 1.1 2006/11/13 17:55:00 ticho Exp $
+
+MY_P="${P#sylpheed-claws-}"
+
+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="http://www.claws-mail.org/downloads/plugins/${MY_P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
+IUSE="nls"
+DEPEND=">=mail-client/sylpheed-claws-2.6.0
+ net-misc/curl
+ dev-libs/libxml2
+ nls? ( >=sys-devel/gettext-0.12.1 )"
+
+S="${WORKDIR}/${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}
+}