Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 72485
Collapse All | Expand All

(-)usbmidi-1.0.ebuild (-3 / +12 lines)
Lines 1-8 Link Here
1
# Copyright 1999-2007 Gentoo Foundation
1
# Copyright 1999-2007 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/media-sound/usbmidi/usbmidi-1.0.ebuild,v 1.8 2007/01/05 20:18:30 flameeyes Exp $
3
# $Header: $
4
4
5
DESCRIPTION="Sets up hotplugging support for MidiMan midisport 1x1/2x2 usb devices"
5
inherit linux-info
6
7
DESCRIPTION="hotplugging support for MidiMan midisport 1x1/2x2 usb devices on 2.4 kernels"
6
HOMEPAGE="http://homepage3.nifty.com/StudioBreeze/software/usbmidi-e.html"
8
HOMEPAGE="http://homepage3.nifty.com/StudioBreeze/software/usbmidi-e.html"
7
SRC_URI="http://homepage3.nifty.com/StudioBreeze/software/bin/usbmidi-20030126.tar.gz"
9
SRC_URI="http://homepage3.nifty.com/StudioBreeze/software/bin/usbmidi-20030126.tar.gz"
8
10
Lines 17-22 Link Here
17
	sys-apps/fxload"
19
	sys-apps/fxload"
18
20
19
S="${WORKDIR}/usbmidi-20030126"
21
S="${WORKDIR}/usbmidi-20030126"
22
23
pkg_setup() {
24
	if ! kernel_is 2 4 ; then
25
		eerror "This ebuild is only for 2.4.x kernels."
26
		die "Use in-kernel USB MIDI support instead."
27
	fi
28
}	    
29
20
src_install() {
30
src_install() {
21
	insinto /usr/share/usb/ezusbmidi
31
	insinto /usr/share/usb/ezusbmidi
22
	doins ${S}/testing/MidiSport/ezusbmidi*.ihx
32
	doins ${S}/testing/MidiSport/ezusbmidi*.ihx
Lines 36-39 Link Here
36
	elog "The midisport ports will appear as 'normal' midi ports under /dev"
46
	elog "The midisport ports will appear as 'normal' midi ports under /dev"
37
	elog
47
	elog
38
}
48
}
39

Return to bug 72485