summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2007-10-09 08:27:07 +0000
committerJeroen Roovers <jer@gentoo.org>2007-10-09 08:27:07 +0000
commit499becaec72571793770b068cc32f0f3684efa13 (patch)
treee26611e57ed4d8eedf9d363124a7a42c3c989f97 /app-text/pinfo
parentClean out old versions. (diff)
downloadgentoo-2-499becaec72571793770b068cc32f0f3684efa13.tar.gz
gentoo-2-499becaec72571793770b068cc32f0f3684efa13.tar.bz2
gentoo-2-499becaec72571793770b068cc32f0f3684efa13.zip
Fix quoting issues caught by latest repoman.
(Portage version: 2.1.3.12)
Diffstat (limited to 'app-text/pinfo')
-rw-r--r--app-text/pinfo/ChangeLog7
-rw-r--r--app-text/pinfo/pinfo-0.6.9.ebuild12
2 files changed, 11 insertions, 8 deletions
diff --git a/app-text/pinfo/ChangeLog b/app-text/pinfo/ChangeLog
index 33df17dd06ec..7ded57c2af14 100644
--- a/app-text/pinfo/ChangeLog
+++ b/app-text/pinfo/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/pinfo
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/ChangeLog,v 1.39 2006/10/20 02:55:38 jer Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/ChangeLog,v 1.40 2007/10/09 08:27:07 jer Exp $
+
+ 09 Oct 2007; Jeroen Roovers <jer@gentoo.org> pinfo-0.6.9.ebuild:
+ Fix quoting issues caught by latest repoman.
20 Oct 2006; Jeroen Roovers <jer@gentoo.org> -pinfo-0.6.8.ebuild:
Removed old version.
diff --git a/app-text/pinfo/pinfo-0.6.9.ebuild b/app-text/pinfo/pinfo-0.6.9.ebuild
index d8c34a8475c4..1cb87be78cfc 100644
--- a/app-text/pinfo/pinfo-0.6.9.ebuild
+++ b/app-text/pinfo/pinfo-0.6.9.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.9.ebuild,v 1.13 2006/10/15 09:21:13 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.9.ebuild,v 1.14 2007/10/09 08:27:07 jer Exp $
inherit eutils autotools
@@ -22,10 +22,10 @@ DEPEND="${RDEPEND}
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
- epatch ${FILESDIR}/${P}-FTPVIEWER.patch
- epatch ${FILESDIR}/${P}-as-needed.patch
+ epatch "${FILESDIR}"/${P}-FTPVIEWER.patch
+ epatch "${FILESDIR}"/${P}-as-needed.patch
AT_M4DIR="${S}/macros" eautoreconf
}
@@ -38,5 +38,5 @@ src_compile() {
}
src_install() {
- make DESTDIR=${D} sysconfdir=/etc install || die
+ make DESTDIR="${D}" sysconfdir=/etc install || die
}