blob: 4a9031920eaea37a617f4eda421db25f066a9dac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/usbmidi/usbmidi-1.0.ebuild,v 1.3 2003/07/12 20:31:00 aliz Exp $
DESCRIPTION="Sets up hotplugging support for MidiMan midisport 1x1/2x2 usb devices"
HOMEPAGE="http:///"
SRC_URI="http://member.nifty.ne.jp/Breeze/softwares/unix/bin/usbmidi-20030126.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
RDEPEND="sys-apps/hotplug
sys-apps/ezusb2131
sys-apps/fxload"
S="${WORKDIR}/usbmidi-20030126"
src_install() {
insinto /usr/share/usb/ezusbmidi
doins ${S}/testing/MidiSport/ezusbmidi*.ihx
insinto /etc/hotplug/usb
doins ${FILESDIR}/ezusbmidi.usermap
exeinto /etc/hotplug/usb
doexe ${FILESDIR}/ezusbmidi
}
pkg_postinst() {
einfo ""
einfo "Now the firmware is installed and hotplug has been setup."
einfo "Please unplug the midisport, then plug it back in."
einfo "The light should start to glow, if that happens its worked."
einfo "The midisport ports will appear as 'normal' midi ports under /dev"
einfo ""
}
|