blob: 3f6a11b48916f29c4cb4d330acb046f10e2c10e1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/ezusb2131/ezusb2131-1.0.ebuild,v 1.3 2004/06/24 22:05:27 agriffis Exp $
MY_P=${PN/e/E}-${PV}
DESCRIPTION="This is a firmware uploader for EZ-USB devices"
HOMEPAGE="http://ezusb2131.sourceforge.net/"
SRC_URI="mirror://sourceforge/ezusb2131/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
DEPEND=""
RDEPEND="sys-apps/hotplug"
S=${WORKDIR}/Ezusb2131
src_compile() {
einfo "${S}"
make all || die
}
src_install() {
cp Makefile Makefile~
sed -e 's/INSTALLDIR = \/lib\/modules/INSTALLDIR = ${D}\/lib\/modules/' \
-e 's/depmod -a/#depmod -a/' Makefile~ > Makefile
make install || die
dodoc ${S}/README ${S}/COPYING ${S}/AUTHORS
}
pkg_postinst() {
einfo "Updating modules dependancies"
depmod -a
}
|