diff options
author | Daniel Goller <morfic@gentoo.org> | 2006-04-05 04:25:30 +0000 |
---|---|---|
committer | Daniel Goller <morfic@gentoo.org> | 2006-04-05 04:25:30 +0000 |
commit | 3097675ed229861f2ba0ec07c69b78e2bf7297d9 (patch) | |
tree | b525ea52ddbe718a67eef234e2cc7bc822783e22 /sci-astronomy/celestia/files | |
parent | Version bump. This fixes bug #128597. (diff) | |
download | gentoo-2-3097675ed229861f2ba0ec07c69b78e2bf7297d9.tar.gz gentoo-2-3097675ed229861f2ba0ec07c69b78e2bf7297d9.tar.bz2 gentoo-2-3097675ed229861f2ba0ec07c69b78e2bf7297d9.zip |
Fixing the ACCESS VIOLATIONs, thanks go to Lars (Polynomial-C) <polynomial-C@gmx.de> for working on this, removing superceeded version
(Portage version: 2.1_pre5-r2)
Diffstat (limited to 'sci-astronomy/celestia/files')
-rw-r--r-- | sci-astronomy/celestia/files/digest-celestia-1.4.0 | 1 | ||||
-rw-r--r-- | sci-astronomy/celestia/files/digest-celestia-1.4.1 | 2 | ||||
-rw-r--r-- | sci-astronomy/celestia/files/makefile.am.patch | 17 |
3 files changed, 19 insertions, 1 deletions
diff --git a/sci-astronomy/celestia/files/digest-celestia-1.4.0 b/sci-astronomy/celestia/files/digest-celestia-1.4.0 deleted file mode 100644 index 7b0b11dcac87..000000000000 --- a/sci-astronomy/celestia/files/digest-celestia-1.4.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 d4bd0029af87fdd9cb4a0828cf62a025 celestia-1.4.0.tar.gz 25044420 diff --git a/sci-astronomy/celestia/files/digest-celestia-1.4.1 b/sci-astronomy/celestia/files/digest-celestia-1.4.1 index 24f4358f286b..b75d1f3ff9d0 100644 --- a/sci-astronomy/celestia/files/digest-celestia-1.4.1 +++ b/sci-astronomy/celestia/files/digest-celestia-1.4.1 @@ -1 +1,3 @@ MD5 be1d36fc97a13b9a276249dbc0efac41 celestia-1.4.1.tar.gz 23966886 +RMD160 c66c2540e329613dace12e5b12b2dae2a4c679e0 celestia-1.4.1.tar.gz 23966886 +SHA256 f9dc34dbc0d53e98534000545802b5ab4a471c3cb3fa08a9c958cbbbeb28d8b5 celestia-1.4.1.tar.gz 23966886 diff --git a/sci-astronomy/celestia/files/makefile.am.patch b/sci-astronomy/celestia/files/makefile.am.patch new file mode 100644 index 000000000000..fb02cb6bc478 --- /dev/null +++ b/sci-astronomy/celestia/files/makefile.am.patch @@ -0,0 +1,17 @@ +--- Makefile.am.old 2006-03-31 14:56:53.000000000 +0200 ++++ Makefile.am 2006-03-31 16:32:21.370713472 +0200 +@@ -66,11 +66,7 @@ + ) + + install-data-hook: +- if [ "$(kde_datadir)" -a -d $(kde_datadir)/@PACKAGE@ -a ! -h $(kde_datadir)/@PACKAGE@ ] ; then \ +- mv -f -b $(kde_datadir)/@PACKAGE@/* $(datadir)/@PACKAGE@/ ; \ +- rmdir $(kde_datadir)/@PACKAGE@ ; \ +- fi +- if [ "$(kde_datadir)" -a ! -h $(kde_datadir)/@PACKAGE@ ] ; then \ +- ln -s $(datadir)/@PACKAGE@ $(kde_datadir)/@PACKAGE@ ; \ +- fi ++ mv -f -b $(DESTDIR)$(kde_datadir)/@PACKAGE@/* $(DESTDIR)$(datadir)/@PACKAGE@/ ; \ ++ rmdir $(DESTDIR)$(kde_datadir)/@PACKAGE@ ; \ ++ ln -s $(datadir)/@PACKAGE@ $(DESTDIR)$(kde_datadir) ; + |