Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/eselect-wxwidgets: eselect-wxwidgets-20131230.ebuild ChangeLog
Date: Mon, 30 Dec 2013 08:21:08
Message-Id: 20131230082104.87D052004C@flycatcher.gentoo.org
1 dirtyepic 13/12/30 08:21:04
2
3 Modified: ChangeLog
4 Added: eselect-wxwidgets-20131230.ebuild
5 Log:
6 Version bump. Fixes bug #448074 (do not set profile to "none" if there are
7 others available). Remove 2.6 suppport, add 3.0 support.
8
9 Signed-off-by: Ryan Hill <dirtyepic@g.o>
10 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 957A8463)
11
12 Revision Changes Path
13 1.59 app-admin/eselect-wxwidgets/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?rev=1.59&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?rev=1.59&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?r1=1.58&r2=1.59
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v
22 retrieving revision 1.58
23 retrieving revision 1.59
24 diff -u -r1.58 -r1.59
25 --- ChangeLog 29 May 2012 14:26:28 -0000 1.58
26 +++ ChangeLog 30 Dec 2013 08:21:04 -0000 1.59
27 @@ -1,6 +1,13 @@
28 # ChangeLog for app-admin/eselect-wxwidgets
29 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v 1.58 2012/05/29 14:26:28 aballier Exp $
31 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v 1.59 2013/12/30 08:21:04 dirtyepic Exp $
33 +
34 +*eselect-wxwidgets-20131230 (30 Dec 2013)
35 +
36 + 30 Dec 2013; Ryan Hill <dirtyepic@g.o>
37 + +eselect-wxwidgets-20131230.ebuild, +files/wxwin.m4-3.0:
38 + Version bump. Fixes bug #448074 (do not set profile to "none" if there are
39 + others available). Remove 2.6 suppport, add 3.0 support.
40
41 29 May 2012; Alexis Ballier <aballier@g.o>
42 eselect-wxwidgets-1.4.ebuild:
43
44
45
46 1.1 app-admin/eselect-wxwidgets/eselect-wxwidgets-20131230.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-20131230.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-20131230.ebuild?rev=1.1&content-type=text/plain
50
51 Index: eselect-wxwidgets-20131230.ebuild
52 ===================================================================
53 # Copyright 1999-2013 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-20131230.ebuild,v 1.1 2013/12/30 08:21:04 dirtyepic Exp $
56
57 EAPI="5"
58
59 WXWRAP_VER=1.3
60
61 DESCRIPTION="Eselect module and wrappers for wxWidgets"
62 HOMEPAGE="http://www.gentoo.org"
63 SRC_URI="http://dev.gentoo.org/~dirtyepic/dist/wxwidgets.eselect-${PV}.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
68 IUSE=""
69
70 RDEPEND="app-admin/eselect"
71 S="${WORKDIR}"
72
73 src_install() {
74 insinto /usr/share/eselect/modules
75 newins "${S}"/wxwidgets.eselect-${PV} wxwidgets.eselect
76
77 insinto /usr/share/aclocal
78 newins "${FILESDIR}"/wxwin.m4-3.0 wxwin.m4
79
80 newbin "${FILESDIR}"/wx-config-${WXWRAP_VER} wx-config
81 newbin "${FILESDIR}"/wxrc-${WXWRAP_VER} wxrc
82
83 keepdir /var/lib/wxwidgets
84 keepdir /usr/share/bakefile/presets
85 }
86
87 pkg_postinst() {
88 if [[ ! -e ${ROOT}/var/lib/wxwidgets/current ]]; then
89 echo 'WXCONFIG="none"' > "${ROOT}"/var/lib/wxwidgets/current
90 fi
91
92 echo
93 elog "This eselect module only controls the version of wxGTK used when"
94 elog "building packages outside of portage. If you are not doing development"
95 elog "with wxWidgets or bakefile you will never need to use it."
96 echo
97 }