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: ChangeLog eselect-wxwidgets-1.0.ebuild
Date: Wed, 01 Jul 2009 07:16:27
Message-Id: E1MLu3N-0006Pe-Ds@stork.gentoo.org
1 dirtyepic 09/07/01 07:16:25
2
3 Modified: ChangeLog
4 Added: eselect-wxwidgets-1.0.ebuild
5 Log:
6 Version bump. Debashify wx-config and wxrc wrappers for compatibility with
7 cmake (bug #274675).
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.36 app-admin/eselect-wxwidgets/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 22 Jan 2009 12:49:52 -0000 1.35
24 +++ ChangeLog 1 Jul 2009 07:16:25 -0000 1.36
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-admin/eselect-wxwidgets
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v 1.35 2009/01/22 12:49:52 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v 1.36 2009/07/01 07:16:25 dirtyepic Exp $
30 +
31 +*eselect-wxwidgets-1.0 (01 Jul 2009)
32 +
33 + 01 Jul 2009; Ryan Hill <dirtyepic@g.o> +files/wx-config-1,
34 + +files/wxrc-1, +eselect-wxwidgets-1.0.ebuild:
35 + Version bump. Debashify wx-config and wxrc wrappers for compatibility with
36 + cmake (bug #274675).
37
38 22 Jan 2009; Raúl Porcel <armin76@g.o>
39 eselect-wxwidgets-0.8.ebuild:
40
41
42
43 1.1 app-admin/eselect-wxwidgets/eselect-wxwidgets-1.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-1.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-1.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: eselect-wxwidgets-1.0.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-1.0.ebuild,v 1.1 2009/07/01 07:16:25 dirtyepic Exp $
53
54 DESCRIPTION="Eselect module and wrappers for wxWidgets"
55 HOMEPAGE="http://www.gentoo.org"
56 SRC_URI=""
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE=""
62
63 DEPEND="!<=x11-libs/wxGTK-2.6.4.0-r2"
64 RDEPEND="app-admin/eselect"
65
66 WXWRAP_VER=1
67
68 src_install() {
69 insinto /usr/share/eselect/modules
70 newins "${FILESDIR}"/wxwidgets.eselect-0.8 wxwidgets.eselect \
71 || die "Failed installing module"
72
73 insinto /usr/share/aclocal
74 doins "${FILESDIR}"/wxwin.m4
75
76 newbin "${FILESDIR}"/wx-config-${WXWRAP_VER} wx-config
77 newbin "${FILESDIR}"/wxrc-${WXWRAP_VER} wxrc
78
79 keepdir /var/lib/wxwidgets
80 keepdir /usr/share/bakefile/presets
81 }
82
83 pkg_postinst() {
84 if [[ ! -e ${ROOT}/var/lib/wxwidgets/current ]]; then
85 echo 'WXCONFIG="none"' > "${ROOT}"/var/lib/wxwidgets/current
86 fi
87
88 echo
89 elog "By default the system wxWidgets profile is set to \"none\"."
90 elog
91 elog "It is unnecessary to change this unless you are doing development work"
92 elog "with wxGTK outside of portage. The package manager ignores the profile"
93 elog "setting altogether."
94 echo
95 }