Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/wxsqlite3: wxsqlite3-3.0.6.1.ebuild ChangeLog
Date: Sat, 28 Dec 2013 21:25:27
Message-Id: 20131228212523.7C5152004C@flycatcher.gentoo.org
1 jlec 13/12/28 21:25:23
2
3 Modified: wxsqlite3-3.0.6.1.ebuild ChangeLog
4 Log:
5 dev-db/wxsqlite3: Fix pkgconfig file installation
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
8
9 Revision Changes Path
10 1.2 dev-db/wxsqlite3/wxsqlite3-3.0.6.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/wxsqlite3/wxsqlite3-3.0.6.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/wxsqlite3/wxsqlite3-3.0.6.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/wxsqlite3/wxsqlite3-3.0.6.1.ebuild?r1=1.1&r2=1.2
15
16 Index: wxsqlite3-3.0.6.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/wxsqlite3/wxsqlite3-3.0.6.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- wxsqlite3-3.0.6.1.ebuild 28 Dec 2013 21:14:11 -0000 1.1
23 +++ wxsqlite3-3.0.6.1.ebuild 28 Dec 2013 21:25:23 -0000 1.2
24 @@ -1,12 +1,12 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/wxsqlite3/wxsqlite3-3.0.6.1.ebuild,v 1.1 2013/12/28 21:14:11 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/wxsqlite3/wxsqlite3-3.0.6.1.ebuild,v 1.2 2013/12/28 21:25:23 jlec Exp $
29
30 EAPI=5
31
32 WX_GTK_VER="2.8"
33
34 -inherit eutils wxwidgets
35 +inherit eutils multilib wxwidgets
36
37 DESCRIPTION="C++ wrapper around the public domain SQLite 3.x database"
38 HOMEPAGE="http://wxcode.sourceforge.net/components/wxsqlite3/"
39 @@ -27,7 +27,11 @@
40 src_prepare() {
41 rm -rf sqlite3 || die
42 cp configure28 configure || die
43 - cat "${FILESDIR}"/${P}.pc.in > ${PN}.pc.in || die
44 + sed \
45 + -e "s:@WXVERSION@:${WX_GTK_VER}:g" \
46 + -e "s:@LIBDIR@:$(get_libdir):g" \
47 + -e "s:@VERSION@:${PV}:g" \
48 + "${FILESDIR}"/${P}.pc.in > ${PN}.pc || die
49 }
50
51 src_configure() {
52 @@ -42,6 +46,9 @@
53 src_install() {
54 default
55
56 + insinto /usr/$(get_libdir)/pkgconfig
57 + doins ${PN}.pc
58 +
59 dodoc Readme.txt
60 dohtml -r docs/html/*
61 docinto samples
62
63
64
65 1.2 dev-db/wxsqlite3/ChangeLog
66
67 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/wxsqlite3/ChangeLog?rev=1.2&view=markup
68 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/wxsqlite3/ChangeLog?rev=1.2&content-type=text/plain
69 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/wxsqlite3/ChangeLog?r1=1.1&r2=1.2
70
71 Index: ChangeLog
72 ===================================================================
73 RCS file: /var/cvsroot/gentoo-x86/dev-db/wxsqlite3/ChangeLog,v
74 retrieving revision 1.1
75 retrieving revision 1.2
76 diff -u -r1.1 -r1.2
77 --- ChangeLog 28 Dec 2013 21:14:11 -0000 1.1
78 +++ ChangeLog 28 Dec 2013 21:25:23 -0000 1.2
79 @@ -1,6 +1,9 @@
80 # ChangeLog for dev-db/wxsqlite3
81 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
82 -# $Header: /var/cvsroot/gentoo-x86/dev-db/wxsqlite3/ChangeLog,v 1.1 2013/12/28 21:14:11 jlec Exp $
83 +# $Header: /var/cvsroot/gentoo-x86/dev-db/wxsqlite3/ChangeLog,v 1.2 2013/12/28 21:25:23 jlec Exp $
84 +
85 + 28 Dec 2013; Justin Lecher <jlec@g.o> wxsqlite3-3.0.6.1.ebuild:
86 + Fix pkgconfig file installation
87
88 *wxsqlite3-3.0.6.1 (28 Dec 2013)