Gentoo Archives: gentoo-commits

From: "Krzysiek Pawlik (nelchael)" <nelchael@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/scite: ChangeLog scite-1.74.ebuild scite-1.73.ebuild
Date: Sat, 10 Nov 2007 10:53:31
Message-Id: E1Iqnxs-0005Pz-Fh@stork.gentoo.org
1 nelchael 07/11/10 10:53:24
2
3 Modified: ChangeLog scite-1.74.ebuild
4 Removed: scite-1.73.ebuild
5 Log:
6 Fix quoting in 1.74, remove obsolete 1.73.
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.68 app-editors/scite/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.68&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?rev=1.68&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/ChangeLog?r1=1.67&r2=1.68
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v
19 retrieving revision 1.67
20 retrieving revision 1.68
21 diff -u -r1.67 -r1.68
22 --- ChangeLog 25 Jun 2007 21:21:16 -0000 1.67
23 +++ ChangeLog 10 Nov 2007 10:53:23 -0000 1.68
24 @@ -1,6 +1,10 @@
25 # ChangeLog for app-editors/scite
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.67 2007/06/25 21:21:16 nelchael Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/ChangeLog,v 1.68 2007/11/10 10:53:23 nelchael Exp $
29 +
30 + 10 Nov 2007; Krzysiek Pawlik <nelchael@g.o>
31 + -files/scite-1.73-install.patch, -scite-1.73.ebuild, scite-1.74.ebuild:
32 + Fix quoting in 1.74, remove obsolete 1.73.
33
34 *scite-1.74 (25 Jun 2007)
35
36
37
38
39 1.2 app-editors/scite/scite-1.74.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/scite-1.74.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/scite-1.74.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/scite/scite-1.74.ebuild?r1=1.1&r2=1.2
44
45 Index: scite-1.74.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.74.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- scite-1.74.ebuild 25 Jun 2007 21:21:16 -0000 1.1
52 +++ scite-1.74.ebuild 10 Nov 2007 10:53:23 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2007 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.74.ebuild,v 1.1 2007/06/25 21:21:16 nelchael Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-editors/scite/scite-1.74.ebuild,v 1.2 2007/11/10 10:53:23 nelchael Exp $
58
59 inherit toolchain-funcs eutils
60
61 @@ -20,18 +20,18 @@
62 dev-util/pkgconfig
63 >=sys-apps/sed-4"
64
65 -S=${WORKDIR}/${PN}/gtk
66 +S="${WORKDIR}/${PN}/gtk"
67
68 src_unpack() {
69 unpack ${A}
70 - cd ${WORKDIR}/scintilla/gtk
71 + cd "${WORKDIR}/scintilla/gtk"
72 sed -i makefile \
73 -e "s#^CXXFLAGS=#CXXFLAGS=${CXXFLAGS} #" \
74 -e "s#^\(CXXFLAGS=.*\)-Os#\1#" \
75 -e "s#^CC =\(.*\)#CC = $(tc-getCXX)#" \
76 || die "error patching makefile"
77
78 - cd ${S}
79 + cd "${S}"
80 sed -i makefile \
81 -e 's#usr/local#usr#g' \
82 -e 's#/gnome/apps/Applications#/applications#' \
83 @@ -41,7 +41,7 @@
84 -e 's#${D}##' \
85 -e 's#-g root#-g 0#' \
86 || die "error patching makefile"
87 - epatch ${FILESDIR}/${P}-install.patch
88 + epatch "${FILESDIR}/${P}-install.patch"
89 }
90
91 src_compile() {
92 @@ -57,16 +57,16 @@
93 dodir /usr/bin
94 dodir /usr/share/{pixmaps,applications}
95
96 - make prefix=${D}/usr install || die
97 + make prefix="${D}/usr" install || die
98
99 # we have to keep this because otherwise it'll break upgrading
100 - mv ${D}/usr/bin/SciTE ${D}/usr/bin/scite
101 + mv "${D}/usr/bin/SciTE" "${D}/usr/bin/scite"
102 dosym /usr/bin/scite /usr/bin/SciTE
103
104 # replace .desktop file with our own working version
105 insinto /usr/share/applications
106 - rm -f ${D}/usr/share/applications/SciTE.desktop
107 - doins ${FILESDIR}/scite.desktop
108 + rm -f "${D}/usr/share/applications/SciTE.desktop"
109 + doins "${FILESDIR}/scite.desktop"
110
111 doman ../doc/scite.1
112 dodoc ../README
113
114
115
116 --
117 gentoo-commits@g.o mailing list