Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/qterm: ChangeLog qterm-0.4.0-r1.ebuild
Date: Mon, 24 Dec 2007 03:24:51
Message-Id: E1J6dvl-00029m-RT@stork.gentoo.org
1 matsuu 07/12/24 03:24:41
2
3 Modified: ChangeLog
4 Added: qterm-0.4.0-r1.ebuild
5 Log:
6 Renamed /usr/bin/qterm to /usr/bin/QTerm, bug #176533.
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.21 x11-misc/qterm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/qterm/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/qterm/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/qterm/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/qterm/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 14 Dec 2006 06:16:45 -0000 1.20
23 +++ ChangeLog 24 Dec 2007 03:24:41 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-misc/qterm
26 -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/ChangeLog,v 1.20 2006/12/14 06:16:45 mr_bones_ Exp $
28 +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/ChangeLog,v 1.21 2007/12/24 03:24:41 matsuu Exp $
30 +
31 +*qterm-0.4.0-r1 (24 Dec 2007)
32 +
33 + 24 Dec 2007; MATSUU Takuto <matsuu@g.o> +qterm-0.4.0-r1.ebuild:
34 + Renamed from /usr/bin/qterm to /usr/bin/QTerm, bug #176533.
35
36 14 Dec 2006; Michael Sterrett <mr_bones_@g.o> -qterm-0.3.8.ebuild:
37 clean old, non-modX ebuild
38
39
40
41 1.1 x11-misc/qterm/qterm-0.4.0-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/qterm/qterm-0.4.0-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/qterm/qterm-0.4.0-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qterm-0.4.0-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/qterm/qterm-0.4.0-r1.ebuild,v 1.1 2007/12/24 03:24:41 matsuu Exp $
51
52 inherit eutils qt3
53
54 DESCRIPTION="QTerm is a BBS client in Linux."
55 HOMEPAGE="http://qterm.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/qterm/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE="arts esd ssl"
62
63 DEPEND="dev-lang/python
64 arts? ( kde-base/arts )
65 esd? ( >=media-sound/esound-0.2.22 )
66 ssl? ( dev-libs/openssl )"
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71 sed -i -e '/^Exec/s/qterm/QTerm/' qterm/qterm.desktop.in || die
72 }
73
74 src_compile() {
75 # fix the broken language files
76 lrelease qterm/po/qterm_ch*.ts
77
78 # yeah, it's --disable-ssh to disable ssl
79 local myconf="`use_enable esd` `use_enable ssl ssh` --program-transform-name=QTerm"
80
81 # Although "configure --help" claims use "--with-arts-dir" to set aRts dir, it actually
82 # check the value of "--with-artsdir" option. To gracefully fix this bug, I have to run
83 # s/(artsdir/(arts-dir/ to ${S}/admin/acinclude.m4.in, then make -f Makefile.dist to
84 # regenerate the configure script. For simplicity I choose to just use the buggy script
85 # and give it the "wrong" option.
86 use arts && myconf="${myconf} --enable-arts --with-artsdir=`kde-config --prefix`" \
87 || myconf="${myconf} --disable-arts"
88
89 econf ${myconf} || die "configure failed"
90 emake || die "emake failed"
91 }
92
93 src_install() {
94 emake install DESTDIR="${D}" || die "install faled"
95 dodoc AUTHORS BUGS ChangeLog README* RELEASE_NOTES
96 mv "${D}"/usr/bin/qterm "${D}"/usr/bin/QTerm || die
97 }
98
99
100
101 --
102 gentoo-commits@g.o mailing list