diff options
author | 2005-03-07 20:23:48 +0000 | |
---|---|---|
committer | 2005-03-07 20:23:48 +0000 | |
commit | 2dc7c7a716a7968f2a658cadf2efbf09b52ed927 (patch) | |
tree | 760bbc759488602a54c9bc0e0b4c37fbce09a275 /net-mail/renattach | |
parent | udev rules (#84338); remove old version (diff) | |
download | historical-2dc7c7a716a7968f2a658cadf2efbf09b52ed927.tar.gz historical-2dc7c7a716a7968f2a658cadf2efbf09b52ed927.tar.bz2 historical-2dc7c7a716a7968f2a658cadf2efbf09b52ed927.zip |
added to portage
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'net-mail/renattach')
-rw-r--r-- | net-mail/renattach/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/renattach/Manifest | 14 | ||||
-rw-r--r-- | net-mail/renattach/files/digest-renattach-1.2.2 | 1 | ||||
-rw-r--r-- | net-mail/renattach/metadata.xml | 10 | ||||
-rw-r--r-- | net-mail/renattach/renattach-1.2.2.ebuild | 29 |
5 files changed, 64 insertions, 0 deletions
diff --git a/net-mail/renattach/ChangeLog b/net-mail/renattach/ChangeLog new file mode 100644 index 000000000000..849f8d5de046 --- /dev/null +++ b/net-mail/renattach/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-mail/renattach +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/renattach/ChangeLog,v 1.1 2005/03/07 20:23:48 xmerlin Exp $ + +*renattach-1.2.2 (07 Mar 2005) + + 07 Mar 2005; Christian Zoffoli <xmerlin@gentoo.org> +metadata.xml, + +renattach-1.2.2.ebuild: + added to portage + diff --git a/net-mail/renattach/Manifest b/net-mail/renattach/Manifest new file mode 100644 index 000000000000..62a6665eb397 --- /dev/null +++ b/net-mail/renattach/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 4821c19c6bb72e3366ef45d4b9c7a806 metadata.xml 352 +MD5 4f6137b6a202265fe16a393029846ac7 renattach-1.2.2.ebuild 753 +MD5 ba44fab5fa69508cf90cf9c41e1be804 ChangeLog 358 +MD5 2db7f3be7e5b698b12efef1505e48dec files/digest-renattach-1.2.2 67 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFCLLobgMUyd/cdjWsRAjBqAKCTPDEOZeQrDKigwalw7nEukmP71gCfZ/NL +U72sAEYevg+vdIoxWjpP8pU= +=8ZW/ +-----END PGP SIGNATURE----- diff --git a/net-mail/renattach/files/digest-renattach-1.2.2 b/net-mail/renattach/files/digest-renattach-1.2.2 new file mode 100644 index 000000000000..61dd09d6f2b9 --- /dev/null +++ b/net-mail/renattach/files/digest-renattach-1.2.2 @@ -0,0 +1 @@ +MD5 2a9c7c31ba618ea751fc0ba7a81836f8 renattach-1.2.2.tar.gz 123873 diff --git a/net-mail/renattach/metadata.xml b/net-mail/renattach/metadata.xml new file mode 100644 index 000000000000..094086bd9789 --- /dev/null +++ b/net-mail/renattach/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>xmerlin@gentoo.org</email> + <name>Christian Zoffoli</name> + </maintainer> + <longdescription></longdescription> +</pkgmetadata> diff --git a/net-mail/renattach/renattach-1.2.2.ebuild b/net-mail/renattach/renattach-1.2.2.ebuild new file mode 100644 index 000000000000..125ce9fa6e0d --- /dev/null +++ b/net-mail/renattach/renattach-1.2.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/renattach/renattach-1.2.2.ebuild,v 1.1 2005/03/07 20:23:48 xmerlin Exp $ + +inherit eutils + +DESCRIPTION="Filter that renames/deletes dangerous email attachments." +SRC_URI="http://www.pc-tools.net/files/unix/${P}.tar.gz" +HOMEPAGE="http://www.pc-tools.net/unix/renattach/" + +DEPEND="virtual/libc" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" + +src_compile() { + econf || die "configure error" + emake || die "build error" +} + +src_install () { + emake DESTDIR=${D} install || die "install error" + mv ${D}/etc/renattach.conf.ex ${D}/etc/renattach.conf + + dodoc AUTHORS ChangeLog README COPYING INSTALL NEWS +} + |