diff options
author | Marius Mauch <genone@gentoo.org> | 2004-10-17 23:10:46 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2004-10-17 23:10:46 +0000 |
commit | 6f09d6e3fca97eed4528987bf1e0a3c8bc73a631 (patch) | |
tree | 82d70701e62a27979b2dc1f5412bb43174acb43e /mail-client/sylpheed-claws-mailmbox | |
parent | Fixed broken Manifest. (diff) | |
download | historical-6f09d6e3fca97eed4528987bf1e0a3c8bc73a631.tar.gz historical-6f09d6e3fca97eed4528987bf1e0a3c8bc73a631.tar.bz2 historical-6f09d6e3fca97eed4528987bf1e0a3c8bc73a631.zip |
sylpheed-claws plugin splitup
Diffstat (limited to 'mail-client/sylpheed-claws-mailmbox')
5 files changed, 55 insertions, 0 deletions
diff --git a/mail-client/sylpheed-claws-mailmbox/ChangeLog b/mail-client/sylpheed-claws-mailmbox/ChangeLog new file mode 100644 index 000000000000..6c83e25b86e3 --- /dev/null +++ b/mail-client/sylpheed-claws-mailmbox/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for mail-client/sylpheed-claws-mailmbox +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-mailmbox/ChangeLog,v 1.1 2004/10/17 23:09:16 genone Exp $ + +*sylpheed-claws-mailmbox-0.9 (18 Oct 2004) + + 18 Oct 2004; <genone@gentoo.org> +metadata.xml, + +sylpheed-claws-mailmbox-0.9.ebuild: + initial commit, this package was split from the main sylpheed-claws package + for easier maintenance. + diff --git a/mail-client/sylpheed-claws-mailmbox/Manifest b/mail-client/sylpheed-claws-mailmbox/Manifest new file mode 100644 index 000000000000..4f58f23f1e1f --- /dev/null +++ b/mail-client/sylpheed-claws-mailmbox/Manifest @@ -0,0 +1,2 @@ +MD5 12ca041d1649f113cbc1e6b80f33f02a sylpheed-claws-mailmbox-0.9.ebuild 600 +MD5 72109419685fb54ad908a857ff95a3f0 files/digest-sylpheed-claws-mailmbox-0.9 64 diff --git a/mail-client/sylpheed-claws-mailmbox/files/digest-sylpheed-claws-mailmbox-0.9 b/mail-client/sylpheed-claws-mailmbox/files/digest-sylpheed-claws-mailmbox-0.9 new file mode 100644 index 000000000000..03b4a36918a5 --- /dev/null +++ b/mail-client/sylpheed-claws-mailmbox/files/digest-sylpheed-claws-mailmbox-0.9 @@ -0,0 +1 @@ +MD5 520c2a2e1e45dda7ebb57e0e1e3ab9b3 mailmbox-0.9.tar.gz 366757 diff --git a/mail-client/sylpheed-claws-mailmbox/metadata.xml b/mail-client/sylpheed-claws-mailmbox/metadata.xml new file mode 100644 index 000000000000..770af1a84c86 --- /dev/null +++ b/mail-client/sylpheed-claws-mailmbox/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +<maintainer> + <email>genone@gentoo.org</email> + <description>Primary maintainer</description> +</maintainer> +<maintainer> + <email>seemant@gentoo.org</email> +</maintainer> +<maintainer> + <email>bcowan@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/mail-client/sylpheed-claws-mailmbox/sylpheed-claws-mailmbox-0.9.ebuild b/mail-client/sylpheed-claws-mailmbox/sylpheed-claws-mailmbox-0.9.ebuild new file mode 100644 index 000000000000..7604f5ff6215 --- /dev/null +++ b/mail-client/sylpheed-claws-mailmbox/sylpheed-claws-mailmbox-0.9.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-mailmbox/sylpheed-claws-mailmbox-0.9.ebuild,v 1.1 2004/10/17 23:09:16 genone Exp $ + +MY_P="${P##sylpheed-claws-}" + +DESCRIPTION="Plugin for sylpheed-claws to operate on mbox type mailboxes" +HOMEPAGE="http://sylpheed-claws.sourceforge.net" +SRC_URI="http://sylpheed-claws.sourceforge.net/downloads/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" +DEPEND=">=mail-client/sylpheed-claws-0.9.12b" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README +} |