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-pgpinline | |
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-pgpinline')
5 files changed, 58 insertions, 0 deletions
diff --git a/mail-client/sylpheed-claws-pgpinline/ChangeLog b/mail-client/sylpheed-claws-pgpinline/ChangeLog new file mode 100644 index 000000000000..75179ed5859b --- /dev/null +++ b/mail-client/sylpheed-claws-pgpinline/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for mail-client/sylpheed-claws-pgpinline +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-pgpinline/ChangeLog,v 1.1 2004/10/17 23:10:01 genone Exp $ + +*sylpheed-claws-pgpinline-0.2 (18 Oct 2004) + + 18 Oct 2004; <genone@gentoo.org> +metadata.xml, + +sylpheed-claws-pgpinline-0.2.ebuild: + initial commit, this package was split from the main sylpheed-claws package + for easier maintenance. + diff --git a/mail-client/sylpheed-claws-pgpinline/Manifest b/mail-client/sylpheed-claws-pgpinline/Manifest new file mode 100644 index 000000000000..442c1d56566b --- /dev/null +++ b/mail-client/sylpheed-claws-pgpinline/Manifest @@ -0,0 +1,2 @@ +MD5 799067c2b07be6c49a86170d32243595 sylpheed-claws-pgpinline-0.2.ebuild 692 +MD5 1dd92c0fba5c46245655a25e093c95e3 files/digest-sylpheed-claws-pgpinline-0.2 65 diff --git a/mail-client/sylpheed-claws-pgpinline/files/digest-sylpheed-claws-pgpinline-0.2 b/mail-client/sylpheed-claws-pgpinline/files/digest-sylpheed-claws-pgpinline-0.2 new file mode 100644 index 000000000000..d1ab1c3e527c --- /dev/null +++ b/mail-client/sylpheed-claws-pgpinline/files/digest-sylpheed-claws-pgpinline-0.2 @@ -0,0 +1 @@ +MD5 312f004145ac05ec8247047b8dc7a042 pgpinline-0.2.tar.gz 309632 diff --git a/mail-client/sylpheed-claws-pgpinline/metadata.xml b/mail-client/sylpheed-claws-pgpinline/metadata.xml new file mode 100644 index 000000000000..770af1a84c86 --- /dev/null +++ b/mail-client/sylpheed-claws-pgpinline/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-pgpinline/sylpheed-claws-pgpinline-0.2.ebuild b/mail-client/sylpheed-claws-pgpinline/sylpheed-claws-pgpinline-0.2.ebuild new file mode 100644 index 000000000000..c72a778b24aa --- /dev/null +++ b/mail-client/sylpheed-claws-pgpinline/sylpheed-claws-pgpinline-0.2.ebuild @@ -0,0 +1,29 @@ +# 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-pgpinline/sylpheed-claws-pgpinline-0.2.ebuild,v 1.1 2004/10/17 23:10:01 genone Exp $ + +MY_P="${P##sylpheed-claws-}" + +DESCRIPTION="Plugin for sylpheed-claws to support mails with inline pgp signatures" +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-r1 + =app-crypt/gpgme-0.3.14-r1" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + export GPGME_CONFIG=${ROOT}/usr/bin/gpgme3-config + + econf || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README +} |