diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-01-14 19:39:12 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-01-14 19:39:12 +0000 |
commit | fa3085337219b85e716150f7ba228822268fbe73 (patch) | |
tree | 12a81f7b03f297d446bb4a767b3ce940439d7bdc /media-libs | |
parent | Added missing intltool dep (diff) | |
download | gentoo-2-fa3085337219b85e716150f7ba228822268fbe73.tar.gz gentoo-2-fa3085337219b85e716150f7ba228822268fbe73.tar.bz2 gentoo-2-fa3085337219b85e716150f7ba228822268fbe73.zip |
variable quoting, basic QA
(Portage version: 2.1.4)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/ladcca/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/ladcca/ladcca-0.4.0-r1.ebuild | 13 |
2 files changed, 11 insertions, 7 deletions
diff --git a/media-libs/ladcca/ChangeLog b/media-libs/ladcca/ChangeLog index cec65ea1f9d0..b7dd90e923b6 100644 --- a/media-libs/ladcca/ChangeLog +++ b/media-libs/ladcca/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/ladcca # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladcca/ChangeLog,v 1.25 2008/01/14 19:35:31 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladcca/ChangeLog,v 1.26 2008/01/14 19:39:12 aballier Exp $ + + 14 Jan 2008; Alexis Ballier <aballier@gentoo.org> ladcca-0.4.0-r1.ebuild: + variable quoting, basic QA 14 Jan 2008; Alexis Ballier <aballier@gentoo.org> -ladcca-0.3.2.ebuild, -ladcca-0.4.0.ebuild: diff --git a/media-libs/ladcca/ladcca-0.4.0-r1.ebuild b/media-libs/ladcca/ladcca-0.4.0-r1.ebuild index 09a99743278c..53a9c382b495 100644 --- a/media-libs/ladcca/ladcca-0.4.0-r1.ebuild +++ b/media-libs/ladcca/ladcca-0.4.0-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladcca/ladcca-0.4.0-r1.ebuild,v 1.2 2007/02/03 23:17:19 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladcca/ladcca-0.4.0-r1.ebuild,v 1.3 2008/01/14 19:39:12 aballier Exp $ inherit eutils @@ -19,8 +19,9 @@ DEPEND="media-libs/alsa-lib >=x11-libs/gtk+-2.0" src_unpack() { - unpack ${P}.tar.gz || die - epatch ${FILESDIR}/${P}-*.patch + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-deprecated_jackAPI.patch" } src_compile() { @@ -29,14 +30,14 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die + emake DESTDIR="${D}" install || die # Add to /etc/services if ! grep -q ^ladcca /etc/services; then dodir /etc insinto /etc doins /etc/services - echo -e "\nladcca\t\t14541/tcp\t\t\t# LADCCA client/server protocol" >> ${D}/etc/services + echo -e "\nladcca\t\t14541/tcp\t\t\t# LADCCA client/server protocol" >> "${D}/etc/services" fi dodoc AUTHORS ChangeLog NEWS README TODO |