diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-11-22 13:04:34 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-11-22 13:04:34 +0000 |
commit | 245fc763c281e5349cd1a75cff09b773fc99ee3e (patch) | |
tree | ccd24b49b5389bfdff9a433e981af900ed429203 /app-dicts | |
parent | Marked 0.3.6 stable on x86 and ppc. (Manifest recommit) (diff) | |
download | gentoo-2-245fc763c281e5349cd1a75cff09b773fc99ee3e.tar.gz gentoo-2-245fc763c281e5349cd1a75cff09b773fc99ee3e.tar.bz2 gentoo-2-245fc763c281e5349cd1a75cff09b773fc99ee3e.zip |
Changed einstall to make DESTDIR=${D} install; bug #72017.
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/sumika/ChangeLog | 5 | ||||
-rw-r--r-- | app-dicts/sumika/sumika-0.12.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-dicts/sumika/ChangeLog b/app-dicts/sumika/ChangeLog index 83ba7e574b80..30625efbe51e 100644 --- a/app-dicts/sumika/ChangeLog +++ b/app-dicts/sumika/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-dicts/sumika # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/sumika/ChangeLog,v 1.13 2004/09/07 07:40:10 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/sumika/ChangeLog,v 1.14 2004/11/22 13:04:34 usata Exp $ + + 22 Nov 2004; Mamoru KOMACHI <usata@gentoo.org> sumika-0.12.ebuild: + Changed einstall to make DESTDIR=${D} install; bug #72017. 07 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> sumika-0.12.ebuild: Stable on ppc. diff --git a/app-dicts/sumika/sumika-0.12.ebuild b/app-dicts/sumika/sumika-0.12.ebuild index 4024028c0ed4..0cee949c1197 100644 --- a/app-dicts/sumika/sumika-0.12.ebuild +++ b/app-dicts/sumika/sumika-0.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/sumika/sumika-0.12.ebuild,v 1.5 2004/09/07 07:40:10 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/sumika/sumika-0.12.ebuild,v 1.6 2004/11/22 13:04:34 usata Exp $ DESCRIPTION="management utility for dictionaries of Anthy, SKK, Canna and PRIME" HOMEPAGE="http://sumika.sourceforge.jp/" @@ -18,12 +18,12 @@ DEPEND="virtual/libc nls? ( sys-devel/gettext )" src_compile() { - econf `use_enable nls` || die + econf $(use_enable nls) || die emake || die } src_install() { - einstall || die + make DESTDIR=${D} install || die # we have our own place for docs dodir /usr/share/doc |