summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hill <dirtyepic@gentoo.org>2008-02-02 22:19:32 +0000
committerRyan Hill <dirtyepic@gentoo.org>2008-02-02 22:19:32 +0000
commit84c9234c4fc95e0b90300c6d4a3eff414c619e76 (patch)
treee0a236a2f22333d9149052031a97aa4fdb8ba24f /dev-libs/libotf
parentadding patch for CVE-2007-{4770,4771} per bug #208001, thanks to jakub (diff)
downloadgentoo-2-84c9234c4fc95e0b90300c6d4a3eff414c619e76.tar.gz
gentoo-2-84c9234c4fc95e0b90300c6d4a3eff414c619e76.tar.bz2
gentoo-2-84c9234c4fc95e0b90300c6d4a3eff414c619e76.zip
Fix eautomake typo, bug #208479.
(Portage version: 2.1.4.1)
Diffstat (limited to 'dev-libs/libotf')
-rw-r--r--dev-libs/libotf/ChangeLog6
-rw-r--r--dev-libs/libotf/libotf-0.9.4.ebuild8
-rw-r--r--dev-libs/libotf/libotf-0.9.5.ebuild8
-rw-r--r--dev-libs/libotf/libotf-0.9.6.ebuild4
-rw-r--r--dev-libs/libotf/libotf-0.9.7.ebuild4
5 files changed, 17 insertions, 13 deletions
diff --git a/dev-libs/libotf/ChangeLog b/dev-libs/libotf/ChangeLog
index 1d90d75730e7..7c2269d0b9b4 100644
--- a/dev-libs/libotf/ChangeLog
+++ b/dev-libs/libotf/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/libotf
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/ChangeLog,v 1.33 2008/02/01 18:00:12 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/ChangeLog,v 1.34 2008/02/02 22:19:32 dirtyepic Exp $
+
+ 02 Feb 2008; Ryan Hill <dirtyepic@gentoo.org> libotf-0.9.4.ebuild,
+ libotf-0.9.5.ebuild, libotf-0.9.6.ebuild, libotf-0.9.7.ebuild:
+ Fix eautomake typo, bug #208479.
01 Feb 2008; Raúl Porcel <armin76@gentoo.org> libotf-0.9.7.ebuild:
Add ~ia64
diff --git a/dev-libs/libotf/libotf-0.9.4.ebuild b/dev-libs/libotf/libotf-0.9.4.ebuild
index 948d772a75b1..1a1fd4437d4e 100644
--- a/dev-libs/libotf/libotf-0.9.4.ebuild
+++ b/dev-libs/libotf/libotf-0.9.4.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/dev-libs/libotf/libotf-0.9.4.ebuild,v 1.2 2007/07/22 08:28:47 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.4.ebuild,v 1.3 2008/02/02 22:19:32 dirtyepic Exp $
DESCRIPTION="Library for handling OpenType fonts (OTF)"
HOMEPAGE="http://www.m17n.org/libotf/"
@@ -20,13 +20,13 @@ DEPEND="${RDEPEND}
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
use X || sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.in || die
}
src_install() {
- make DESTDIR=${D} install || die
+ emake DESTDIR="${D}" install || die
dodoc AUTHORS INSTALL NEWS README ChangeLog
}
diff --git a/dev-libs/libotf/libotf-0.9.5.ebuild b/dev-libs/libotf/libotf-0.9.5.ebuild
index 916304a7da5c..24afa39de029 100644
--- a/dev-libs/libotf/libotf-0.9.5.ebuild
+++ b/dev-libs/libotf/libotf-0.9.5.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/dev-libs/libotf/libotf-0.9.5.ebuild,v 1.1 2007/03/01 13:28:07 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.5.ebuild,v 1.2 2008/02/02 22:19:32 dirtyepic Exp $
WANT_AUTOMAKE=latest
WANT_AUTOCONF=latest
@@ -27,9 +27,9 @@ DEPEND="${RDEPEND}
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
use X || sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.am || die
- eautoremake
+ eautomake
}
src_install() {
diff --git a/dev-libs/libotf/libotf-0.9.6.ebuild b/dev-libs/libotf/libotf-0.9.6.ebuild
index 63beb3195bd2..f9d804d5c788 100644
--- a/dev-libs/libotf/libotf-0.9.6.ebuild
+++ b/dev-libs/libotf/libotf-0.9.6.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.6.ebuild,v 1.6 2008/01/15 16:24:44 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.6.ebuild,v 1.7 2008/02/02 22:19:32 dirtyepic Exp $
WANT_AUTOMAKE=latest
WANT_AUTOCONF=latest
@@ -30,7 +30,7 @@ src_unpack() {
unpack ${A}
cd "${S}"
use X || sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.am || die
- eautoremake
+ eautomake
}
src_install() {
diff --git a/dev-libs/libotf/libotf-0.9.7.ebuild b/dev-libs/libotf/libotf-0.9.7.ebuild
index c6eebc0807e3..5404d744fd40 100644
--- a/dev-libs/libotf/libotf-0.9.7.ebuild
+++ b/dev-libs/libotf/libotf-0.9.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.7.ebuild,v 1.2 2008/02/01 18:00:12 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.7.ebuild,v 1.3 2008/02/02 22:19:32 dirtyepic Exp $
WANT_AUTOMAKE=latest
WANT_AUTOCONF=latest
@@ -30,7 +30,7 @@ src_unpack() {
unpack ${A}
cd "${S}"
use X || sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.am || die
- eautoremake
+ eautomake
}
src_install() {