diff options
author | Fernando J. Pereda <ferdy@gentoo.org> | 2005-01-26 10:23:56 +0000 |
---|---|---|
committer | Fernando J. Pereda <ferdy@gentoo.org> | 2005-01-26 10:23:56 +0000 |
commit | e881198c1e753c2f653573811ca8cb10976b9b49 (patch) | |
tree | 3d26d37daff5b2a2c74d069d605b26d5dd889de3 /net-mail | |
parent | devfs stuff added to 1.5_p10 thanks to Craig <craig@haquarter.de>. 1.5_p10 x8... (diff) | |
download | historical-e881198c1e753c2f653573811ca8cb10976b9b49.tar.gz historical-e881198c1e753c2f653573811ca8cb10976b9b49.tar.bz2 historical-e881198c1e753c2f653573811ca8cb10976b9b49.zip |
Adding ripole. Closes #79166. Submited by: steveb <tp22a@softhome.net>
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/ripole/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/ripole/Manifest | 14 | ||||
-rw-r--r-- | net-mail/ripole/files/digest-ripole-0.1.4 | 1 | ||||
-rw-r--r-- | net-mail/ripole/metadata.xml | 9 | ||||
-rw-r--r-- | net-mail/ripole/ripole-0.1.4.ebuild | 23 |
5 files changed, 54 insertions, 0 deletions
diff --git a/net-mail/ripole/ChangeLog b/net-mail/ripole/ChangeLog new file mode 100644 index 000000000000..5015fee2f6db --- /dev/null +++ b/net-mail/ripole/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for net-mail/ripole +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/ripole/ChangeLog,v 1.1 2005/01/26 10:23:55 ferdy Exp $ + + 26 Jan 2005; Fernando J. Pereda <ferdy@gentoo.org> : + New package ripole, closes #79166. Submitted by: steveb <tp22a@softhome.net> + diff --git a/net-mail/ripole/Manifest b/net-mail/ripole/Manifest new file mode 100644 index 000000000000..11e8f5f6f678 --- /dev/null +++ b/net-mail/ripole/Manifest @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 7c64364ba6be524b6ebc077c3ea53098 ripole-0.1.4.ebuild 601 +MD5 2c8002cf06d8a17d661c0a0789d6ce78 ChangeLog 337 +MD5 391a69f80ad60b20f9b8a2b15ccbcf32 metadata.xml 320 +MD5 16c8fe11065280cae6211da41b55ec73 files/digest-ripole-0.1.4 63 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFB92/GViELBEf1JB0RAgN7AJ9rSuOwnGxTqZzzXr8HQQ7okQu5HgCfRLqa +4capGp9JgHTwboUvKewIeAQ= +=8z+e +-----END PGP SIGNATURE----- diff --git a/net-mail/ripole/files/digest-ripole-0.1.4 b/net-mail/ripole/files/digest-ripole-0.1.4 new file mode 100644 index 000000000000..947f82bad593 --- /dev/null +++ b/net-mail/ripole/files/digest-ripole-0.1.4 @@ -0,0 +1 @@ +MD5 0db3547a509eec5e290c47f855a25c87 ripole-0.1.4.tar.gz 25386 diff --git a/net-mail/ripole/metadata.xml b/net-mail/ripole/metadata.xml new file mode 100644 index 000000000000..389bbbe812ff --- /dev/null +++ b/net-mail/ripole/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> + <longdescription> + ripOLE is a small program/library designed to pull out attachments from + OLE2 data files (ie, MS Office documents). + </longdescription> +</pkgmetadata> diff --git a/net-mail/ripole/ripole-0.1.4.ebuild b/net-mail/ripole/ripole-0.1.4.ebuild new file mode 100644 index 000000000000..38e6dd41d362 --- /dev/null +++ b/net-mail/ripole/ripole-0.1.4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/ripole/ripole-0.1.4.ebuild,v 1.1 2005/01/26 10:23:55 ferdy Exp $ + +DESCRIPTION="Program/library to pull out attachment from OLE2 data files" +HOMEPAGE="http://www.pldaniels.com/ripole/" +SRC_URI="http://www.pldaniels.com/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/libc" + +src_compile() { + make CFLAGS="${CFLAGS}" || die +} + +src_install() { + dobin ripole + dodoc CHANGELOG INSTALL README TODO LICENSE CONTRIBUTORS +} |