diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 14:41:33 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 14:41:33 +0000 |
commit | 912717aa8e008163f13f9c2453e71775c3317919 (patch) | |
tree | 4291ec5bbfd2e65c5658c3dcc90fd04bd1e75894 /x11-misc/i855crt | |
parent | clean up (diff) | |
download | gentoo-2-912717aa8e008163f13f9c2453e71775c3317919.tar.gz gentoo-2-912717aa8e008163f13f9c2453e71775c3317919.tar.bz2 gentoo-2-912717aa8e008163f13f9c2453e71775c3317919.zip |
fix quoting, clean up
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/i855crt')
-rw-r--r-- | x11-misc/i855crt/i855crt-0.4-r1.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/x11-misc/i855crt/i855crt-0.4-r1.ebuild b/x11-misc/i855crt/i855crt-0.4-r1.ebuild index 549e64d6a0b3..28202162afcf 100644 --- a/x11-misc/i855crt/i855crt-0.4-r1.ebuild +++ b/x11-misc/i855crt/i855crt-0.4-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/i855crt/i855crt-0.4-r1.ebuild,v 1.1 2006/09/20 14:56:14 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/i855crt/i855crt-0.4-r1.ebuild,v 1.2 2010/07/21 14:41:33 ssuominen Exp $ inherit eutils @@ -14,21 +14,20 @@ KEYWORDS="~x86" IUSE="" DEPEND="x11-libs/libXext - x11-libs/libXv" + x11-libs/libXv" RDEPEND="${DEPEND}" src_unpack() { unpack ${A} - cd ${S} - - epatch ${FILESDIR}/${PN}-i915support.diff || die "failed to apply patch" + cd "${S}" + epatch "${FILESDIR}"/${PN}-i915support.diff # upstream ships it with the binary, we want to make sure we compile it - make clean || die "make clean failed" + make clean || die } src_install() { - dobin i855crt + dobin i855crt || die insinto /etc - doins i855crt.conf + doins i855crt.conf || die } |