diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-09-01 00:00:32 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-09-01 00:00:32 +0200 |
commit | ca9627e70852f6b2e835660df870fe3ab405882d (patch) | |
tree | 0a008b1d5b16fa0679a195ed7b5662c7891f591c /x11-plugins/wmvolman/wmvolman-2.0.1-r1.ebuild | |
download | darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.gz darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.bz2 darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.xz darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.zip |
Initial import
Diffstat (limited to 'x11-plugins/wmvolman/wmvolman-2.0.1-r1.ebuild')
-rw-r--r-- | x11-plugins/wmvolman/wmvolman-2.0.1-r1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-plugins/wmvolman/wmvolman-2.0.1-r1.ebuild b/x11-plugins/wmvolman/wmvolman-2.0.1-r1.ebuild new file mode 100644 index 0000000..7a78a59 --- /dev/null +++ b/x11-plugins/wmvolman/wmvolman-2.0.1-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmauda/wmauda-0.3.ebuild,v 1.1 2006/10/31 05:03:51 vericgar Exp $ + +EAPI=5 +inherit eutils autotools + +DESCRIPTION="Dockable applet for WindowMaker that handles hotpluggable devices and removable media." +SRC_URI="https://github.com/raorn/${PN}/archive/${PV}.tar.gz" +HOMEPAGE="http://people.altlinux.ru/~raorn/wmvolman.html" + +DEPEND="sys-fs/udisks:2 + >=x11-libs/libdockapp-0.6.0 + >=dev-libs/glib-2.31.13" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 amd64" + +src_unpack() { + unpack ${A} + cd ${S} +} + +src_prepare() { + epatch "${FILESDIR}"/wmvolman-2.0.1-ds-include.diff || die "patch failed" +} + +src_compile() { + eautoreconf || die + econf --prefix="/usr" + emake || die +} + +src_install () { + make DESTDIR="${D}" PREFIX="/usr" install || die "make install failed" + dodoc README AUTHORS NEWS +} |