diff options
Diffstat (limited to 'net-dialup/capi4k-utils/capi4k-utils-20041006-r3.ebuild')
-rw-r--r-- | net-dialup/capi4k-utils/capi4k-utils-20041006-r3.ebuild | 106 |
1 files changed, 0 insertions, 106 deletions
diff --git a/net-dialup/capi4k-utils/capi4k-utils-20041006-r3.ebuild b/net-dialup/capi4k-utils/capi4k-utils-20041006-r3.ebuild deleted file mode 100644 index abd7f0446cae..000000000000 --- a/net-dialup/capi4k-utils/capi4k-utils-20041006-r3.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20041006-r3.ebuild,v 1.2 2005/01/06 18:17:56 mrness Exp $ - -inherit eutils - -YEAR_PV=${PV:0:4} -MON_PV=${PV:4:2} -DAY_PV=${PV:6:2} - -MY_FILES=${FILESDIR}/${PV} -MY_P=${PN}-${YEAR_PV}-${MON_PV}-${DAY_PV} -PPPVERSIONS="2.4.2 2.4.3" # versions in portage - -DESCRIPTION="CAPI4Linux Utils" -HOMEPAGE="ftp://ftp.in-berlin.de/pub/capi4linux/" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ~amd64 ~ppc" -IUSE="" -S=${WORKDIR}/${PN} -SRC_URI="ftp://ftp.in-berlin.de/pub/capi4linux/${MY_P}.tar.gz - ftp://ftp.in-berlin.de/pub/capi4linux/OLD/${MY_P}.tar.gz - mirror://gentoo/${P}-patches.tar.bz2" - -DEPEND="virtual/linux-sources - dev-lang/perl - >=sys-apps/sed-4 - virtual/os-headers - sys-devel/automake - sys-devel/autoconf - sys-devel/libtool" -RDEPEND="" - -src_unpack() { - unpack ${A} || die "failed to unpack sources" - cd ${S} - # set our config - cp -f ${MY_FILES}/config .config - # fix the little odd bugs - EPATCH_OPTS="-p1" - epatch ${WORKDIR}/${PN}.diff ${WORKDIR}/ppp-2.4.3.diff || die "${PN} patch failed" - # patch includes of all *.c files - sed -i -e "s:linux/capi.h>$:linux/compiler.h>\n#include <linux/capi.h>:g" */*.c || die "sed failed" - # patch all Makefile.am and Rules.make to use our CFLAGS - sed -i -e "s:^CFLAGS\(.*\)-O2:CFLAGS\1${CFLAGS}:g" */Makefile.am */Rules.make || die "sed failed" - # patch capi20/Makefile.am to use -fPIC for shared library - sed -i -e "s:^\(libcapi20_la_CFLAGS = \):\1-fPIC :g" capi20/Makefile.am || die "sed failed" - # patch pppdcapiplugin/Makefile to use only the ppp versions we want - sed -i -e "s:^\(PPPVERSIONS = \).*$:\1${PPPVERSIONS}:g" pppdcapiplugin/Makefile || die "sed failed" -} - -src_compile() { - # required by fPIC patch - cd ${S}/capi20 || die "capi20 directory not found" - ebegin "Updating autotools-generated files" - aclocal -I . || die "aclocal failed" - automake -a || die "automake failed" - autoconf || die "autoconf failed" - libtoolize -f -c || die "libtoolize failed" - eend $? - cd ${S} - - emake subconfig || die "make subconfig failed" - emake || die "make failed" -} - -src_install() { - dodir /dev - emake DESTDIR=${D} install || die "make install failed" - - # install docs - newdoc rcapid/README README.rcapid - newdoc pppdcapiplugin/README README.pppdcapiplugin - dodoc scripts/makedev.sh ${MY_FILES}/README.gentoo - docinto pppdcapiplugin.examples; dodoc pppdcapiplugin/examples/* - - # install init-script - newinitd ${FILESDIR}/${PV}/capi.init capi - - # example config - insinto /etc - insopts -m 0600 - doins capiinit/capi.conf - - # rcapid config for xinetd - insinto /etc/xinetd.d - insopts -m 0644 - newins ${FILESDIR}/${PV}/rcapid.xinetd rcapid - - # very useful tool ;-) - dobin scripts/isdncause -} - -pkg_postinst() { - einfo "Please read the instructions in:" - einfo "/usr/share/doc/${PF}/README.gentoo.gz" - einfo "" - einfo "Annotation for active AVM ISDN boards (B1 ISA/PCI, ...):" - einfo "If you run" - einfo " emerge capi4k-firmware" - einfo "you will probably find your board's firmware in /usr/share/isdn." - einfo "" - einfo "If you have another active ISDN board, you should create" - einfo "/usr/share/isdn and copy there your board's firmware." -} |