blob: 27a1bdae84c22e3cd518bda71ac4b79b59397a4f (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/qterm-0.5.2-r2.ebuild,v 1.4 2009/09/22 20:06:04 mr_bones_ Exp $
EAPI="1"
inherit cmake-utils eutils
DESCRIPTION="A BBS client for Linux"
HOMEPAGE="http://qterm.sourceforge.net/"
SRC_URI="mirror://sourceforge/qterm/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
RDEPEND="x11-libs/qt-gui:4
dev-libs/openssl"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.4.7"
src_unpack() {
unpack ${A}
cd "${S}"
# bug #228225
epatch "${FILESDIR}/${P}-abs.patch"
# bug #225117
epatch "${FILESDIR}/${P}-as-needed.patch"
sed -i -e '/^Exec/s/qterm/QTerm/' src/qterm.desktop.in || die
# bug 276185
epatch "${FILESDIR}/${P}-include.patch"
# fix the broken language files
lrelease src/po/qterm_ch*.ts || die
}
src_install() {
cmake-utils_src_install
mv "${D}"/usr/bin/qterm "${D}"/usr/bin/QTerm || die
dodoc README TODO
}
pkg_postinst() {
elog
elog "Since 0.4.0-r1, /usr/bin/qterm has been renamed to /usr/bin/QTerm."
elog "Please see bug #176533 for more information."
elog
}
|