diff options
author | Andrej Kacian <ticho@gentoo.org> | 2005-12-26 20:40:55 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2005-12-26 20:40:55 +0000 |
commit | 64faed73d9b0b40df9bee536014d41e190134d8c (patch) | |
tree | 8a0e47c09b2e4463487c681391eca05eb3ac9d75 /mail-client/sylpheed-claws-rssyl | |
parent | Pull old versions. (diff) | |
download | gentoo-2-64faed73d9b0b40df9bee536014d41e190134d8c.tar.gz gentoo-2-64faed73d9b0b40df9bee536014d41e190134d8c.tar.bz2 gentoo-2-64faed73d9b0b40df9bee536014d41e190134d8c.zip |
Initial import. Ebuild by Yuri Vasilevski <yvasilev at duke.math.cinvestav.mx>.
(Portage version: 2.1_pre1)
Diffstat (limited to 'mail-client/sylpheed-claws-rssyl')
5 files changed, 50 insertions, 0 deletions
diff --git a/mail-client/sylpheed-claws-rssyl/ChangeLog b/mail-client/sylpheed-claws-rssyl/ChangeLog new file mode 100644 index 000000000000..16fd7db3f31f --- /dev/null +++ b/mail-client/sylpheed-claws-rssyl/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for mail-client/sylpheed-claws-rssyl +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-rssyl/ChangeLog,v 1.1 2005/12/26 20:40:55 ticho Exp $ + +*sylpheed-claws-rssyl-0.3 (26 Dec 2005) + + 26 Dec 2005; Andrej Kacian <ticho@gentoo.org> +metadata.xml, + +sylpheed-claws-rssyl-0.3.ebuild: + Initial import. Ebuild by Yuri Vasilevski <yvasilev at duke.math.cinvestav.mx>. + diff --git a/mail-client/sylpheed-claws-rssyl/Manifest b/mail-client/sylpheed-claws-rssyl/Manifest new file mode 100644 index 000000000000..a0efdd8272e0 --- /dev/null +++ b/mail-client/sylpheed-claws-rssyl/Manifest @@ -0,0 +1,3 @@ +MD5 6d2723a7baf10d3039e629081d9f16b8 files/digest-sylpheed-claws-rssyl-0.3 61 +MD5 3dc2c6c3eab48114b592c30d0b702722 metadata.xml 268 +MD5 a453fcdafeed33afda2e178c1284f5ad sylpheed-claws-rssyl-0.3.ebuild 695 diff --git a/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.3 b/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.3 new file mode 100644 index 000000000000..4734ecfb1ecb --- /dev/null +++ b/mail-client/sylpheed-claws-rssyl/files/digest-sylpheed-claws-rssyl-0.3 @@ -0,0 +1 @@ +MD5 53866c464c35737d0ba684c85491014c rssyl-0.3.tar.gz 390916 diff --git a/mail-client/sylpheed-claws-rssyl/metadata.xml b/mail-client/sylpheed-claws-rssyl/metadata.xml new file mode 100644 index 000000000000..300883c2e36e --- /dev/null +++ b/mail-client/sylpheed-claws-rssyl/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +<maintainer> + <email>ticho@gentoo.org</email> + <description>Primary maintainer</description> +</maintainer> +</pkgmetadata> diff --git a/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.3.ebuild b/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.3.ebuild new file mode 100644 index 000000000000..cd6351505a5c --- /dev/null +++ b/mail-client/sylpheed-claws-rssyl/sylpheed-claws-rssyl-0.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2005 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.3.ebuild,v 1.1 2005/12/26 20:40:55 ticho Exp $ + +MY_P="${P##sylpheed-claws-}" +SC_BASE="2.0.0_rc1" + +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://ticho.yweb.sk/rssyl/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND=">=mail-client/sylpheed-claws-${SC_BASE} + net-misc/curl + dev-libs/libxml2" + +S="${WORKDIR}/${MY_P}" + +src_install() { + make DESTDIR="${D}" install + dodoc ChangeLog README + + # kill useless files + rm -f ${D}/usr/lib*/sylpheed-claws/plugins/*.{a,la} +} |