Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/adaptit: adaptit-4.0.2.ebuild
Date: Thu, 31 Dec 2009 21:08:30
Message-Id: E1NQSFw-0005Rx-LI@stork.gentoo.org
1 ssuominen 09/12/31 21:08:28
2
3 Modified: adaptit-4.0.2.ebuild
4 Log:
5 Fix quoting, don't install license
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 app-i18n/adaptit/adaptit-4.0.2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/adaptit/adaptit-4.0.2.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/adaptit/adaptit-4.0.2.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/adaptit/adaptit-4.0.2.ebuild?r1=1.1&r2=1.2
14
15 Index: adaptit-4.0.2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-i18n/adaptit/adaptit-4.0.2.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- adaptit-4.0.2.ebuild 24 Nov 2008 06:00:45 -0000 1.1
22 +++ adaptit-4.0.2.ebuild 31 Dec 2009 21:08:28 -0000 1.2
23 @@ -1,6 +1,6 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/adaptit/adaptit-4.0.2.ebuild,v 1.1 2008/11/24 06:00:45 kanaka Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/adaptit/adaptit-4.0.2.ebuild,v 1.2 2009/12/31 21:08:28 ssuominen Exp $
29
30 WX_GTK_VER=2.8
31
32 @@ -22,21 +22,18 @@
33 src_compile() {
34 append-flags -fno-strict-aliasing
35
36 - mkdir -p ${S}/build
37 - cd ${S}/build
38 + mkdir -p "${S}"/build
39 + cd "${S}"/build
40
41 - ECONF_SOURCE=${S}/bin/linux/
42 - econf \
43 - || die "Configure failed!"
44 + ECONF_SOURCE="${S}/bin/linux/"
45 + econf
46
47 emake || die "Build failed!"
48 }
49
50 src_install () {
51 - cd ${S}/build
52 + cd "${S}"/build
53 emake DESTDIR="${D}" install || die "Install failed"
54 - cd ${S}
55 + cd "${S}"
56 dodoc AUTHORS ChangeLog
57 - cd ${S}/license
58 - dodoc LICENSING.txt
59 }