net-mail/mpack: Port to EAPI6

Package-Manager: Portage-2.3.6, Repoman-2.3.2
This commit is contained in:
Manuel Rüger
2017-07-03 00:46:16 +02:00
parent 51fafb9407
commit 18a203d21e
2 changed files with 40 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
--- uudecode.c 2003-07-21 20:46:37.000000000 +0000
+++ uudecode.c 2014-04-19 10:04:19.000000000 +0000
--- umpack-1.6/udecode.c 2003-07-21 20:46:37.000000000 +0000
+++ mpack-1.6/uudecode.c 2014-04-19 10:04:19.000000000 +0000
@@ -845,7 +845,7 @@
}
line += 4;

View File

@@ -0,0 +1,38 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
AT_M4DIR=cmulocal
inherit autotools
DESCRIPTION="Command-line MIME encoding and decoding utilities"
HOMEPAGE="ftp://ftp.andrew.cmu.edu/pub/mpack/"
SRC_URI="ftp://ftp.andrew.cmu.edu/pub/mpack/${P}.tar.gz"
SLOT="0"
LICENSE="HPND"
KEYWORDS="~amd64 ~x86 ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE=""
PATCHES=( "${FILESDIR}"/${P}-filenames.patch
"${FILESDIR}"/${P}-usage.patch
"${FILESDIR}"/${P}-munpack.patch
# NOTE: These three patches replace <mpack-1.6-gentoo.patch>
"${FILESDIR}"/${P}-compile.patch
"${FILESDIR}"/${P}-paths.patch
"${FILESDIR}"/${P}-cve-2011-4919.patch
"${FILESDIR}"/${P}-clang.patch
)
src_prepare() {
default
eautoreconf
}
src_install () {
emake DESTDIR="${D}" install
dodoc README.* Changes
}