blob: 5b250de2705c023047512a19dcd6f37b8423b261 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/qterm-0.5.12.ebuild,v 1.6 2012/07/19 15:35:06 kensington Exp $
EAPI=3
inherit cmake-utils eutils
DESCRIPTION="A BBS client for Linux"
HOMEPAGE="http://www.qterm.org/"
SRC_URI="mirror://sourceforge/qterm/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=">=x11-libs/qt-gui-4.5:4[qt3support]
dev-libs/openssl"
DEPEND="${RDEPEND}
kde-base/kdelibs
x11-libs/qt-assistant:4
x11-libs/qt-webkit:4"
src_prepare() {
epatch "${FILESDIR}"/"${PN}"-0.5.11-gentoo.patch \
"${FILESDIR}"/${P}-qt4.patch
}
src_install() {
cmake-utils_src_install
mv "${D}"/usr/bin/qterm "${D}"/usr/bin/QTerm || die
dodoc README TODO
}
|