summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-12-19 17:31:08 +0000
committerTim Harder <radhermit@gentoo.org>2011-12-19 17:31:08 +0000
commite656eca4f6209682c9f0157c0d1c05bc3d9a8ed9 (patch)
treee53aa5b45c4974a6e18d84062010b218c999ac7c /x11-misc/suxpanel
parentnew snapshot (diff)
downloadgentoo-2-e656eca4f6209682c9f0157c0d1c05bc3d9a8ed9.tar.gz
gentoo-2-e656eca4f6209682c9f0157c0d1c05bc3d9a8ed9.tar.bz2
gentoo-2-e656eca4f6209682c9f0157c0d1c05bc3d9a8ed9.zip
Remove old.
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/suxpanel')
-rw-r--r--x11-misc/suxpanel/ChangeLog6
-rw-r--r--x11-misc/suxpanel/files/suxpanel-0.4b-Makefile.in.patch22
-rw-r--r--x11-misc/suxpanel/suxpanel-0.4b-r1.ebuild38
3 files changed, 5 insertions, 61 deletions
diff --git a/x11-misc/suxpanel/ChangeLog b/x11-misc/suxpanel/ChangeLog
index af1825defe49..57fa72af872b 100644
--- a/x11-misc/suxpanel/ChangeLog
+++ b/x11-misc/suxpanel/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/suxpanel
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/ChangeLog,v 1.15 2011/12/18 20:20:12 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/ChangeLog,v 1.16 2011/12/19 17:31:07 radhermit Exp $
+
+ 19 Dec 2011; Tim Harder <radhermit@gentoo.org> -suxpanel-0.4b-r1.ebuild,
+ -files/suxpanel-0.4b-Makefile.in.patch:
+ Remove old.
18 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> suxpanel-0.4b-r3.ebuild:
x86 stable wrt bug #393821
diff --git a/x11-misc/suxpanel/files/suxpanel-0.4b-Makefile.in.patch b/x11-misc/suxpanel/files/suxpanel-0.4b-Makefile.in.patch
deleted file mode 100644
index ee42f50541e1..000000000000
--- a/x11-misc/suxpanel/files/suxpanel-0.4b-Makefile.in.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -ur suxpanel-0.4b.orig/Makefile.in suxpanel-0.4b/Makefile.in
---- suxpanel-0.4b.orig/Makefile.in 2005-07-21 19:06:25.000000000 +0300
-+++ suxpanel-0.4b/Makefile.in 2008-02-18 22:21:37.000000000 +0200
-@@ -1,7 +1,7 @@
- # ----------------------------------------------------------------------------
-
--CC = gcc
--CFLAGS = -Wall $(GTK_CFLAGS) -O2 -g
-+CC ?= gcc
-+CFLAGS += -Wall $(GTK_CFLAGS)
-
- # ----------------------------------------------------------------------------
-
-@@ -15,7 +15,7 @@
-
- %.so: %.c
- @echo "compile module: $< ($@)"
-- $(CC) $(CFLAGS) -o $@ -shared $< $(GTK_CFLAGS) $(GTK_LIBS) \
-+ $(CC) $(CFLAGS) -o $@ -shared -fPIC $< $(GTK_CFLAGS) $(GTK_LIBS) \
- $(WNCK_LIBS) $(WNCK_CFLAGS)
-
- clean:
diff --git a/x11-misc/suxpanel/suxpanel-0.4b-r1.ebuild b/x11-misc/suxpanel/suxpanel-0.4b-r1.ebuild
deleted file mode 100644
index c7780699a3c8..000000000000
--- a/x11-misc/suxpanel/suxpanel-0.4b-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/suxpanel-0.4b-r1.ebuild,v 1.5 2011/03/21 22:38:10 nirbheek Exp $
-
-EAPI=2
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="SuxPanel is a complete rewrite of MacOS Style Panel, a light-weight X11 desktop panel"
-HOMEPAGE="http://suxpanel.berlios.de"
-SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE=""
-
-RDEPEND="x11-libs/gtk+:2
- x11-libs/libwnck:1"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-Makefile.in.patch
- epatch "${FILESDIR}"/${P}-stdlib.patch
-}
-
-src_compile() {
- use amd64 && append-flags -O0
- tc-export CC
- econf
- emake || die "emake failed."
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed."
- dobin suxpanel-install.sh
- dodoc README
-}