diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-07-19 21:41:00 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-07-19 21:41:00 +0000 |
commit | 00c784667f8ef055d43d003bed68b9b640be3b51 (patch) | |
tree | 2def3ed66b1159ab0f47287f1eea08ee769f0a1c /games-strategy/freecol/files | |
parent | Fix desktop files, bug 185869 and now it uses the langpack according to the l... (diff) | |
download | gentoo-2-00c784667f8ef055d43d003bed68b9b640be3b51.tar.gz gentoo-2-00c784667f8ef055d43d003bed68b9b640be3b51.tar.bz2 gentoo-2-00c784667f8ef055d43d003bed68b9b640be3b51.zip |
Version bump by Claes Mogren, bug #185248
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'games-strategy/freecol/files')
-rw-r--r-- | games-strategy/freecol/files/digest-freecol-0.7.0 | 3 | ||||
-rw-r--r-- | games-strategy/freecol/files/freecol-0.6.0-home.patch | 22 | ||||
-rw-r--r-- | games-strategy/freecol/files/freecol-0.7.0-home.patch | 22 |
3 files changed, 25 insertions, 22 deletions
diff --git a/games-strategy/freecol/files/digest-freecol-0.7.0 b/games-strategy/freecol/files/digest-freecol-0.7.0 new file mode 100644 index 000000000000..64d26ba8b0c1 --- /dev/null +++ b/games-strategy/freecol/files/digest-freecol-0.7.0 @@ -0,0 +1,3 @@ +MD5 89ded7c4c248d00241749eaf0a2a39e2 freecol-0.7.0-src.tar.gz 19663698 +RMD160 07736355fe40556868daf41b4d4c461da41e575d freecol-0.7.0-src.tar.gz 19663698 +SHA256 e49be5ae560f71aca184d9a880f2f3b297cb942d11aa6ab416468517309623d4 freecol-0.7.0-src.tar.gz 19663698 diff --git a/games-strategy/freecol/files/freecol-0.6.0-home.patch b/games-strategy/freecol/files/freecol-0.6.0-home.patch deleted file mode 100644 index 01ee1f499d6f..000000000000 --- a/games-strategy/freecol/files/freecol-0.6.0-home.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- src/net/sf/freecol/common/logging/DefaultHandler.java -+++ src/net/sf/freecol/common/logging/DefaultHandler.java -@@ -21,7 +21,7 @@ - public static final String LICENSE = "http://www.gnu.org/licenses/gpl.html"; - public static final String REVISION = "$Revision: 1.1 $"; - -- private static final String fileName = new String("FreeCol.log"); -+ private static final String fileName = new String(System.getProperty("user.home") + "/.freecol/FreeCol.log"); - - private FileWriter fileWriter; - ---- src/net/sf/freecol/FreeCol.java -+++ src/net/sf/freecol/FreeCol.java -@@ -83,7 +83,7 @@ - if (!saveDirectory.exists()) { - saveDirectory = new File("save"); - } else { -- saveDirectory = new File(saveDirectory, "freecol" + FILE_SEP + "save"); -+ saveDirectory = new File(saveDirectory, ".freecol" + FILE_SEP + "save"); - } - - handleArgs(args); diff --git a/games-strategy/freecol/files/freecol-0.7.0-home.patch b/games-strategy/freecol/files/freecol-0.7.0-home.patch new file mode 100644 index 000000000000..f52e943e0c6b --- /dev/null +++ b/games-strategy/freecol/files/freecol-0.7.0-home.patch @@ -0,0 +1,22 @@ +--- src/net/sf/freecol/common/logging/DefaultHandler.java ++++ src/net/sf/freecol/common/logging/DefaultHandler.java +@@ -22,7 +22,7 @@ + + public static final String REVISION = "$Revision: 1.1 $"; + +- private static final String fileName = new String("FreeCol.log"); ++ private static final String fileName = new String(System.getProperty("user.home") + "/.freecol/FreeCol.log"); + + private FileWriter fileWriter; + +--- src/net/sf/freecol/FreeCol.java ++++ src/net/sf/freecol/FreeCol.java +@@ -314,7 +314,7 @@ + private static void createAndSetDirectories() { + // TODO: The location of the save directory should be determined by the installer.; + +- File mainUserDirectory = new File(System.getProperty("user.home"), "freecol"); ++ File mainUserDirectory = new File(System.getProperty("user.home"), ".freecol"); + if (mainUserDirectory.exists() && mainUserDirectory.isFile()) { + logger.warning("Could not create .freecol under " + + System.getProperty("user.home") + " because there " |