Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/esvn: ChangeLog esvn-0.6.12.ebuild
Date: Mon, 28 Dec 2009 16:48:43
Message-Id: E1NPIlr-00072D-Cn@stork.gentoo.org
1 ssuominen 09/12/28 16:48:39
2
3 Modified: ChangeLog esvn-0.6.12.ebuild
4 Log:
5 Stop using deprecated kde-functions.eclass.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.23 dev-util/esvn/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/esvn/ChangeLog?rev=1.23&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/esvn/ChangeLog?rev=1.23&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/esvn/ChangeLog?r1=1.22&r2=1.23
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-util/esvn/ChangeLog,v
18 retrieving revision 1.22
19 retrieving revision 1.23
20 diff -u -r1.22 -r1.23
21 --- ChangeLog 30 Dec 2007 08:56:46 -0000 1.22
22 +++ ChangeLog 28 Dec 2009 16:48:39 -0000 1.23
23 @@ -1,6 +1,9 @@
24 # ChangeLog for dev-util/esvn
25 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-util/esvn/ChangeLog,v 1.22 2007/12/30 08:56:46 mrness Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/esvn/ChangeLog,v 1.23 2009/12/28 16:48:39 ssuominen Exp $
29 +
30 + 28 Dec 2009; Samuli Suominen <ssuominen@g.o> esvn-0.6.12.ebuild:
31 + Stop using deprecated kde-functions.eclass.
32
33 30 Dec 2007; Alin Năstac <mrness@g.o> esvn-0.6.12.ebuild:
34 Update HOMEPAGE.
35
36
37
38 1.7 dev-util/esvn/esvn-0.6.12.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/esvn/esvn-0.6.12.ebuild?rev=1.7&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/esvn/esvn-0.6.12.ebuild?rev=1.7&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/esvn/esvn-0.6.12.ebuild?r1=1.6&r2=1.7
43
44 Index: esvn-0.6.12.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-util/esvn/esvn-0.6.12.ebuild,v
47 retrieving revision 1.6
48 retrieving revision 1.7
49 diff -u -r1.6 -r1.7
50 --- esvn-0.6.12.ebuild 30 Dec 2007 08:56:46 -0000 1.6
51 +++ esvn-0.6.12.ebuild 28 Dec 2009 16:48:39 -0000 1.7
52 @@ -1,10 +1,12 @@
53 -# Copyright 1999-2007 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-util/esvn/esvn-0.6.12.ebuild,v 1.6 2007/12/30 08:56:46 mrness Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-util/esvn/esvn-0.6.12.ebuild,v 1.7 2009/12/28 16:48:39 ssuominen Exp $
58
59 -inherit kde-functions
60 +EAPI=2
61 +inherit qt3
62 +
63 +MY_P=${P}-1
64
65 -MY_P="${P}-1"
66 DESCRIPTION="GUI frontend to the Subversion revision system"
67 HOMEPAGE="http://sourceforge.net/projects/esvn/"
68 SRC_URI="mirror://sourceforge/esvn/${MY_P}.tar.gz"
69 @@ -14,24 +16,24 @@
70 KEYWORDS="amd64 ~ppc ppc64 x86"
71 IUSE=""
72
73 -DEPEND=""
74 -RDEPEND="dev-util/subversion"
75 -
76 -need-qt 3
77 -
78 -S="${WORKDIR}/${PN}"
79 -
80 -src_unpack() {
81 - unpack ${A}
82 -
83 - sed -i "s:qmake:${QTDIR}/bin/qmake:" "${S}"/Makefile && \
84 - sed -i "s:/usr/share/doc/esvn/html-docs:/usr/share/doc/${PF}/html:" "${S}"/src/mainwindow.cpp || \
85 - die "at least one sed has failed"
86 +DEPEND="x11-libs/qt:3"
87 +RDEPEND="${DEPEND}
88 + dev-util/subversion"
89 +
90 +S=${WORKDIR}/${PN}
91 +
92 +src_prepare() {
93 + sed -i \
94 + -e "s:qmake:${QTDIR}/bin/qmake:" \
95 + Makefile || die
96 + sed -i \
97 + -e "s:/usr/share/doc/esvn/html-docs:/usr/share/doc/${PF}/html:" \
98 + src/mainwindow.cpp || die
99 }
100
101 src_install() {
102 - emake -f esvn.mak INSTALL_ROOT="${D}" install || die "emake install failed"
103 - dobin esvn esvn-diff-wrapper || die "failed to install bin files"
104 + emake -f esvn.mak INSTALL_ROOT="${D}" install || die
105 + dobin esvn esvn-diff-wrapper || die
106
107 dodoc AUTHORS ChangeLog README
108 dohtml -r html-docs/*