diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-04-25 21:50:54 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-04-25 21:50:54 +0000 |
commit | 97d267e429282df2d4510132c805e9a33feb241a (patch) | |
tree | 491893fcb0769ba4c4bb6aaac6f630d3b248f91a /net-dialup/capi4k-utils | |
parent | ebuild cleanup (diff) | |
download | historical-97d267e429282df2d4510132c805e9a33feb241a.tar.gz historical-97d267e429282df2d4510132c805e9a33feb241a.tar.bz2 historical-97d267e429282df2d4510132c805e9a33feb241a.zip |
ebuild cleanup
Diffstat (limited to 'net-dialup/capi4k-utils')
-rw-r--r-- | net-dialup/capi4k-utils/Manifest | 4 | ||||
-rw-r--r-- | net-dialup/capi4k-utils/capi4k-utils-20020701.ebuild | 47 |
2 files changed, 25 insertions, 26 deletions
diff --git a/net-dialup/capi4k-utils/Manifest b/net-dialup/capi4k-utils/Manifest index 88e0173c4f8d..2dc3e0f5be51 100644 --- a/net-dialup/capi4k-utils/Manifest +++ b/net-dialup/capi4k-utils/Manifest @@ -1,4 +1,4 @@ -MD5 f90276f3681065d06927bbb78f4fc72e ChangeLog 401 -MD5 16e0047145ea6891ffd74f2ec43c7ca2 capi4k-utils-20020701.ebuild 1117 +MD5 d90946ed3877e40b39dd46a736228e18 ChangeLog 502 +MD5 32ec340d25ad9f7934aebf66ff0ca928 capi4k-utils-20020701.ebuild 1118 MD5 9d1eb319e4e9254304fd1c4fbfa58bdd files/capi 646 MD5 d4eb961f35cf41379f2574203166860f files/digest-capi4k-utils-20020701 75 diff --git a/net-dialup/capi4k-utils/capi4k-utils-20020701.ebuild b/net-dialup/capi4k-utils/capi4k-utils-20020701.ebuild index 6a9d2392a6e9..944880f714bd 100644 --- a/net-dialup/capi4k-utils/capi4k-utils-20020701.ebuild +++ b/net-dialup/capi4k-utils/capi4k-utils-20020701.ebuild @@ -1,8 +1,13 @@ # Copyright 2002 Alexander Holler # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20020701.ebuild,v 1.4 2002/10/24 23:23:45 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20020701.ebuild,v 1.5 2003/04/25 21:50:32 mholzer Exp $ + +YEAR_PV=${PV:0:4} +MON_PV=${PV:4:2} +DAY_PV=${PV:6:2} + +MY_P=${PN}-${YEAR_PV}-${MON_PV}-${DAY_PV} -MY_P=capi4k-utils-2002-07-01 S=${WORKDIR}/${PN} DESCRIPTION="Capi4Linux Utils" SRC_URI="ftp://ftp.in-berlin.de/pub/capi4linux/${MY_P}.tar.gz" @@ -12,33 +17,27 @@ LICENSE="GPL-2" KEYWORDS="x86" DEPEND="virtual/linux-sources - sys-devel/automake" -# autoconf is a dependency of automake + sys-devel/automake" src_compile() { - - emake subconfig || die - emake || die - + emake subconfig || die + emake || die } -src_install() { - - dodir /dev - make install DESTDIR=${D} || die - rm -rf ${D}/dev - newdoc rcapid/README README.rcapid - newdoc pppdcapiplugin/README README.pppdcapiplugin - docinto examples.pppdcapiplugin; dodoc pppdcapiplugin/examples/* - exeinto /etc/init.d - doexe ${FILESDIR}/capi - +src_install() { + dodir /dev + make install DESTDIR=${D} || die + rm -rf ${D}/dev + newdoc rcapid/README README.rcapid + newdoc pppdcapiplugin/README README.pppdcapiplugin + docinto examples.pppdcapiplugin; dodoc pppdcapiplugin/examples/* + exeinto /etc/init.d + doexe ${FILESDIR}/capi } pkg_postinst() { - einfo "To use isdn4linux with CAPI replace" - einfo "I4L_MODULE=\"hisax\" with I4L_MODULE=\"capidrv\"," - einfo "start /etc/init.d/capi and load the module" - einfo "capidrv." + einfo "To use isdn4linux with CAPI replace" + einfo "I4L_MODULE=\"hisax\" with I4L_MODULE=\"capidrv\"," + einfo "start /etc/init.d/capi and load the module" + einfo "capidrv." } - |