blob: 13d726af0c8e715b437ee1a56b927891f2f6ba09 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/qterm-0.3.8.ebuild,v 1.6 2005/07/07 05:19:55 caleb Exp $
DESCRIPTION="QTerm is a BBS client in Linux."
HOMEPAGE="http://qterm.sourceforge.net/"
SRC_URI="mirror://sourceforge/qterm/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="ssl arts"
DEPEND="virtual/x11
>=media-sound/esound-0.2.22
arts? ( kde-base/arts )
dev-lang/python
ssl? ( dev-libs/openssl )
=x11-libs/qt-3*"
src_compile() {
addwrite "$QTDIR/etc/settings"
# yeah, it's --disable-ssh to disable ssl
econf `use_enable ssl ssh` || die "configure failed"
emake || die "emake failed"
}
src_install() {
make install DESTDIR=${D} || die "install faled"
dodoc AUTHORS BUGS COPYING ChangeLog README* RELEASE_NOTES
}
|