mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-28 17:32:32 +01:00
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-itouch/xmms-itouch-0.1.2.ebuild,v 1.7 2004/07/14 20:43:14 agriffis Exp $
|
|
|
|
IUSE="nls"
|
|
|
|
DESCRIPTION="XMMS plugin for multimedia keys on Logitech keyboards and others alike"
|
|
HOMEPAGE="http://www.saunalahti.fi/~syrjala/xmms-itouch/"
|
|
SRC_URI="http://www.saunalahti.fi/~syrjala/xmms-itouch/${P}.tar.gz"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="x86"
|
|
|
|
DEPEND="media-sound/xmms"
|
|
|
|
src_install () {
|
|
make DESTDIR=${D} install || die
|
|
}
|
|
|
|
|
|
src_compile() {
|
|
local myconf
|
|
|
|
use nls || myconf="${myconf} --disable-nls"
|
|
|
|
econf ${myconf} || die "econf failed"
|
|
emake || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "To configure the multimedia keys, run \"xev\" and"
|
|
einfo "press desired keys to get the corresponding keycode."
|
|
einfo "Insert this into the xmms plugin config screen."
|
|
einfo "Multimedia key codes can also be found at"
|
|
einfo "\"http://www.saunalahti.fi/~syrjala/xmms-itouch/\""
|
|
einfo "for some keyboard models - but for complete freedom of choice "
|
|
einfo "xev is your friend :-)"
|
|
}
|