blob: e053325fb0931f3c679a576d968d826434e05eaa (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/licq-console/licq-console-1.0.2.ebuild,v 1.9 2002/07/11 06:30:46 drobbins Exp $
LICQV=licq-1.0.4
S=${WORKDIR}/${P}
DESCRIPTION="Enables you to use Licq from the console using a ncurses 'GUI'"
SRC_URI="http://download.sourceforge.net/licq/${LICQV}.tar.gz
ftp://ftp.fanfic.org/pub/licq/srcs/${LICQV}.tar.gz
ftp://licq.darkorb.net/${LICQV}.tar.gz"
HOMEPAGE="http://www.licq.org"
SLOT="0"
DEPEND="virtual/glibc sys-devel/gcc
>=sys-libs/ncurses-5.2
>=net-im/licq-1.0.3"
RDEPEND="virtual/glibc sys-devel/gcc
>=sys-libs/ncurses-5.2"
src_compile() {
cd ${WORKDIR}/${LICQV}/plugins/console-${PV}
./configure --host=${CHOST} --prefix=/usr --with-licq-includes=/usr/include/licq || die
make || die
}
src_install() {
cd ${WORKDIR}/${LICQV}/plugins/console-${PV}
make prefix=${D}/usr install || die
dodoc README
}
|