diff options
Diffstat (limited to 'media-tv/ivtv/ivtv-0.7.3.ebuild')
-rw-r--r-- | media-tv/ivtv/ivtv-0.7.3.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/media-tv/ivtv/ivtv-0.7.3.ebuild b/media-tv/ivtv/ivtv-0.7.3.ebuild index baed27fea280..b6d8ac9507db 100644 --- a/media-tv/ivtv/ivtv-0.7.3.ebuild +++ b/media-tv/ivtv/ivtv-0.7.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/ivtv/ivtv-0.7.3.ebuild,v 1.4 2007/02/19 22:29:13 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/ivtv/ivtv-0.7.3.ebuild,v 1.5 2007/11/27 10:35:43 zzam Exp $ inherit eutils linux-mod @@ -56,28 +56,28 @@ pkg_setup() { src_unpack() { unpack ${A} - cd ${S} + cd "${S}" sed -e "s:^VERS26=.*:VERS26=${KV_MAJOR}.${KV_MINOR}:g" \ - -i ${S}/driver/Makefile || die "sed failed" + -i "${S}"/driver/Makefile || die "sed failed" } src_compile() { - cd ${S}/driver + cd "${S}"/driver linux-mod_src_compile || die "failed to build driver " - cd ${S}/utils + cd "${S}"/utils emake || die "failed to build utils " } src_install() { - cd ${S}/utils + cd "${S}"/utils make KERNELDIR="${KERNEL_DIR}" DESTDIR="${D}" PREFIX=/usr install \ || die "failed to install utils" - cd ${S} + cd "${S}" dodoc README doc/* utils/README.X11 - cd ${S}/driver + cd "${S}"/driver linux-mod_src_install || die "failed to install modules" # Add the aliases |