diff options
author | 2005-04-25 14:22:03 +0000 | |
---|---|---|
committer | 2005-04-25 14:22:03 +0000 | |
commit | cd20abfa9d960cc35bf0aeb57867cd3654f97364 (patch) | |
tree | 76ab38facad8e84651a872adbb64e6301dc4f5e6 /media-tv | |
parent | fix username-charset patch (diff) | |
download | gentoo-2-cd20abfa9d960cc35bf0aeb57867cd3654f97364.tar.gz gentoo-2-cd20abfa9d960cc35bf0aeb57867cd3654f97364.tar.bz2 gentoo-2-cd20abfa9d960cc35bf0aeb57867cd3654f97364.zip |
Finally clean out the last kmod ebuild
(Portage version: 1.586-cvs)
Diffstat (limited to 'media-tv')
-rw-r--r-- | media-tv/linuxtv-dvb/ChangeLog | 6 | ||||
-rw-r--r-- | media-tv/linuxtv-dvb/files/digest-linuxtv-dvb-1.1.1 | 1 | ||||
-rw-r--r-- | media-tv/linuxtv-dvb/linuxtv-dvb-1.1.1.ebuild | 94 |
3 files changed, 5 insertions, 96 deletions
diff --git a/media-tv/linuxtv-dvb/ChangeLog b/media-tv/linuxtv-dvb/ChangeLog index e6534d146e37..968f0a7eed97 100644 --- a/media-tv/linuxtv-dvb/ChangeLog +++ b/media-tv/linuxtv-dvb/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-tv/linuxtv-dvb # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/linuxtv-dvb/ChangeLog,v 1.12 2005/01/25 13:22:23 lordvan Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/linuxtv-dvb/ChangeLog,v 1.13 2005/04/25 14:22:03 genstef Exp $ + + 25 Apr 2005; Stefan Schweizer <genstef@gentoo.org> + -linuxtv-dvb-1.1.1.ebuild: + Finally clean out the last kmod ebuild 25 Jan 2005; Thomas Raschbacher <lordvan@gentoo.org> linuxtv-dvb-1.1.1-r1.ebuild: renaming dvb-ttpci firmware to correct name. diff --git a/media-tv/linuxtv-dvb/files/digest-linuxtv-dvb-1.1.1 b/media-tv/linuxtv-dvb/files/digest-linuxtv-dvb-1.1.1 deleted file mode 100644 index 6a9316610344..000000000000 --- a/media-tv/linuxtv-dvb/files/digest-linuxtv-dvb-1.1.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 6dd599f24b7abecd1e32c203eaa7fa8a linuxtv-dvb-1.1.1.tar.bz2 327271 diff --git a/media-tv/linuxtv-dvb/linuxtv-dvb-1.1.1.ebuild b/media-tv/linuxtv-dvb/linuxtv-dvb-1.1.1.ebuild deleted file mode 100644 index e0e6a5066112..000000000000 --- a/media-tv/linuxtv-dvb/linuxtv-dvb-1.1.1.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/linuxtv-dvb/linuxtv-dvb-1.1.1.ebuild,v 1.4 2005/01/25 13:22:23 lordvan Exp $ - -inherit eutils kmod - -DESCRIPTION="Standalone DVB driver for Linux kernel 2.4.x" -HOMEPAGE="http://www.linuxtv.org" -SRC_URI="http://www.linuxtv.org/download/dvb/${P}.tar.bz2" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~alpha ~ia64 ~amd64 ~ppc" -IUSE="" -DEPEND="virtual/linux-sources" -#RDEPEND="" - -pkg_setup() { - einfo "" - einfo "Please make sure that the following option is enabled" - einfo "in your current kernel 'Multimedia devices'" - einfo "and /usr/src/linux point's to your current kernel" - einfo "or make will die." - einfo "" -} - -src_compile() { - # don't interfere with the kernel arch variables - unset ARCH - - #until kmod can be fudged for - #this to not have to be included - addwrite /usr/src/linux - - emake -} - -src_install() { - # see what kernel directory we need to - # go to - get_kernel_info - if is_kernel 2 6 - then - cd ${S}/build-2.6 - else - cd ${S}/build-2.4 - fi - - #copy over the insmod.sh script - #for loading all modules - sed -e "s:insmod ./:modprobe :" -i insmod.sh - sed -e "s:.${KV_OBJ}::" -i insmod.sh - newsbin insmod.sh dvb-module-load - - #install the modules - insinto /lib/modules/${KV}/misc - doins *.${KV_OBJ} - - #install the header files - cd ${S}/linux/include/linux/dvb - insinto /usr/include/linux/dvb - doins *.h - - #note, REAME-2.6 is an alternative method - #of installing dvb besides the ebuild. - #since this ebuild is being installed (obviously) - #there is no nead for the information contained - #within it. If you want to use the README-2.6 - #method, please get a source tarball, as it will - #not be supported - ChrisWhite - - #install the main docs - cd ${S} - dodoc MAKEDEV-DVB.sh NEWS README README.bt8xx TODO TROUBLESHOOTING - - #install the other docs - cd ${S}/doc - dodoc HOWTO-use-the-demux-api \ - README.valgrind HOWTO-use-the-frontend-api \ - convert.sh valgrind-2.1.0-dvb.patch -} - -pkg_postinst() { - depmod -a - einfo "" - einfo "If you don't use devfs, execute MAKEDEV-DVB.sh to create" - einfo "the device nodes. The file is in /usr/share/doc/${PF}/" - einfo "" - einfo "A file called dvb-module-load has been created to simplify loading all modules." - einfo "Call it using 'dvb-module-load {load|debug|unload}'." -} - -pkg_postrm() { - depmod -a -} |