summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /x11-themes/gtk-engines-rezlooks
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'x11-themes/gtk-engines-rezlooks')
-rw-r--r--x11-themes/gtk-engines-rezlooks/Manifest1
-rw-r--r--x11-themes/gtk-engines-rezlooks/files/gtk-engines-rezlooks-0.6-glib-single-include.patch13
-rw-r--r--x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild41
-rw-r--r--x11-themes/gtk-engines-rezlooks/metadata.xml8
4 files changed, 63 insertions, 0 deletions
diff --git a/x11-themes/gtk-engines-rezlooks/Manifest b/x11-themes/gtk-engines-rezlooks/Manifest
new file mode 100644
index 000000000000..fecb881c6b2b
--- /dev/null
+++ b/x11-themes/gtk-engines-rezlooks/Manifest
@@ -0,0 +1 @@
+DIST 39179-rezlooks-0.6.tar.gz 290016 SHA256 a7dbc45ba32b8f1f40a097d7bafbdff595464c4af16a5bbb9febf63d15cab699 SHA512 98b1eda414c5a33f1357d408aa4bd4b01c140afed0981941004db81d34f8f76c0bd49434009b776eb8f9adb24bfce9f22b72fb463200401409caba8effd3f0bd WHIRLPOOL 417460710f1968c98ed48ebc0ee1745fe5fbac0eeeeb5e90027a73e0848cef6383264ca9f64d4ea819ab322e3d900e4bae443bf4ea3d99de3e2104e947db8ada
diff --git a/x11-themes/gtk-engines-rezlooks/files/gtk-engines-rezlooks-0.6-glib-single-include.patch b/x11-themes/gtk-engines-rezlooks/files/gtk-engines-rezlooks-0.6-glib-single-include.patch
new file mode 100644
index 000000000000..340bd046fb0e
--- /dev/null
+++ b/x11-themes/gtk-engines-rezlooks/files/gtk-engines-rezlooks-0.6-glib-single-include.patch
@@ -0,0 +1,13 @@
+Index: rezlooks-0.6/src/animation.c
+===================================================================
+--- rezlooks-0.6.orig/src/animation.c
++++ rezlooks-0.6/src/animation.c
+@@ -7,7 +7,7 @@
+ #include "animation.h"
+
+ #ifdef HAVE_ANIMATION
+-#include <glib/gtimer.h>
++#include <glib.h>
+
+ struct _AnimationInfo {
+ GTimer *timer;
diff --git a/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild b/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild
new file mode 100644
index 000000000000..706d13d1bf24
--- /dev/null
+++ b/x11-themes/gtk-engines-rezlooks/gtk-engines-rezlooks-0.6.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+inherit autotools eutils
+
+DESCRIPTION="Rezlooks GTK+ Engine"
+HOMEPAGE="http://www.gnome-look.org/content/show.php?content=39179"
+SRC_URI="http://www.gnome-look.org/content/files/39179-rezlooks-${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND=">=x11-libs/gtk+-2.8:2"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+S=${WORKDIR}/rezlooks-${PV}
+
+src_prepare() {
+ # automake complains: ChangeLog missing. There however is a Changelog.
+ # to avoid problems with case insensitive fs, move somewhere else first.
+ mv Changelog{,.1}
+ mv Changelog.1 ChangeLog
+
+ epatch "${FILESDIR}/${PN}-0.6-glib-single-include.patch"
+
+ eautoreconf # required for interix
+}
+
+src_configure() {
+ econf --disable-dependency-tracking --enable-animation
+}
+
+src_install() {
+ default
+ find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed"
+}
diff --git a/x11-themes/gtk-engines-rezlooks/metadata.xml b/x11-themes/gtk-engines-rezlooks/metadata.xml
new file mode 100644
index 000000000000..597ca1b5e615
--- /dev/null
+++ b/x11-themes/gtk-engines-rezlooks/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>desktop-misc</herd>
+ <longdescription lang="en">
+ Rezlooks GTK+ Engine, a modified version of the Clearlooks engine.
+ </longdescription>
+</pkgmetadata>