diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2010-12-19 12:37:18 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2010-12-19 12:37:18 +0000 |
commit | 2343458012f58416e866de9ac6083cd74cdfd3aa (patch) | |
tree | bf4b76dcaa4f14543d0989cc0a2bb56ab3da4c21 /net-dialup/fcpci/fcpci-0.1-r1.ebuild | |
parent | ppc64 stable wrt #344827 (diff) | |
download | historical-2343458012f58416e866de9ac6083cd74cdfd3aa.tar.gz historical-2343458012f58416e866de9ac6083cd74cdfd3aa.tar.bz2 historical-2343458012f58416e866de9ac6083cd74cdfd3aa.zip |
removed old versions
Package-Manager: portage-2.2.0_alpha8/cvs/Linux x86_64
Diffstat (limited to 'net-dialup/fcpci/fcpci-0.1-r1.ebuild')
-rw-r--r-- | net-dialup/fcpci/fcpci-0.1-r1.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/net-dialup/fcpci/fcpci-0.1-r1.ebuild b/net-dialup/fcpci/fcpci-0.1-r1.ebuild deleted file mode 100644 index 94f77deb5373..000000000000 --- a/net-dialup/fcpci/fcpci-0.1-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/fcpci/fcpci-0.1-r1.ebuild,v 1.1 2008/01/30 01:36:37 sbriesen Exp $ - -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/rpms/10_3/src/${P}-0.src.rpm" - -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 - - rpm_unpack "${DISTDIR}/${A}" || die "failed to unpack ${A} file" - DISTDIR="${WORKDIR}" unpack ${PN}-suse[0-9][0-9]-${BIT}[0-9].[0-9]*-[0-9]*.tar.gz - - cd "${S}" - epatch $(sed -n "s|^Patch[${PAT}]:\s*\(.*\)|../\1|p" ../${PN}.spec) - 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 -} |