diff options
author | Johannes Huber <johu@gentoo.org> | 2012-05-15 05:59:49 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-05-15 05:59:49 +0000 |
commit | 5a512d47cfcf6cdbe3963d342a03f542d93da2be (patch) | |
tree | 440a87585140703b9d70da2f5dc5db3837f79257 /x11-themes/oxygen-gtk | |
parent | Version bump for gnome-3.4 with a new call UI. Now uses gnome-contacts to dis... (diff) | |
download | gentoo-2-5a512d47cfcf6cdbe3963d342a03f542d93da2be.tar.gz gentoo-2-5a512d47cfcf6cdbe3963d342a03f542d93da2be.tar.bz2 gentoo-2-5a512d47cfcf6cdbe3963d342a03f542d93da2be.zip |
Version bump in slot 3.
(Portage version: 2.2.0_alpha104/cvs/Linux x86_64)
Diffstat (limited to 'x11-themes/oxygen-gtk')
-rw-r--r-- | x11-themes/oxygen-gtk/ChangeLog | 4 | ||||
-rw-r--r-- | x11-themes/oxygen-gtk/oxygen-gtk-1.0.4.ebuild | 50 |
2 files changed, 52 insertions, 2 deletions
diff --git a/x11-themes/oxygen-gtk/ChangeLog b/x11-themes/oxygen-gtk/ChangeLog index cb6eb4816cac..e27987923870 100644 --- a/x11-themes/oxygen-gtk/ChangeLog +++ b/x11-themes/oxygen-gtk/ChangeLog @@ -1,11 +1,11 @@ # ChangeLog for x11-themes/oxygen-gtk # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog,v 1.35 2012/05/15 05:53:18 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/ChangeLog,v 1.36 2012/05/15 05:59:49 johu Exp $ *oxygen-gtk-1.2.4 (15 May 2012) 15 May 2012; Johannes Huber <johu@gentoo.org> +oxygen-gtk-1.2.4.ebuild: - Version bump in slot2. + Version bump in slot 2. 04 May 2012; Johannes Huber <johu@gentoo.org> oxygen-gtk-1.0.3.ebuild, oxygen-gtk-1.2.3.ebuild: diff --git a/x11-themes/oxygen-gtk/oxygen-gtk-1.0.4.ebuild b/x11-themes/oxygen-gtk/oxygen-gtk-1.0.4.ebuild new file mode 100644 index 000000000000..3aa729818fe2 --- /dev/null +++ b/x11-themes/oxygen-gtk/oxygen-gtk-1.0.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/oxygen-gtk/oxygen-gtk-1.0.4.ebuild,v 1.4 2012/05/15 05:59:49 johu Exp $ + +EAPI=4 + +MY_PN=${PN}3 +MY_P=${MY_PN}-${PV} + +inherit cmake-utils + +DESCRIPTION="Official GTK+:3 port of KDE's Oxygen widget style" +HOMEPAGE="https://projects.kde.org/projects/playground/artwork/oxygen-gtk" +SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/src/${MY_P}.tar.bz2" + +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~x86" +SLOT="3" +IUSE="debug doc" + +RDEPEND=" + !x11-themes/oxygen-gtk:0 + dev-libs/dbus-glib + dev-libs/glib + x11-libs/cairo + x11-libs/gtk+:3 + x11-libs/libX11 +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" + +DOCS=(AUTHORS README) + +S="${WORKDIR}/${MY_P}" + +src_install() { + if use doc; then + { cd "${S}" && doxygen Doxyfile; } || die "Generating documentation failed" + HTML_DOCS=( "${S}/doc/html/" ) + fi + + cmake-utils_src_install + + cat <<-EOF > 99oxygen-gtk3 +CONFIG_PROTECT="${EPREFIX}/usr/share/themes/oxygen-gtk/gtk-3.0" +EOF + doenvd 99oxygen-gtk3 +} |