Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/db4o: ChangeLog db4o-6.1.ebuild db4o-5.0.ebuild db4o-4.6.ebuild
Date: Thu, 07 Oct 2010 19:03:06
Message-Id: 20101007184954.13CD720051@flycatcher.gentoo.org
1 pacho 10/10/07 18:49:54
2
3 Modified: ChangeLog db4o-6.1.ebuild
4 Removed: db4o-5.0.ebuild db4o-4.6.ebuild
5 Log:
6 Remove old. Fix unquoted variables.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 dev-dotnet/db4o/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/db4o/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/db4o/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/db4o/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/db4o/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 14 Mar 2008 13:19:03 -0000 1.7
23 +++ ChangeLog 7 Oct 2010 18:49:53 -0000 1.8
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-dotnet/db4o
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/db4o/ChangeLog,v 1.7 2008/03/14 13:19:03 phreak Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/db4o/ChangeLog,v 1.8 2010/10/07 18:49:53 pacho Exp $
30 +
31 + 07 Oct 2010; Pacho Ramos <pacho@g.o> -db4o-4.6.ebuild,
32 + -db4o-5.0.ebuild, db4o-6.1.ebuild:
33 + Remove old. Fix unquoted variables.
34
35 14 Mar 2008; Christian Heim <phreak@g.o> metadata.xml:
36 Removing Peter Johanson (latexer, #206688) from metadata.xml.
37
38
39
40 1.2 dev-dotnet/db4o/db4o-6.1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/db4o/db4o-6.1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/db4o/db4o-6.1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-dotnet/db4o/db4o-6.1.ebuild?r1=1.1&r2=1.2
45
46 Index: db4o-6.1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/db4o/db4o-6.1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- db4o-6.1.ebuild 24 Jun 2007 17:58:59 -0000 1.1
53 +++ db4o-6.1.ebuild 7 Oct 2010 18:49:53 -0000 1.2
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2007 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/db4o/db4o-6.1.ebuild,v 1.1 2007/06/24 17:58:59 jurek Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/db4o/db4o-6.1.ebuild,v 1.2 2010/10/07 18:49:53 pacho Exp $
60
61 inherit mono multilib eutils
62
63 @@ -18,9 +18,9 @@
64
65 src_unpack() {
66 unpack ${A}
67 - cd ${S}
68 + cd "${S}"
69
70 - epatch ${FILESDIR}/${P}-makefile.patch
71 + epatch "${FILESDIR}/${P}-makefile.patch"
72 }
73
74 src_compile() {
75 @@ -31,9 +31,9 @@
76 src_install() {
77
78 if use doc; then
79 - emake DESTDIR=${D} install || die "emake install failed"
80 + emake DESTDIR="${D}" install || die "emake install failed"
81 else
82 # Prevents from installing documentation
83 - emake RPM_DOC_DIR="." DESTDIR=${D} install || die "emake install failed"
84 + emake RPM_DOC_DIR="." DESTDIR="${D}" install || die "emake install failed"
85 fi
86 }