blob: f8b3047510c22b524b1cfea82e1d2d11f3219104 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/aalib-1.4_rc4-r2.ebuild,v 1.13 2003/07/18 21:55:44 tester Exp $
IUSE="X slang gpm"
inherit libtool
MY_P="${P/_/}"
S="${WORKDIR}/${PN}-1.4.0"
DESCRIPTION="A ASCII-Graphics Library"
SRC_URI="mirror://sourceforge/aa-project/${MY_P}.tar.gz"
HOMEPAGE="http://aa-project.sourceforge.net/aalib/"
DEPEND=">=sys-libs/ncurses-5.1
X? ( virtual/x11 )
gpm? ( sys-libs/gpm )
slang? ( >=sys-libs/slang-1.4.2 )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha hppa amd64"
pkg_setup() {
# We need autoconf-2.5
export WANT_AUTOCONF_2_5=1
}
src_unpack() {
unpack ${A}
patch -p0 < ${FILESDIR}/${P}-gentoo.diff || die
touch *
}
src_compile() {
local myconf=""
use slang \
&& myconf="--with-slang-driver=yes" \
|| myconf="--with-slang-driver=no"
use X \
&& myconf="${myconf} --with-x11-driver=yes" \
|| myconf="${myconf} --with-x11-driver=no"
use gpm \
&& myconf="${myconf} --with-gpm-mouse=no"
elibtoolize
econf ${myconf} || die
emake || die
}
src_install() {
einstall || die
dodoc ANNOUNCE AUTHORS ChangeLog COPYING NEWS README*
}
|