diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2007-11-27 12:45:04 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2007-11-27 12:45:04 +0000 |
commit | 58c8a29ea2e9f7b29e62ce484dace2eb91034e1a (patch) | |
tree | 1c2371e5b0dd28721d2e8e5f636ca35ed8b9e10e /media-video/dvdauthor | |
parent | Fixed quoting. (diff) | |
download | historical-58c8a29ea2e9f7b29e62ce484dace2eb91034e1a.tar.gz historical-58c8a29ea2e9f7b29e62ce484dace2eb91034e1a.tar.bz2 historical-58c8a29ea2e9f7b29e62ce484dace2eb91034e1a.zip |
Fixed quoting.
Package-Manager: portage-2.1.4_rc3
Diffstat (limited to 'media-video/dvdauthor')
-rw-r--r-- | media-video/dvdauthor/ChangeLog | 6 | ||||
-rw-r--r-- | media-video/dvdauthor/dvdauthor-0.6.10.ebuild | 16 |
2 files changed, 13 insertions, 9 deletions
diff --git a/media-video/dvdauthor/ChangeLog b/media-video/dvdauthor/ChangeLog index 5b67b92c737c..713559ddcb5a 100644 --- a/media-video/dvdauthor/ChangeLog +++ b/media-video/dvdauthor/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-video/dvdauthor # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/ChangeLog,v 1.27 2007/02/25 00:10:55 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/ChangeLog,v 1.28 2007/11/27 12:39:02 zzam Exp $ + + 27 Nov 2007; Matthias Schwarzott <zzam@gentoo.org> + dvdauthor-0.6.10.ebuild: + Fixed quoting. *dvdauthor-0.6.14 (25 Feb 2007) diff --git a/media-video/dvdauthor/dvdauthor-0.6.10.ebuild b/media-video/dvdauthor/dvdauthor-0.6.10.ebuild index 651344b0aea2..3c4cb94577e0 100644 --- a/media-video/dvdauthor/dvdauthor-0.6.10.ebuild +++ b/media-video/dvdauthor/dvdauthor-0.6.10.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/dvdauthor-0.6.10.ebuild,v 1.13 2005/05/05 02:41:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/dvdauthor-0.6.10.ebuild,v 1.14 2007/11/27 12:39:02 zzam Exp $ inherit eutils @@ -20,16 +20,16 @@ DEPEND="media-libs/libdvdread src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-gcc34.patch - epatch ${FILESDIR}/${P}-utf8.patch - epatch ${FILESDIR}/${P}-im6.patch + cd "${S}" + epatch "${FILESDIR}"/${P}-gcc34.patch + epatch "${FILESDIR}"/${P}-utf8.patch + epatch "${FILESDIR}"/${P}-im6.patch # see #62836 - epatch ${FILESDIR}/${P}-debugsegfault.patch + epatch "${FILESDIR}"/${P}-debugsegfault.patch } src_install() { - make install DESTDIR=${D} || die "installation failed" + make install DESTDIR="${D}" || die "installation failed" dodoc README HISTORY TODO } |