Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 83217 | Differences between
and this patch

Collapse All | Expand All

(-)source/makefile.lnx.bak (-7 / +1 lines)
Lines 15-33 Link Here
15
COPY = cp
15
COPY = cp
16
OS_TYPE = LINUX
16
OS_TYPE = LINUX
17
17
18
CFLAGS = -Wall -Wwrite-strings -Wstrict-prototypes \
19
            -Wmissing-prototypes -Wmissing-declarations \
20
            -g -D$(OS_TYPE) $(EXTRA_FLAGS)
21
22
# LDFLAGS = -static
18
# LDFLAGS = -static
23
MCHMOD = 2755
19
MCHMOD = 2755
24
# INSTALLDIR = /usr/games
20
# INSTALLDIR = /usr/games
21
# Gentoo ebuild note: The INSTALLDIR is never actually used here because we install files ourselves.
25
INSTALLDIR = /opt/crawl/bin
22
INSTALLDIR = /opt/crawl/bin
26
LIB = -lncurses
23
LIB = -lncurses
27
24
28
# Include for Linux
29
INCLUDES = -I/usr/include/ncurses
30
31
all: $(GAME)
25
all: $(GAME)
32
26
33
install: $(GAME)
27
install: $(GAME)
(-)source/religion.cc.bak (-12 / +12 lines)
Lines 53-70 Link Here
53
#include "stuff.h"
53
#include "stuff.h"
54
54
55
const char *sacrifice[] = {
55
const char *sacrifice[] = {
56
    {" glows silver and disappears."},
56
    " glows silver and disappears.",
57
    {" glows a brilliant golden colour and disappears."},
57
    " glows a brilliant golden colour and disappears.",
58
    {" rots away in an instant."},
58
    " rots away in an instant.",
59
    {" crumbles to dust."},
59
    " crumbles to dust.",
60
    {" is eaten by a bug."},    /* Xom - no sacrifices */
60
    " is eaten by a bug.",    /* Xom - no sacrifices */
61
    {" explodes into nothingness."},
61
    " explodes into nothingness.",
62
    {" is consumed in a burst of flame."},
62
    " is consumed in a burst of flame.",
63
    {" is consumed in a roaring column of flame."},
63
    " is consumed in a roaring column of flame.",
64
    {" glows faintly for a moment, then is gone."},
64
    " glows faintly for a moment, then is gone.",
65
    {" is consumed in a roaring column of flame."},
65
    " is consumed in a roaring column of flame.",
66
    {" glows with a rainbow of weird colours and disappears."},
66
    " glows with a rainbow of weird colours and disappears.",
67
    {" evaporates."}
67
    " evaporates."
68
};
68
};
69
69
70
void altar_prayer(void);
70
void altar_prayer(void);

Return to bug 83217