blob: 674166658f6b6a4b83267afe7be9dfce95431af1 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-text/uudeview/uudeview-0.5.13.ebuild,v 1.4 2002/08/16 02:42:02 murphy Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="uu, xx, base64, binhex decoder"
SRC_URI="http://ibiblio.org/pub/Linux/utils/text/${P}.tar.gz"
HOMEPAGE="http://www.fpx.de/fp/Software/UUDeview/"
KEYWORDS="x86 sparc sparc64"
SLOT="0"
LICENSE="GPL-2"
DEPEND="tcltk? ( dev-lang/tcl dev-lang/tk )"
RDEPEND="${DEPEND}"
src_compile() {
local myconf
use tcltk || myconf="--disable-tcl --disable-tk"
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
${myconf} \
--mandir=${D}/usr/share/man || die "./configure failed"
emake || die
}
src_install () {
make \
prefix=${D}/usr \
infodir=${D}/usr/share/info \
install || die
# Install documentation.
dodoc COPYING INSTALL README
}
|