blob: 1fb51a875f9fc242a9a5b855f353fc2a533b8e24 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/qterm-0.4.0-r1.ebuild,v 1.2 2008/01/10 15:41:05 matsuu Exp $
inherit eutils qt3
DESCRIPTION="QTerm is a BBS client in Linux."
HOMEPAGE="http://qterm.sourceforge.net/"
SRC_URI="mirror://sourceforge/qterm/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="arts esd ssl"
DEPEND="dev-lang/python
arts? ( kde-base/arts )
esd? ( >=media-sound/esound-0.2.22 )
ssl? ( dev-libs/openssl )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e '/^Exec/s/qterm/QTerm/' qterm/qterm.desktop.in || die
}
src_compile() {
# fix the broken language files
lrelease qterm/po/qterm_ch*.ts
# yeah, it's --disable-ssh to disable ssl
local myconf="`use_enable esd` `use_enable ssl ssh` --program-transform-name=QTerm"
# Although "configure --help" claims use "--with-arts-dir" to set aRts dir, it actually
# check the value of "--with-artsdir" option. To gracefully fix this bug, I have to run
# s/(artsdir/(arts-dir/ to ${S}/admin/acinclude.m4.in, then make -f Makefile.dist to
# regenerate the configure script. For simplicity I choose to just use the buggy script
# and give it the "wrong" option.
use arts && myconf="${myconf} --enable-arts --with-artsdir=`kde-config --prefix`" \
|| myconf="${myconf} --disable-arts"
econf ${myconf} || die "configure failed"
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" || die "install faled"
dodoc AUTHORS BUGS ChangeLog README* RELEASE_NOTES
mv "${D}"/usr/bin/qterm "${D}"/usr/bin/QTerm || die
}
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
}
|