diff options
author | Scott Stoddard <deltacow@gentoo.org> | 2006-04-24 23:46:41 +0000 |
---|---|---|
committer | Scott Stoddard <deltacow@gentoo.org> | 2006-04-24 23:46:41 +0000 |
commit | f40f950711fbce3a229a3188184f8c77195455f8 (patch) | |
tree | 98be078fcfe81fde930e264d9a600a52c19b28c2 /games-rpg/egoboo | |
parent | Stable on SPARC wrt bug #130535. (diff) | |
download | gentoo-2-f40f950711fbce3a229a3188184f8c77195455f8.tar.gz gentoo-2-f40f950711fbce3a229a3188184f8c77195455f8.tar.bz2 gentoo-2-f40f950711fbce3a229a3188184f8c77195455f8.zip |
fixed dos format error (carriage returns)
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'games-rpg/egoboo')
-rw-r--r-- | games-rpg/egoboo/ChangeLog | 5 | ||||
-rw-r--r-- | games-rpg/egoboo/files/2.22-amd64.patch | 16 |
2 files changed, 12 insertions, 9 deletions
diff --git a/games-rpg/egoboo/ChangeLog b/games-rpg/egoboo/ChangeLog index b8e968607a06..04e4e8d20954 100644 --- a/games-rpg/egoboo/ChangeLog +++ b/games-rpg/egoboo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-rpg/egoboo # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/egoboo/ChangeLog,v 1.13 2006/04/24 20:07:33 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/egoboo/ChangeLog,v 1.14 2006/04/24 23:46:41 deltacow Exp $ + + 24 Apr 2006; Scott Stoddard <deltacow@gentoo.org> files/2.22-amd64.patch: + Fixed DOS formatting noticed by vapier. 24 Apr 2006; Michael Sterrett <mr_bones_@gentoo.org> files/2.22-amd64.patch, egoboo-2.22.ebuild: diff --git a/games-rpg/egoboo/files/2.22-amd64.patch b/games-rpg/egoboo/files/2.22-amd64.patch index c8e5ed8ba678..982e064adb5a 100644 --- a/games-rpg/egoboo/files/2.22-amd64.patch +++ b/games-rpg/egoboo/files/2.22-amd64.patch @@ -1,11 +1,11 @@ --- code/egobootypedef.h.orig 2006-04-24 15:50:56.000000000 -0400 +++ code/egobootypedef.h 2006-04-24 15:51:15.000000000 -0400 @@ -99,7 +99,7 @@ - /*Return the result*/
- return data.f;
- }
--#elif __i386__
-+#elif defined( __i386__ ) || defined( __x86_64__ )
- #define _LITTLE_ENDIAN
- #else
- #define _BIG_ENDIAN
+ /*Return the result*/ + return data.f; + } +-#elif __i386__ ++#elif defined( __i386__ ) || defined( __x86_64__ ) + #define _LITTLE_ENDIAN + #else + #define _BIG_ENDIAN |