# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit eutils rpm linux-mod DESCRIPTION="AVM kernel 2.6 modules for Fritz!Card PCI" HOMEPAGE="http://opensuse.foehr-it.de/" SRC_URI="http://opensuse.foehr-it.de/testing/2.6.34/fcpci.tgz" LICENSE="AVM-FC" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="!net-dialup/fritzcapi" RDEPEND="${DEPEND} net-dialup/capi4k-utils" S="${WORKDIR}/fritz" 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() { local BIT="" PAT="01234" if use amd64; then BIT="64bit-" PAT="1234" fi unpack ${A} cd "${S}" convert_to_m src/Makefile for i in lib/*-lib.o; do einfo "Localize symbols in ${i##*/} ..." objcopy -L memcmp -L memcpy -L memmove -L memset -L strcat \ -L strcmp -L strcpy -L strlen -L strncmp -L strncpy "${i}" done } src_install() { linux-mod_src_install dodoc CAPI*.txt dohtml *.html }