Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 338938
Collapse All | Expand All

(-)contrib/CMakeLists.txt (-2 / +2 lines)
Lines 72-78 Link Here
72
if (INSTALL_BASH_COMPLETION)
72
if (INSTALL_BASH_COMPLETION)
73
    install (
73
    install (
74
        FILES bash-completion/gammu
74
        FILES bash-completion/gammu
75
        DESTINATION "/etc/bash_completion.d"
75
        DESTINATION "@GENTOO_PORTAGE_EPREFIX@/etc/bash_completion.d"
76
        COMPONENT "bash"
76
        COMPONENT "bash"
77
        )
77
        )
78
endif (INSTALL_BASH_COMPLETION)
78
endif (INSTALL_BASH_COMPLETION)
Lines 80-86 Link Here
80
if (INSTALL_LSB_INIT)
80
if (INSTALL_LSB_INIT)
81
    install (
81
    install (
82
        FILES init/gammu-smsd.lsb
82
        FILES init/gammu-smsd.lsb
83
        DESTINATION "/etc/init.d"
83
        DESTINATION "@GENTOO_PORTAGE_EPREFIX@/etc/init.d"
84
        RENAME "gammu-smsd"
84
        RENAME "gammu-smsd"
85
        COMPONENT "initscript"
85
        COMPONENT "initscript"
86
        )
86
        )
(-)smsd/inject.c.old (-1 / +1 lines)
Lines 21-27 Link Here
21
21
22
#if !defined(WIN32) && (defined(HAVE_GETOPT) || defined(HAVE_GETOPT_LONG))
22
#if !defined(WIN32) && (defined(HAVE_GETOPT) || defined(HAVE_GETOPT_LONG))
23
#define HAVE_DEFAULT_CONFIG
23
#define HAVE_DEFAULT_CONFIG
24
const char default_config[] = "/etc/gammu-smsdrc";
24
const char default_config[] = "@GENTOO_PORTAGE_EPREFIX@/etc/gammu-smsdrc";
25
#endif
25
#endif
26
26
27
NORETURN void version(void)
27
NORETURN void version(void)
(-)smsd/main.c.old (-1 / +1 lines)
Lines 31-37 Link Here
31
31
32
#if !defined(WIN32)
32
#if !defined(WIN32)
33
#define HAVE_DEFAULT_CONFIG
33
#define HAVE_DEFAULT_CONFIG
34
const char default_config[] = "/etc/gammu-smsdrc";
34
const char default_config[] = "@GENTOO_PORTAGE_EPREFIX@/etc/gammu-smsdrc";
35
#endif
35
#endif
36
36
37
GSM_SMSDConfig *config;
37
GSM_SMSDConfig *config;
(-)smsd/monitor.c.old (-1 / +1 lines)
Lines 19-25 Link Here
19
19
20
#if !defined(WIN32) && (defined(HAVE_GETOPT) || defined(HAVE_GETOPT_LONG))
20
#if !defined(WIN32) && (defined(HAVE_GETOPT) || defined(HAVE_GETOPT_LONG))
21
#define HAVE_DEFAULT_CONFIG
21
#define HAVE_DEFAULT_CONFIG
22
const char default_config[] = "/etc/gammu-smsdrc";
22
const char default_config[] = "@GENTOO_PORTAGE_EPREFIX@/etc/gammu-smsdrc";
23
#endif
23
#endif
24
24
25
volatile gboolean terminate = FALSE;
25
volatile gboolean terminate = FALSE;
(-)libgammu/gsmstate.c.old (-1 / +1 lines)
Lines 30-36 Link Here
30
#define FALLBACK_GAMMURC "gammurc"
30
#define FALLBACK_GAMMURC "gammurc"
31
#define GAMMURC_NAME "\\gammurc"
31
#define GAMMURC_NAME "\\gammurc"
32
#else
32
#else
33
#define FALLBACK_GAMMURC "/etc/gammurc"
33
#define FALLBACK_GAMMURC "@GENTOO_PORTAGE_EPREFIX@/etc/gammurc"
34
#define GAMMURC_NAME "/.gammurc"
34
#define GAMMURC_NAME "/.gammurc"
35
#endif
35
#endif
36
36
(-)tests/locking.c.orig (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
#include "common.h"
8
#include "common.h"
9
9
10
#define lock_path 	"/var/lock/LCK.."
10
#define lock_path 	"@GENTOO_PORTAGE_EPREFIX@/var/lock/LCK.."
11
#define TEST_DEVICE "/dev/foo/bar"
11
#define TEST_DEVICE "/dev/foo/bar"
12
#define TEST_LOCK lock_path "bar"
12
#define TEST_LOCK lock_path "bar"
13
13

Return to bug 338938