diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-12 13:03:49 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-12 13:03:49 +0000 |
commit | 4ff46a5768e6821c18cb0fc50b456be9c2340f82 (patch) | |
tree | b90b3938b485565d7b1cefeb31840e130fda0893 /net-mail/mpack | |
parent | unmasked gcc-3.1-r6 (diff) | |
download | gentoo-2-4ff46a5768e6821c18cb0fc50b456be9c2340f82.tar.gz gentoo-2-4ff46a5768e6821c18cb0fc50b456be9c2340f82.tar.bz2 gentoo-2-4ff46a5768e6821c18cb0fc50b456be9c2340f82.zip |
New package. Command-line MIME encoding and decoding utilities.
Diffstat (limited to 'net-mail/mpack')
-rw-r--r-- | net-mail/mpack/ChangeLog | 12 | ||||
-rw-r--r-- | net-mail/mpack/files/digest-mpack-1.5 | 1 | ||||
-rw-r--r-- | net-mail/mpack/mpack-1.5.ebuild | 23 |
3 files changed, 36 insertions, 0 deletions
diff --git a/net-mail/mpack/ChangeLog b/net-mail/mpack/ChangeLog new file mode 100644 index 000000000000..6a417b96014f --- /dev/null +++ b/net-mail/mpack/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for net-mail/mpack +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mpack/ChangeLog,v 1.1 2002/06/12 13:03:49 stroke Exp $ + +*mpack-1.5 (12 Jun 2002) + + 12 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> ChangeLog : + + New package. Ebuild author: Robert Coie <rac@intrigue.com> + + + diff --git a/net-mail/mpack/files/digest-mpack-1.5 b/net-mail/mpack/files/digest-mpack-1.5 new file mode 100644 index 000000000000..6819469ab30e --- /dev/null +++ b/net-mail/mpack/files/digest-mpack-1.5 @@ -0,0 +1 @@ +MD5 f41f8aa2ae92d90e1ac03291973e65e4 mpack-1.5-src.tar.Z 285360 diff --git a/net-mail/mpack/mpack-1.5.ebuild b/net-mail/mpack/mpack-1.5.ebuild new file mode 100644 index 000000000000..abb14dc53d04 --- /dev/null +++ b/net-mail/mpack/mpack-1.5.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mpack/mpack-1.5.ebuild,v 1.1 2002/06/12 13:03:49 stroke Exp $ + +DESCRIPTION="Command-line MIME encoding and decoding utilities" +HOMEPAGE="ftp://ftp.andrew.cmu.edu/pub/mpack/" +LICENSE="as-is" +SRC_URI="ftp://ftp.andrew.cmu.edu/pub/mpack/${P}-src.tar.Z" +SLOT="0" + +DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/mpack + +src_compile() { + emake CFLAGS="${CFLAGS}" || die +} + +src_install () { + dodir /usr + make DESTDIR=${D}/usr install || die +} |