summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <tristan@gentoo.org>2007-08-14 17:58:58 +0000
committerTristan Heaven <tristan@gentoo.org>2007-08-14 17:58:58 +0000
commit948c8694b5878c97df431263d22fa8a8fb75e4d3 (patch)
treefb1d3eafa743103902d03c6ee0e6693afa5495f7 /games-strategy/freecol/files
parentalpha stable wrt #188490 (diff)
downloadhistorical-948c8694b5878c97df431263d22fa8a8fb75e4d3.tar.gz
historical-948c8694b5878c97df431263d22fa8a8fb75e4d3.tar.bz2
historical-948c8694b5878c97df431263d22fa8a8fb75e4d3.zip
Version bump, bug #188855
Package-Manager: portage-2.1.3.5
Diffstat (limited to 'games-strategy/freecol/files')
-rw-r--r--games-strategy/freecol/files/digest-freecol-0.7.13
-rw-r--r--games-strategy/freecol/files/freecol-0.7.1-home.patch22
2 files changed, 25 insertions, 0 deletions
diff --git a/games-strategy/freecol/files/digest-freecol-0.7.1 b/games-strategy/freecol/files/digest-freecol-0.7.1
new file mode 100644
index 000000000000..0d045f3042f5
--- /dev/null
+++ b/games-strategy/freecol/files/digest-freecol-0.7.1
@@ -0,0 +1,3 @@
+MD5 b94930669e3e3a9f84a294e0ff4c5543 freecol-0.7.1-src.tar.gz 19765230
+RMD160 5c187f796835a9a53853b23ef0b75bddb3c40a80 freecol-0.7.1-src.tar.gz 19765230
+SHA256 1c1cce5a2f91d47d89639e175d10cdcaa040ca916e3b64214c0ebeb935c0c153 freecol-0.7.1-src.tar.gz 19765230
diff --git a/games-strategy/freecol/files/freecol-0.7.1-home.patch b/games-strategy/freecol/files/freecol-0.7.1-home.patch
new file mode 100644
index 000000000000..f52e943e0c6b
--- /dev/null
+++ b/games-strategy/freecol/files/freecol-0.7.1-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 "