summaryrefslogtreecommitdiff
blob: cd1c8cdbd8127d1b08e01f9960e0713fe7e3ca1e (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-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/aalib/aalib-1.2-r1.ebuild,v 1.5 2001/05/01 18:29:05 achim Exp $

A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="A ASCI-Graphics Library"
SRC_URI="ftp://ftp.ta.jcu.cz/pub/aa/${A}"
HOMEPAGE="http://www.ta.jcu.cz/aa/"

DEPEND=">=sys-libs/ncurses-5.1
	    slang? ( >=sys-libs/slang-1.4.2 )
	    X? ( virtual/x11 )"

RDEPEND=">=sys-libs/ncurses-5.1
	    slang? ( >=sys-libs/slang-1.4.2 )
	    X? ( virtual/x11 )"

src_unpack() {

    unpack ${A}
    cd ${S}
    patch -p0 < ${FILESDIR}/${P}-configure-gpm-gentoo.diff
    patch -p0 < ${FILESDIR}/${P}-configure.in-gpm-gentoo.diff
    touch *
}

src_compile() {

    local myconf
    if [ "`use slang`" ]
    then
      myconf="--with-slang-driver=yes"
    else
      myconf="--with-slang-driver=no"
    fi
    if [ "`use X`" ]
    then
      myconf="${myconf} --with-x11-driver=yes"
    else
      myconf="${myconf} --with-x11-driver=no"
    fi
    if [ -z "`use gpm`" ]
    then
      myconf="${myconf} --with-gpm-mouse=no"
    fi

    try ./configure --prefix=/usr --infodir=/usr/share/info --host=${CHOST} ${myconf}
    try make

}

src_install () {

    try make prefix=${D}/usr infodir=${D}/usr/share/info install

    dodoc ANNOUNCE AUTHORS ChangeLog COPYING NEWS README*

}