diff options
author | Daniel Goller <morfic@gentoo.org> | 2006-01-17 05:58:44 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2006-01-17 05:58:44 +0000 |
commit | 4c7d1725dfa84f9eba65890c6b3dbb879bb6f887 (patch) | |
tree | fd57ee0a79507260c0372503e99c918caeeadadf /sci-astronomy | |
parent | Mark 1.3.20050816 stable on ia64 (diff) | |
download | gentoo-2-4c7d1725dfa84f9eba65890c6b3dbb879bb6f887.tar.gz gentoo-2-4c7d1725dfa84f9eba65890c6b3dbb879bb6f887.tar.bz2 gentoo-2-4c7d1725dfa84f9eba65890c6b3dbb879bb6f887.zip |
Fixing Access Violations, closing bug #119189
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/celestia/ChangeLog | 5 | ||||
-rw-r--r-- | sci-astronomy/celestia/celestia-1.4.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-astronomy/celestia/ChangeLog b/sci-astronomy/celestia/ChangeLog index be5dd1c5915c..36a22617e38f 100644 --- a/sci-astronomy/celestia/ChangeLog +++ b/sci-astronomy/celestia/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-astronomy/celestia # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.6 2006/01/16 17:04:20 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.7 2006/01/17 05:58:44 morfic Exp $ + + 17 Jan 2006; Daniel Goller <morfic@gentoo.org> celestia-1.4.0.ebuild: + Fixing Access Violations, closing bug #119189 16 Jan 2006; Simon Stelling <blubb@gentoo.org> celestia-1.4.0.ebuild: add missing ? in DEPEND diff --git a/sci-astronomy/celestia/celestia-1.4.0.ebuild b/sci-astronomy/celestia/celestia-1.4.0.ebuild index 7d6c61b8e26d..4bdeb7d4c2db 100644 --- a/sci-astronomy/celestia/celestia-1.4.0.ebuild +++ b/sci-astronomy/celestia/celestia-1.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.4.0.ebuild,v 1.2 2006/01/16 17:04:20 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.4.0.ebuild,v 1.3 2006/01/17 05:58:44 morfic Exp $ inherit eutils flag-o-matic gnome2 kde-functions @@ -86,8 +86,8 @@ src_install() { if [ "${mygui}" = "gnome" ]; then gnome2_src_install else - make install DESTDIR="${D}" \ - || die "make install failed" + EXTRA_EINSTALL="pkgdatadir=${D}/usr/share/celestia" + einstall || die "einstall failed" fi dodoc AUTHORS README TODO NEWS TRANSLATORS ChangeLog \ |