Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/juffed: ChangeLog juffed-0.3.ebuild juffed-0.3_beta20080421.ebuild juffed-0.3_beta20080705.ebuild
Date: Tue, 05 Aug 2008 04:53:52
Message-Id: E1KQEYP-0002ba-Ma@stork.gentoo.org
1 yngwin 08/08/05 04:53:49
2
3 Modified: ChangeLog
4 Added: juffed-0.3.ebuild
5 Removed: juffed-0.3_beta20080421.ebuild
6 juffed-0.3_beta20080705.ebuild
7 Log:
8 Version bump. Removing betas. Patching the configure script to fix bug 231921 and to pass our currently set CXXFLAGS and LDFLAGS.
9 (Portage version: 2.2_rc6/cvs/Linux 2.6.26-hg1 i686)
10
11 Revision Changes Path
12 1.4 app-editors/juffed/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/juffed/ChangeLog?rev=1.4&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/juffed/ChangeLog?rev=1.4&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/juffed/ChangeLog?r1=1.3&r2=1.4
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-editors/juffed/ChangeLog,v
21 retrieving revision 1.3
22 retrieving revision 1.4
23 diff -u -r1.3 -r1.4
24 --- ChangeLog 27 Jul 2008 02:09:27 -0000 1.3
25 +++ ChangeLog 5 Aug 2008 04:53:49 -0000 1.4
26 @@ -1,6 +1,14 @@
27 # ChangeLog for app-editors/juffed
28 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/ChangeLog,v 1.3 2008/07/27 02:09:27 carlo Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/ChangeLog,v 1.4 2008/08/05 04:53:49 yngwin Exp $
31 +
32 +*juffed-0.3 (05 Aug 2008)
33 +
34 + 05 Aug 2008; Ben de Groot <yngwin@g.o>
35 + +files/juffed-0.3-configure.patch, -juffed-0.3_beta20080421.ebuild,
36 + -juffed-0.3_beta20080705.ebuild, +juffed-0.3.ebuild:
37 + Version bump. Removing betas. Patching the configure script to fix bug
38 + 231921 and to pass our currently set CXXFLAGS and LDFLAGS.
39
40 27 Jul 2008; Carsten Lohrke <carlo@g.o>
41 juffed-0.3_beta20080421.ebuild, juffed-0.3_beta20080705.ebuild:
42
43
44
45 1.1 app-editors/juffed/juffed-0.3.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/juffed/juffed-0.3.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/juffed/juffed-0.3.ebuild?rev=1.1&content-type=text/plain
49
50 Index: juffed-0.3.ebuild
51 ===================================================================
52 # Copyright 1999-2008 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/juffed-0.3.ebuild,v 1.1 2008/08/05 04:53:49 yngwin Exp $
55
56 EAPI=1
57 inherit qt4
58
59 MY_P=${PN}_${PV}
60
61 DESCRIPTION="QScintilla-based tabbed text editor with syntax highlighting"
62 HOMEPAGE="http://www.qt-apps.org/content/show.php/JuffEd?content=59940"
63 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND=">=x11-libs/qscintilla-2.1
71 || ( x11-libs/qt-gui:4 =x11-libs/qt-4.3*:4 )"
72 DEPEND="${RDEPEND}"
73
74 S="${WORKDIR}"/${MY_P}
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79 # force our current cxxflags and ldflags, and turn off warnings in tests, bug 231921
80 epatch "${FILESDIR}"/${P}-configure.patch
81 }
82
83 src_compile() {
84 # with econf it chokes on Unrecognized option: --host=...
85 ./configure --qmake=qmake --prefix=/usr
86 emake || die "Make failed!"
87 }
88
89 src_install() {
90 emake FAKE_ROOT="${D}" install || die "Make install failed!"
91 dodoc ChangeLog README
92 rm "${D}"/usr/share/juffed/{COPYING,README}
93 }