View | Details | Raw Unified | Return to bug 204117
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
CATEGORIES=	games
6
CATEGORIES=	games
7
MASTER_SITES=	SF
7
MASTER_SITES=	SF
8
8
9
MAINTAINER=	martin@arp242.net
9
MAINTAINER=	ports@toco-domains.de
10
COMMENT=	Roguelike game and as such a remake of the classic game Larn
10
COMMENT=	Roguelike game and as such a remake of the classic game Larn
11
11
12
LICENSE=	GPLv3
12
LICENSE=	GPLv3
(-)files/patch-Makefile (-4 / +4 lines)
Lines 1-6 Link Here
1
--- Makefile.orig	2012-07-06 20:29:35.000000000 +0300
1
--- Makefile.orig	2012-07-06 17:29:35 UTC
2
+++ Makefile	2013-03-09 11:15:05.000000000 +0200
2
+++ Makefile
3
@@ -102,13 +102,13 @@
3
@@ -102,13 +102,13 @@ else
4
   LDFLAGS += $(shell pkg-config --libs glib-2.0)
4
   LDFLAGS += $(shell pkg-config --libs glib-2.0)
5
 
5
 
6
   # Configuration for ncurses
6
   # Configuration for ncurses
Lines 16-22 Link Here
16
       LDFLAGS += -lncurses -lpanel
16
       LDFLAGS += -lncurses -lpanel
17
     endif
17
     endif
18
   endif
18
   endif
19
@@ -117,6 +117,8 @@
19
@@ -117,6 +117,8 @@ else
20
   # Debian and derivates use lua5.1, the rest of the world lua
20
   # Debian and derivates use lua5.1, the rest of the world lua
21
   ifneq ($(wildcard /etc/debian_version),)
21
   ifneq ($(wildcard /etc/debian_version),)
22
     lua = lua5.1
22
     lua = lua5.1
(-)files/patch-src-game.c (-3 / +12 lines)
Lines 1-6 Link Here
1
--- src/game.c.orig	2012-07-06 20:29:35.000000000 +0300
1
--- src/game.c.orig	2012-07-06 17:29:35 UTC
2
+++ src/game.c	2013-03-09 12:23:13.000000000 +0200
2
+++ src/game.c
3
@@ -1353,7 +1354,7 @@
3
@@ -58,7 +58,7 @@ static GList *game_scores_load(game *g);
4
 static void game_scores_save(game *g, GList *scores);
5
 static int game_score_compare(const void *scr_a, const void *scr_b);
6
 
7
-static const char *default_lib_dir = "/usr/share/nlarn";
8
+static const char *default_lib_dir = "/usr/local/share/nlarn";
9
 #if (defined (__unix) && defined (SETGID))
10
 static const char *default_var_dir = "/var/games/nlarn";
11
 #endif
12
@@ -1353,7 +1353,7 @@ static void game_scores_save(game *g, GL
4
     if (sb == NULL)
13
     if (sb == NULL)
5
     {
14
     {
6
         /* opening the file failed */
15
         /* opening the file failed */

Return to bug 204117