Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-themes/oxygen-gtk: oxygen-gtk-1.2.2.ebuild oxygen-gtk-1.4.2.ebuild ChangeLog
Date: Tue, 21 Jan 2014 01:42:02
Message-Id: 20140121014156.E771E2004C@flycatcher.gentoo.org
1 mrueg 14/01/21 01:41:56
2
3 Modified: ChangeLog
4 Added: oxygen-gtk-1.2.2.ebuild oxygen-gtk-1.4.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.66 x11-themes/oxygen-gtk/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog?rev=1.66&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog?rev=1.66&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog?r1=1.65&r2=1.66
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog,v
20 retrieving revision 1.65
21 retrieving revision 1.66
22 diff -u -r1.65 -r1.66
23 --- ChangeLog 11 Dec 2013 11:24:12 -0000 1.65
24 +++ ChangeLog 21 Jan 2014 01:41:56 -0000 1.66
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-themes/oxygen-gtk
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog,v 1.65 2013/12/11 11:24:12 mrueg Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog,v 1.66 2014/01/21 01:41:56 mrueg Exp $
31 +
32 +*oxygen-gtk-1.4.2 (21 Jan 2014)
33 +*oxygen-gtk-1.2.2 (21 Jan 2014)
34 +
35 + 21 Jan 2014; Manuel RĂ¼ger <mrueg@g.o> +oxygen-gtk-1.2.2.ebuild,
36 + +oxygen-gtk-1.4.2.ebuild:
37 + Version bump.
38
39 *oxygen-gtk-1.4.1 (11 Dec 2013)
40 *oxygen-gtk-1.2.1 (11 Dec 2013)
41
42
43
44 1.3 x11-themes/oxygen-gtk/oxygen-gtk-1.2.2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.2.2.ebuild?rev=1.3&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.2.2.ebuild?rev=1.3&content-type=text/plain
48 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.2.2.ebuild?r1=1.2&r2=1.3
49
50
51
52
53 1.1 x11-themes/oxygen-gtk/oxygen-gtk-1.4.2.ebuild
54
55 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.4.2.ebuild?rev=1.1&view=markup
56 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.4.2.ebuild?rev=1.1&content-type=text/plain
57
58 Index: oxygen-gtk-1.4.2.ebuild
59 ===================================================================
60 # Copyright 1999-2014 Gentoo Foundation
61 # Distributed under the terms of the GNU General Public License v2
62 # $Header: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.4.2.ebuild,v 1.1 2014/01/21 01:41:56 mrueg Exp $
63
64 EAPI=5
65
66 MY_PN=${PN}2
67 MY_P=${MY_PN}-${PV}
68
69 inherit cmake-utils
70
71 DESCRIPTION="Official GTK+:2 port of KDE's Oxygen widget style"
72 HOMEPAGE="https://projects.kde.org/projects/playground/artwork/oxygen-gtk"
73 SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
74
75 LICENSE="LGPL-2.1"
76 KEYWORDS="~amd64 ~ppc ~x86"
77 SLOT="2"
78 IUSE="debug doc"
79
80 RDEPEND="
81 !x11-themes/oxygen-gtk:0
82 dev-libs/dbus-glib
83 dev-libs/glib:2
84 x11-libs/cairo
85 x11-libs/gdk-pixbuf
86 >=x11-libs/gtk+-2.24.2:2
87 x11-libs/libX11
88 x11-libs/pango
89 "
90 DEPEND="${RDEPEND}
91 virtual/pkgconfig
92 doc? ( app-doc/doxygen )
93 "
94
95 DOCS=( AUTHORS README TODO )
96
97 S=${WORKDIR}/${MY_P}
98
99 src_install() {
100 if use doc; then
101 { cd "${S}" && doxygen Doxyfile; } || die "Generating documentation failed"
102 HTML_DOCS=( "${S}/doc/html/" )
103 fi
104
105 cmake-utils_src_install
106
107 cat <<-EOF > 99oxygen-gtk2
108 CONFIG_PROTECT="${EPREFIX}/usr/share/themes/oxygen-gtk/gtk-2.0"
109 EOF
110 doenvd 99oxygen-gtk2
111 }