summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarol Wojtaszek <sekretarz@gentoo.org>2005-03-22 18:04:18 +0000
committerKarol Wojtaszek <sekretarz@gentoo.org>2005-03-22 18:04:18 +0000
commitd608cbd3d3bd226334866bdf15d3622b40471892 (patch)
treeeb3c102466e8fed8938c82814434df0faaa4f84e /x11-plugins
parentKeyworded ~sparc wrt #83684 (diff)
downloadgentoo-2-d608cbd3d3bd226334866bdf15d3622b40471892.tar.gz
gentoo-2-d608cbd3d3bd226334866bdf15d3622b40471892.tar.bz2
gentoo-2-d608cbd3d3bd226334866bdf15d3622b40471892.zip
Version bump, bug #51473
(Portage version: 2.0.51.19)
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/gkrellm-volume/ChangeLog10
-rw-r--r--x11-plugins/gkrellm-volume/files/digest-gkrellm-volume-2.1.131
-rw-r--r--x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild32
3 files changed, 41 insertions, 2 deletions
diff --git a/x11-plugins/gkrellm-volume/ChangeLog b/x11-plugins/gkrellm-volume/ChangeLog
index e06d2f9f3a21..335086a962a5 100644
--- a/x11-plugins/gkrellm-volume/ChangeLog
+++ b/x11-plugins/gkrellm-volume/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-plugins/gkrellm-volume
-# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog,v 1.20 2004/12/28 22:16:23 ciaranm Exp $
+# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/ChangeLog,v 1.21 2005/03/22 18:04:18 sekretarz Exp $
+
+*gkrellm-volume-2.1.13 (22 Mar 2005)
+
+ 22 Mar 2005; Karol Wojtaszek <sekretarz@gentoo.org>
+ +gkrellm-volume-2.1.13.ebuild:
+ Version bumped, bug #51473
28 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
Change encoding to UTF-8 for GLEP 31 compliance
diff --git a/x11-plugins/gkrellm-volume/files/digest-gkrellm-volume-2.1.13 b/x11-plugins/gkrellm-volume/files/digest-gkrellm-volume-2.1.13
new file mode 100644
index 000000000000..6390102344e0
--- /dev/null
+++ b/x11-plugins/gkrellm-volume/files/digest-gkrellm-volume-2.1.13
@@ -0,0 +1 @@
+MD5 d9f4c36d7fdf9c9f755c99f742b573c4 gkrellm-volume-2.1.13.tar.gz 42087
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild
new file mode 100644
index 000000000000..757af49abe21
--- /dev/null
+++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild,v 1.1 2005/03/22 18:04:18 sekretarz Exp $
+
+IUSE="alsa"
+DESCRIPTION="A mixer control plugin for gkrellm"
+HOMEPAGE="http://gkrellm.luon.net/volume.phtml"
+SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="2"
+KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64"
+
+DEPEND="=app-admin/gkrellm-2*
+ alsa? ( media-libs/alsa-lib )"
+
+S=${WORKDIR}/${PN}
+
+src_compile() {
+ if use alsa
+ then
+ make enable_alsa=1 || die "make failed"
+ else
+ make || die "make failed"
+ fi
+}
+
+src_install() {
+ insinto /usr/lib/gkrellm2/plugins
+ doins volume.so
+ dodoc README Changelog
+}