]> Pileus Git - ~andy/sunrise/commitdiff
x11-misc/ bmpanel: Moved to tree by me
authorMarkos Chandras <hwoarang@gentoo.org>
Sun, 29 Aug 2010 08:11:03 +0000 (08:11 +0000)
committerMarkos Chandras <hwoarang@gentoo.org>
Sun, 29 Aug 2010 08:11:03 +0000 (08:11 +0000)
svn path=/sunrise/; revision=11254

x11-misc/bmpanel/ChangeLog [deleted file]
x11-misc/bmpanel/Manifest [deleted file]
x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild [deleted file]
x11-misc/bmpanel/files/Makefile.patch [deleted file]
x11-misc/bmpanel/metadata.xml [deleted file]

diff --git a/x11-misc/bmpanel/ChangeLog b/x11-misc/bmpanel/ChangeLog
deleted file mode 100644 (file)
index d1a6738..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-# ChangeLog for x11-misc/bmpanel
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-  16 Feb 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
-  bmpanel-0.9.27-r1.ebuild:
-  Add missing die, make DESCRIPTION a oneliner
-
-  15 Feb 2009; Christian Ruppert (idl0r) <spooky85@gmail.com>
-  -bmpanel-0.9.27.ebuild, +bmpanel-0.9.27-r1.ebuild, +files/Makefile.patch,
-  -files/Makefile-no-strip.patch:
-  revision bump, added as-needed fix (merged together with the no-strip
-  patch), added missing die statements, do not force one of the libev*
-  packages (event loop from glibc would be default)
-
-  27 Oct 2008; Mounir Lamouri (volkmar) <mounir.lamouri@gmail.com>
-  bmpanel-0.9.27.ebuild:
-  Add ~ppc keyword
-
-  20 Oct 2008; Christian Ruppert (idl0r) <spooky85@gmail.com>
-  bmpanel-0.9.27.ebuild:
-  Added dependency dev-util/pkgconfig.
-
-  20 Oct 2008; Christian Ruppert (idl0r) <spooky85@gmail.com>
-  +bmpanel-0.9.27.ebuild, +files/Makefile-no-strip.patch, +metadata.xml:
-  New Ebuild for bug 242830 thanks to Paul.
-
diff --git a/x11-misc/bmpanel/Manifest b/x11-misc/bmpanel/Manifest
deleted file mode 100644 (file)
index c73b965..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX Makefile.patch 393 RMD160 f096153259031381ce65d9b15cd55c3bbcf4263e SHA1 c2ae5efa7f3edb89e7b813cc6bb7c907eec4b6ac SHA256 f02cfbad60f03cd8e0e638c71276184767167191a620db393dbb79337489d523
-DIST bmpanel-0.9.27.tar.gz 30638 RMD160 97198480c6c9084cb2b32d05c3ca021811353134 SHA1 c048fbea3eb4f3f70f1086e23c338cdee2dec0b6 SHA256 a6976d024800b878117161174cc6ca57b21b2462666e75111cdd32eea8464557
-EBUILD bmpanel-0.9.27-r1.ebuild 1330 RMD160 69e1d6d4529c3df278d35df95a59828bd4e8b458 SHA1 1971810555c240e4af5aca89675d2fd517122bcd SHA256 14d6eb5a8cd96577ed1286b0cf60e7ee0173f91af724461032da07810370baed
-MISC ChangeLog 1039 RMD160 1f64f6f2978bc77eda66004a1af8298cfd95806d SHA1 23484fb39c5772ea47e2287d8f4a53d020bb4898 SHA256 d80035b3cd4444e4f945c9f87e1d01794c58c9e0a8afc7c0692105bba7f1b2ce
-MISC metadata.xml 378 RMD160 668201e2507554d79a25fa23915fa0480ba91771 SHA1 f4fa254fdc400864652e82463ab9e9dfa53f6e66 SHA256 db521649d36afc1bc2e37ad3b10ae8acb4690d2d40224fc0bb1a5b0a53ffa2fa
diff --git a/x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild b/x11-misc/bmpanel/bmpanel-0.9.27-r1.ebuild
deleted file mode 100644 (file)
index 0473d9e..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="1"
-
-inherit eutils
-
-DESCRIPTION="a lightweight, NETWM compliant panel for X11 Window System."
-HOMEPAGE="http://nsf.110mb.com/bmpanel"
-SRC_URI="http://nsf.110mb.com/${PN}/${P}.tar.gz"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc"
-IUSE="debug libev libevent"
-
-RDEPEND=">=media-libs/imlib2-1.4.0
-       media-libs/freetype:2
-       x11-libs/libX11
-       x11-libs/libXrender
-       x11-libs/libXcomposite
-       x11-libs/libXfixes
-       media-libs/fontconfig
-       libev? ( dev-libs/libev )
-       libevent? ( dev-libs/libevent )"
-DEPEND="${RDEPEND}
-       dev-util/pkgconfig"
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-
-       epatch "${FILESDIR}/Makefile.patch"
-}
-
-src_compile() {
-       # the provided configure script is broken.
-       # it doesn't provide --disable-foo, --host etc. so we can't use econf here.
-       local myconf="--prefix=/usr --ugly"
-
-       use debug && myconf="${myconf} --debug"
-       use libev && myconf="${myconf} --with-ev"
-       use libevent && myconf="${myconf} --with-event"
-
-       einfo "./configure ${myconf}"
-       ./configure ${myconf} || die "configure failed"
-       emake || die "emake failed"
-}
-
-src_install() {
-       emake install DESTDIR="${D}" || die "emake install failed"
-
-       # INSTALL contains some useful informations
-       dodoc AUTHORS INSTALL README || die "dodoc failed"
-}
diff --git a/x11-misc/bmpanel/files/Makefile.patch b/x11-misc/bmpanel/files/Makefile.patch
deleted file mode 100644 (file)
index d9cdc83..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/Makefile.old   2009-02-15 16:12:16.750885874 +0100
-+++ src/Makefile       2009-02-15 16:16:24.560106442 +0100
-@@ -12,10 +12,7 @@ ifneq ($(UGLY),1)
- endif
- $(APP): $(OBJS)
--      $(V_L)$(LD) $(LIBS) -o $@ $(OBJS)
--ifeq ($(DEBUG),0)
--      $(V_S)strip -s $(APP)
--endif
-+      $(V_L)$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
- $(BUILDDIR)/src/%.o: src/%.c .mk/config.mk
-       $(V_C)$(CC) -c -MMD $(CFLAGS) $< -o $@
diff --git a/x11-misc/bmpanel/metadata.xml b/x11-misc/bmpanel/metadata.xml
deleted file mode 100644 (file)
index 923c04d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-       <herd>no-herd</herd>
-       <maintainer><email>maintainer-wanted@gentoo.org</email></maintainer>
-       <use>
-               <flag name='libev'>Use the libev event loop interface</flag>
-               <flag name='libevent'>Use the libevent event loop interface</flag>
-       </use>
-</pkgmetadata>