diff options
author | Andrej Kacian <ticho@gentoo.org> | 2004-09-19 20:53:42 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2004-09-19 20:53:42 +0000 |
commit | 7631804529962da526b7ae4ab6e3677477e781b3 (patch) | |
tree | 906e076023f4333ba00f59bcf435dcde15d018a0 /net-mail/spamcup | |
parent | Stable on alpha. (diff) | |
download | historical-7631804529962da526b7ae4ab6e3677477e781b3.tar.gz historical-7631804529962da526b7ae4ab6e3677477e781b3.tar.bz2 historical-7631804529962da526b7ae4ab6e3677477e781b3.zip |
Initial version, fixes #42920.
Diffstat (limited to 'net-mail/spamcup')
-rw-r--r-- | net-mail/spamcup/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/spamcup/Manifest | 14 | ||||
-rw-r--r-- | net-mail/spamcup/metadata.xml | 8 | ||||
-rw-r--r-- | net-mail/spamcup/spamcup-1.08.ebuild | 23 |
4 files changed, 55 insertions, 0 deletions
diff --git a/net-mail/spamcup/ChangeLog b/net-mail/spamcup/ChangeLog new file mode 100644 index 000000000000..d0fe76f86c73 --- /dev/null +++ b/net-mail/spamcup/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-mail/spamcup +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/spamcup/ChangeLog,v 1.1 2004/09/19 20:53:42 ticho Exp $ + +*spamcup-1.08 (19 Sep 2004) + + 19 Sep 2004; Andrej Kacian <ticho@gentoo.org> +metadata.xml, + +spamcup-1.08.ebuild: + Initial version. Closes #42920. + diff --git a/net-mail/spamcup/Manifest b/net-mail/spamcup/Manifest new file mode 100644 index 000000000000..8dd8a32677a1 --- /dev/null +++ b/net-mail/spamcup/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 a73d4c3d75884274febcfee9d8bbf686 ChangeLog 355 +MD5 3f61d9f697e7b7352880a66d156f26ca metadata.xml 222 +MD5 d2a4abe8904d0e25deb3750cebfe3b73 spamcup-1.08.ebuild 650 +MD5 7615c8407d7006e44fac9ba7ce7197d9 files/digest-spamcup-1.08 62 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFBTfHf10xuJSrg3/sRAvn5AJ4mhfCOQZ/r/D+vcubo0K/Dk8fT0wCfaKbG +M8o7MOqEtgXoHagbhcspMqU= +=WREK +-----END PGP SIGNATURE----- diff --git a/net-mail/spamcup/metadata.xml b/net-mail/spamcup/metadata.xml new file mode 100644 index 000000000000..93df6b622623 --- /dev/null +++ b/net-mail/spamcup/metadata.xml @@ -0,0 +1,8 @@ +<?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> +</maintainer> +</pkgmetadata> diff --git a/net-mail/spamcup/spamcup-1.08.ebuild b/net-mail/spamcup/spamcup-1.08.ebuild new file mode 100644 index 000000000000..e35578f1eed4 --- /dev/null +++ b/net-mail/spamcup/spamcup-1.08.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/spamcup/spamcup-1.08.ebuild,v 1.1 2004/09/19 20:53:42 ticho Exp $ + +DESCRIPTION="This script does the same you would do when you report spam with your browser in Spamcop.net." +HOMEPAGE="http://sourceforge.net/projects/spamcup/" +SRC_URI="mirror://sourceforge/spamcup/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=dev-lang/perl-5.8.0 + dev-perl/Getopt-ArgvFile + dev-perl/libwww-perl" + +src_install() { + dodir /usr/bin + dobin spamcup + + dodoc ChangeLog INSTALL LICENSE README +} |