blob: 5ae999bb21e9222c5405b4f2e725c8e7ccca0d2d (
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
40
41
42
43
44
45
46
47
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/s390-oco/s390-oco-2.4.21.ebuild,v 1.2 2004/06/24 22:24:35 agriffis Exp $
DESCRIPTION="Object-code only (OCO) modules for s390"
SRC_URI="s390x?( tape3590-2.4.21-s390x-01-june2003.tar.gz ) :( tape3590-2.4.21-s390-01-june2003.tar.gz )"
HOMEPAGE="http://oss.software.ibm.com/developerworks/opensource/linux390/june2003_recommended.shtml"
LICENSE="IBM-ILNWP"
KEYWORDS="~s390"
SLOT="${KV}"
DEPEND="=sys-kernel/vanilla-sources-2.4.21"
RESTRICT="fetch"
pkg_nofetch() {
einfo "Please download ${SRC_URI} from"
einfo ""
einfo " o ${HOMEPAGE}"
einfo ""
einfo "and put it into ${DISTDIR}"
}
src_unpack() {
unpack ${A}
check_KV || die "Cannot find kernel in /usr/src/linux"
}
src_compile() {
cd ${WORKDIR}
mv tape3590-2.4.21-s390*-01-june2003.o tape_3590.o
}
src_install() {
dodir /etc/modules.d
insinto /etc/modules.d
doins ${FILESDIR}/s390-oco
cd ${WORKDIR}
dodir /lib/modules/${KV}/OCO
insinto /lib/modules/${KV}/OCO
doins tape_3590.o
dodoc README LICENSE
}
|