diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2005-10-09 00:15:29 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2005-10-09 00:15:29 +0000 |
commit | 20259125c6189e7c11184fd79755fb2a0f938270 (patch) | |
tree | cf45b7db50bfb20d76ccb8288a867a387a643977 /dev-tcltk/snack | |
parent | added net-analyzer/barnyard:sguil (diff) | |
download | gentoo-2-20259125c6189e7c11184fd79755fb2a0f938270.tar.gz gentoo-2-20259125c6189e7c11184fd79755fb2a0f938270.tar.bz2 gentoo-2-20259125c6189e7c11184fd79755fb2a0f938270.zip |
Fixed install path. Bug 108549.
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'dev-tcltk/snack')
-rw-r--r-- | dev-tcltk/snack/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tcltk/snack/snack-2.2.4.ebuild | 4 | ||||
-rw-r--r-- | dev-tcltk/snack/snack-2.2.9.ebuild | 6 |
3 files changed, 10 insertions, 6 deletions
diff --git a/dev-tcltk/snack/ChangeLog b/dev-tcltk/snack/ChangeLog index ac81635de1c4..53ffb61eef1f 100644 --- a/dev-tcltk/snack/ChangeLog +++ b/dev-tcltk/snack/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-tcltk/snack # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/snack/ChangeLog,v 1.14 2005/09/06 15:34:54 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/snack/ChangeLog,v 1.15 2005/10/09 00:15:29 matsuu Exp $ + + 09 Oct 2005; MATSUU Takuto <matsuu@gentoo.org> snack-2.2.4.ebuild, + snack-2.2.9.ebuild: + Fixed install path. Bug 108549. 06 Sep 2005; Markus Rothe <corsair@gentoo.org> snack-2.2.9.ebuild: Stable on ppc64 diff --git a/dev-tcltk/snack/snack-2.2.4.ebuild b/dev-tcltk/snack/snack-2.2.4.ebuild index 785c032bff71..68859d0595b2 100644 --- a/dev-tcltk/snack/snack-2.2.4.ebuild +++ b/dev-tcltk/snack/snack-2.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/snack/snack-2.2.4.ebuild,v 1.9 2005/09/04 12:25:40 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/snack/snack-2.2.4.ebuild,v 1.10 2005/10/09 00:15:29 matsuu Exp $ inherit eutils IUSE="alsa vorbis" @@ -35,7 +35,7 @@ src_compile() { } src_install() { - make DESTDIR=${D}usr install || die "make install failed" + make DESTDIR=${D} install || die "make install failed" cd .. dodoc BSD.txt COPYING README changes dohtml doc/* diff --git a/dev-tcltk/snack/snack-2.2.9.ebuild b/dev-tcltk/snack/snack-2.2.9.ebuild index b38b86572c8b..778e34311a45 100644 --- a/dev-tcltk/snack/snack-2.2.9.ebuild +++ b/dev-tcltk/snack/snack-2.2.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/snack/snack-2.2.9.ebuild,v 1.4 2005/09/06 15:34:55 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/snack/snack-2.2.9.ebuild,v 1.5 2005/10/09 00:15:29 matsuu Exp $ inherit eutils @@ -9,7 +9,7 @@ HOMEPAGE="http://www.speech.kth.se/snack/" SRC_URI="http://www.speech.kth.se/~kare/${PN}${PV}.tar.gz" LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ppc64 ~sparc x86" +KEYWORDS="amd64 ~ppc ppc64 ~sparc x86" SLOT="0" IUSE="alsa python threads vorbis" @@ -39,7 +39,7 @@ src_compile() { src_install() { cd ${S}/unix - make DESTDIR=${D}usr install || die "make install failed" + make DESTDIR=${D} install || die "make install failed" if use python ; then cd ${S}/python |