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.1.ebuild
Date: Sun, 19 Jul 2009 02:56:10
Message-Id: E1MSMZM-0002p9-9g@stork.gentoo.org
1 dirtyepic 09/07/19 02:56:08
2
3 Modified: ChangeLog
4 Added: eselect-wxwidgets-1.1.ebuild
5 Log:
6 Direct error messages from the wrappers to stderr as suggested by
7 Martin von Gagern in bug #278037.
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.38 app-admin/eselect-wxwidgets/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 2 Jul 2009 19:45:47 -0000 1.37
24 +++ ChangeLog 19 Jul 2009 02:56:08 -0000 1.38
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.37 2009/07/02 19:45:47 grobian Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-wxwidgets/ChangeLog,v 1.38 2009/07/19 02:56:08 dirtyepic Exp $
30 +
31 +*eselect-wxwidgets-1.1 (19 Jul 2009)
32 +
33 + 19 Jul 2009; Ryan Hill <dirtyepic@g.o> +files/wx-config-1.1,
34 + +files/wxrc-1.1, +eselect-wxwidgets-1.1.ebuild:
35 + Direct error messages from the wrappers to stderr as suggested by
36 + Martin von Gagern in bug #278037.
37
38 02 Jul 2009; Fabian Groffen <grobian@g.o> files/wx-config-1,
39 files/wxrc-1:
40
41
42
43 1.1 app-admin/eselect-wxwidgets/eselect-wxwidgets-1.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-1.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-admin/eselect-wxwidgets/eselect-wxwidgets-1.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: eselect-wxwidgets-1.1.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.1.ebuild,v 1.1 2009/07/19 02:56:08 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.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 }