diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2008-01-30 01:38:06 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2008-01-30 01:38:06 +0000 |
commit | 7ce9f678da93c4f30e61a55279aa00af4df0dece (patch) | |
tree | 5454f0237324154fe555a48c663a86b5343d956c /net-dialup/fcpcmcia | |
parent | Marking gnustep ppc for bug 207381 (diff) | |
download | gentoo-2-7ce9f678da93c4f30e61a55279aa00af4df0dece.tar.gz gentoo-2-7ce9f678da93c4f30e61a55279aa00af4df0dece.tar.bz2 gentoo-2-7ce9f678da93c4f30e61a55279aa00af4df0dece.zip |
fixing string.h problem (see bug #202385).
(Portage version: 2.1.4)
Diffstat (limited to 'net-dialup/fcpcmcia')
-rw-r--r-- | net-dialup/fcpcmcia/ChangeLog | 8 | ||||
-rw-r--r-- | net-dialup/fcpcmcia/fcpcmcia-0.1-r1.ebuild | 57 | ||||
-rw-r--r-- | net-dialup/fcpcmcia/files/digest-fcpcmcia-0.1-r1 | 3 |
3 files changed, 67 insertions, 1 deletions
diff --git a/net-dialup/fcpcmcia/ChangeLog b/net-dialup/fcpcmcia/ChangeLog index e8c877dc027b..c9c1ed297148 100644 --- a/net-dialup/fcpcmcia/ChangeLog +++ b/net-dialup/fcpcmcia/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-dialup/fcpcmcia # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/fcpcmcia/ChangeLog,v 1.1 2008/01/06 01:57:50 sbriesen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/fcpcmcia/ChangeLog,v 1.2 2008/01/30 01:38:05 sbriesen Exp $ + +*fcpcmcia-0.1-r1 (30 Jan 2008) + + 30 Jan 2008; Stefan Briesenick <sbriesen@gentoo.org> + +fcpcmcia-0.1-r1.ebuild: + fixing string.h problem (see bug #202385). *fcpcmcia-0.1 (06 Jan 2008) diff --git a/net-dialup/fcpcmcia/fcpcmcia-0.1-r1.ebuild b/net-dialup/fcpcmcia/fcpcmcia-0.1-r1.ebuild new file mode 100644 index 000000000000..cb72dc898d62 --- /dev/null +++ b/net-dialup/fcpcmcia/fcpcmcia-0.1-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/fcpcmcia/fcpcmcia-0.1-r1.ebuild,v 1.1 2008/01/30 01:38:05 sbriesen Exp $ + +inherit eutils rpm linux-mod + +DESCRIPTION="AVM kernel 2.6 modules for Fritz!Card PCMCIA" +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) ${PN}_cs(net:${S}/src)" +} + +src_unpack() { + local BIT="" PAT="012345" + if use amd64; then + BIT="64bit-" PAT="12345" + 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 +} diff --git a/net-dialup/fcpcmcia/files/digest-fcpcmcia-0.1-r1 b/net-dialup/fcpcmcia/files/digest-fcpcmcia-0.1-r1 new file mode 100644 index 000000000000..d0ee5a1c13d2 --- /dev/null +++ b/net-dialup/fcpcmcia/files/digest-fcpcmcia-0.1-r1 @@ -0,0 +1,3 @@ +MD5 df7be2b8b291e03f11c05b87f7faa78e fcpcmcia-0.1-0.src.rpm 1419843 +RMD160 978787c9513e266ac9873ec5a7bedeb68bd11310 fcpcmcia-0.1-0.src.rpm 1419843 +SHA256 5f29d945d2a8929c3a60662418373397803b80bfab948ec7f01f8ed76fed535e fcpcmcia-0.1-0.src.rpm 1419843 |