diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2008-01-06 01:33:30 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2008-01-06 01:33:30 +0000 |
commit | 24de9f87ca14b5bc4b3f7c422d773646b4f78231 (patch) | |
tree | 8bca052900763c0bdb37660ebd9b892ca09d677c /net-dialup/e5520pc/e5520pc-0.1.ebuild | |
parent | Added patch to fix compilation on ppc, bug #200866. (diff) | |
download | historical-24de9f87ca14b5bc4b3f7c422d773646b4f78231.tar.gz historical-24de9f87ca14b5bc4b3f7c422d773646b4f78231.tar.bz2 historical-24de9f87ca14b5bc4b3f7c422d773646b4f78231.zip |
using special openSUSE repository for AVM drivers from now on.
Package-Manager: portage-2.1.4_rc14
Diffstat (limited to 'net-dialup/e5520pc/e5520pc-0.1.ebuild')
-rw-r--r-- | net-dialup/e5520pc/e5520pc-0.1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-dialup/e5520pc/e5520pc-0.1.ebuild b/net-dialup/e5520pc/e5520pc-0.1.ebuild new file mode 100644 index 000000000000..65532ebdaafc --- /dev/null +++ b/net-dialup/e5520pc/e5520pc-0.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/e5520pc/e5520pc-0.1.ebuild,v 1.1 2008/01/06 01:27:58 sbriesen Exp $ + +inherit eutils rpm linux-mod + +DESCRIPTION="AVM kernel 2.6 modules for Eumex 5520 PC" +HOMEPAGE="http://opensuse.foehr-it.de/" +SRC_URI="http://opensuse.foehr-it.de/rpms/10_3/src/${P}-0.src.rpm" + +LICENSE="AVM-FC" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="!net-dialup/fritzcapi" +RDEPEND="${DEPEND} net-dialup/capi4k-utils" + +S="${WORKDIR}/${PN}" + +pkg_setup() { + linux-mod_pkg_setup + + if ! kernel_is 2 6; then + die "This package works only with 2.6 kernel!" + fi + + BUILD_TARGETS="all" + BUILD_PARAMS="KDIR=${KV_DIR} LIBDIR=${S}/src" + MODULE_NAMES="${PN}(net:${S}/src)" +} + +src_unpack() { + rpm_unpack "${DISTDIR}/${A}" || die "failed to unpack ${A} file" + DISTDIR="${WORKDIR}" unpack eumex*.tar.bz2 + + cd "${S}" + epatch $(sed -n "s|^Patch[01234]:\s*\(.*\)|../\1|p" ../${PN}.spec) + convert_to_m "src/Makefile" +} + +src_install() { + linux-mod_src_install + dodoc CAPI*.txt + dohtml *.html +} |