diff options
Diffstat (limited to 'app-text/uudeview/uudeview-0.5.20-r1.ebuild')
-rw-r--r-- | app-text/uudeview/uudeview-0.5.20-r1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app-text/uudeview/uudeview-0.5.20-r1.ebuild b/app-text/uudeview/uudeview-0.5.20-r1.ebuild new file mode 100644 index 000000000000..8277e3829eb1 --- /dev/null +++ b/app-text/uudeview/uudeview-0.5.20-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="3" + +inherit eutils autotools + +DESCRIPTION="uu, xx, base64, binhex decoder" +HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/" +SRC_URI="http://www.fpx.de/fp/Software/UUDeview/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="tk" + +RDEPEND="tk? ( dev-lang/tk )" + +DEPEND="${RDEPEND} + sys-devel/autoconf" + +src_prepare() { + epatch "${FILESDIR}/${P}-bugfixes.patch" + epatch "${FILESDIR}/${P}-CVE-2004-2265.patch" + epatch "${FILESDIR}/${P}-CVE-2008-2266.patch" + epatch "${FILESDIR}/${P}-man.patch" + epatch "${FILESDIR}/${P}-rename.patch" + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable tk tcl) \ + $(use_enable tk) +} + +src_install() { + # upstream's Makefiles are just broken + einstall MANDIR="${ED}/usr/share/man/" || die "Failed to install" + dodoc HISTORY INSTALL README +} |