blob: 29ddf8d0d8c96068c9de1b4d8fa926d5dfc61212 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/uudeview-0.5.20.ebuild,v 1.7 2004/06/24 22:55:03 agriffis Exp $
IUSE="X tcltk debug"
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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ~ppc ~amd64"
RDEPEND="tcltk? ( dev-lang/tcl X? ( dev-lang/tk ) )"
DEPEND="${RDEPEND}
sys-devel/autoconf"
src_compile() {
autoconf || die
local myconf
if use debug; then
myconf="--disable-optimize"
else
myconf="--enable-optimize"
fi
if use tcltk && use X
then
myconf="${myconf} --enable-tk"
fi
econf \
`use_enable tcltk tcl` \
`use_enable debug optimize` \
$myconf || die
emake || die "emake failed"
}
src_install() {
einstall MANDIR=${D}/usr/share/man/ || die
dodoc HISTORY INSTALL README
}
|