diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-01-31 10:21:08 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-01-31 10:21:08 +0000 |
commit | 70f06de30623b657314bcc11ee57a93b0e513009 (patch) | |
tree | 3553b5d49461b1f9c053661225916a0fa520370e /app-text | |
parent | Referenced the wrong bug in the 3.32 ebuild, fixed typo now (Manifest recommit) (diff) | |
download | gentoo-2-70f06de30623b657314bcc11ee57a93b0e513009.tar.gz gentoo-2-70f06de30623b657314bcc11ee57a93b0e513009.tar.bz2 gentoo-2-70f06de30623b657314bcc11ee57a93b0e513009.zip |
Fixed installation of sablot-config, by passing prefix= to einstall instead of econf. See bug #39575 for more
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/sablotron/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/sablotron/sablotron-0.96.ebuild | 4 | ||||
-rw-r--r-- | app-text/sablotron/sablotron-1.0.ebuild | 6 |
3 files changed, 10 insertions, 6 deletions
diff --git a/app-text/sablotron/ChangeLog b/app-text/sablotron/ChangeLog index b0dcc4c2bd2a..30deaad93339 100644 --- a/app-text/sablotron/ChangeLog +++ b/app-text/sablotron/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/sablotron # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/ChangeLog,v 1.23 2004/01/18 18:21:44 tuxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/ChangeLog,v 1.24 2004/01/31 10:21:08 obz Exp $ + + 31 Jan 2004; Mike Gardiner <obz@gentoo.org> sablotron-1.0.ebuild: + Fixed installation of sablot-config, by passing prefix= to einstall instead of + econf. See bug #39575 for more 18 Jan 2004; <tuxus@gentoo.org> sablotron-0.97.ebuild: Added ~mips to KEYWORDS. diff --git a/app-text/sablotron/sablotron-0.96.ebuild b/app-text/sablotron/sablotron-0.96.ebuild index 956c03fe9921..f7729c119caa 100644 --- a/app-text/sablotron/sablotron-0.96.ebuild +++ b/app-text/sablotron/sablotron-0.96.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.96.ebuild,v 1.10 2004/01/02 22:02:15 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-0.96.ebuild,v 1.11 2004/01/31 10:21:08 obz Exp $ inherit eutils libtool diff --git a/app-text/sablotron/sablotron-1.0.ebuild b/app-text/sablotron/sablotron-1.0.ebuild index 1aa079e2c7bd..d5454032759d 100644 --- a/app-text/sablotron/sablotron-1.0.ebuild +++ b/app-text/sablotron/sablotron-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-1.0.ebuild,v 1.4 2004/01/10 16:00:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/sablotron/sablotron-1.0.ebuild,v 1.5 2004/01/31 10:21:08 obz Exp $ inherit libtool @@ -44,14 +44,14 @@ src_compile() { # is added <obz@gentoo.org> export LDFLAGS="-lstdc++" - econf ${myconf} --prefix=${D} || die "Configure failed" + econf ${myconf} || die "Configure failed" emake || die "Make failed" } src_install() { - einstall || die "Install failed" + einstall prefix=${D}/usr || die "Install failed" dodoc ${DOCS} } |