diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-06 12:06:17 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-09-06 12:06:17 +0000 |
commit | 0f01554cf7edea4139308b17a125224ab4462a55 (patch) | |
tree | 3c54608c3825dd8a28f5b786934a374ea8bb5a2b /xfce-extra/xfce4-volumed | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-0f01554cf7edea4139308b17a125224ab4462a55.tar.gz gentoo-2-0f01554cf7edea4139308b17a125224ab4462a55.tar.bz2 gentoo-2-0f01554cf7edea4139308b17a125224ab4462a55.zip |
Initial commit.
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra/xfce4-volumed')
-rw-r--r-- | xfce-extra/xfce4-volumed/ChangeLog | 10 | ||||
-rw-r--r-- | xfce-extra/xfce4-volumed/metadata.xml | 5 | ||||
-rw-r--r-- | xfce-extra/xfce4-volumed/xfce4-volumed-0.1.4.ebuild | 30 |
3 files changed, 45 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-volumed/ChangeLog b/xfce-extra/xfce4-volumed/ChangeLog new file mode 100644 index 000000000000..3c45907e75de --- /dev/null +++ b/xfce-extra/xfce4-volumed/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for xfce-extra/xfce4-volumed +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-volumed/ChangeLog,v 1.1 2009/09/06 12:06:17 ssuominen Exp $ + +*xfce4-volumed-0.1.4 (06 Sep 2009) + + 06 Sep 2009; Samuli Suominen <ssuominen@gentoo.org> + +xfce4-volumed-0.1.4.ebuild: + Initial commit wrt #283808, thanks to Jeremy Olexa for reporting. + diff --git a/xfce-extra/xfce4-volumed/metadata.xml b/xfce-extra/xfce4-volumed/metadata.xml new file mode 100644 index 000000000000..d56729e92f8e --- /dev/null +++ b/xfce-extra/xfce4-volumed/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>xfce</herd> +</pkgmetadata> diff --git a/xfce-extra/xfce4-volumed/xfce4-volumed-0.1.4.ebuild b/xfce-extra/xfce4-volumed/xfce4-volumed-0.1.4.ebuild new file mode 100644 index 000000000000..84ae08b0d028 --- /dev/null +++ b/xfce-extra/xfce4-volumed/xfce4-volumed-0.1.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-volumed/xfce4-volumed-0.1.4.ebuild,v 1.1 2009/09/06 12:06:17 ssuominen Exp $ + +EAPI=2 +inherit xfconf + +DESCRIPTION="Daemon to control volume up/down and mute keys" +HOMEPAGE="https://launchpad.net/xfce4-volumed" +SRC_URI="mirror://xfce/src/apps/${PN}/0.1/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="debug libnotify" + +RDEPEND="xfce-base/xfconf + >=x11-libs/xcb-util-0.3.5 + media-libs/gstreamer:0.10 + media-libs/gst-plugins-base:0.10 + libnotify? ( x11-libs/libnotify )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +pkg_setup() { + XFCONF="--disable-dependency-tracking + $(use_enable debug) + $(use_with libnotify)" + DOCS="AUTHORS ChangeLog README THANKS" +} |