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

(-)gelide-0.1.5.orig/Makefile.am (-13 lines)
Lines 5-31 Link Here
5
# Indicamos los subdirectorios a procesar
5
# Indicamos los subdirectorios a procesar
6
SUBDIRS = \
6
SUBDIRS = \
7
	data \
7
	data \
8
	doc \
9
	help \
8
	help \
10
	pixmap \
9
	pixmap \
11
	po \
10
	po \
12
	src \
11
	src \
13
	ui 
12
	ui 
14
13
15
# Lugar de instalación de la documentación estandar
16
gelidedocdir = ${prefix}/doc/gelide
17
# Archivos de documentación estandar a instalar
18
gelidedoc_DATA = \
19
	AUTHORS \
20
	ChangeLog \
21
	COPYING \
22
	INSTALL \
23
	NEWS \
24
	README
25
26
# Incluir los archivos de datos estandar en la distribución
14
# Incluir los archivos de datos estandar en la distribución
27
EXTRA_DIST = \
15
EXTRA_DIST = \
28
	$(gelidedoc_DATA) \
29
	gnome-doc-utils.make \
16
	gnome-doc-utils.make \
30
	po/gelide.pot \
17
	po/gelide.pot \
31
	m4
18
	m4
(-)gelide-0.1.5.orig/data/Makefile.am (-2 / +2 lines)
Lines 1-7 Link Here
1
## File created by the gnome-build tools
1
## File created by the gnome-build tools
2
2
3
# Reglas para el icono del programa
3
# Reglas para el icono del programa
4
gelide_icondir = $(datadir)/icons/hicolor/scalable/apps
4
gelide_icondir = /usr/share/icons/hicolor/scalable/apps
5
gelide_icon_DATA = gelide.svg
5
gelide_icon_DATA = gelide.svg
6
6
7
# Lugar de instalación de la configuración por defecto
7
# Lugar de instalación de la configuración por defecto
Lines 10-16 Link Here
10
	defaultcfg.xml
10
	defaultcfg.xml
11
11
12
# Reglas para el fichero .desktop
12
# Reglas para el fichero .desktop
13
desktopdir = $(datadir)/applications
13
desktopdir = /usr/share/applications
14
desktop_in_files = gelide.desktop.in
14
desktop_in_files = gelide.desktop.in
15
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
15
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
16
@INTLTOOL_DESKTOP_RULE@
16
@INTLTOOL_DESKTOP_RULE@
(-)gelide-0.1.5.orig/data/gelide.desktop.in (-2 / +1 lines)
Lines 1-6 Link Here
1
[Desktop Entry]
1
[Desktop Entry]
2
Version=
2
Version=1.0
3
Encoding=UTF-8
4
Name=Gelide
3
Name=Gelide
5
_Comment=Manage and play your roms
4
_Comment=Manage and play your roms
6
Exec=gelide
5
Exec=gelide
(-)gelide-0.1.5.orig/po/Makefile.in.in (-4 / +4 lines)
Lines 34-40 Link Here
34
datarootdir = @datarootdir@
34
datarootdir = @datarootdir@
35
libdir = @libdir@
35
libdir = @libdir@
36
DATADIRNAME = @DATADIRNAME@
36
DATADIRNAME = @DATADIRNAME@
37
itlocaledir = $(prefix)/$(DATADIRNAME)/locale
37
localedir = @localedir@
38
subdir = po
38
subdir = po
39
install_sh = @install_sh@
39
install_sh = @install_sh@
40
# Automake >= 1.8 provides @mkdir_p@.
40
# Automake >= 1.8 provides @mkdir_p@.
Lines 103-109 Link Here
103
install-data-yes: all
103
install-data-yes: all
104
	linguas="$(USE_LINGUAS)"; \
104
	linguas="$(USE_LINGUAS)"; \
105
	for lang in $$linguas; do \
105
	for lang in $$linguas; do \
106
	  dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
106
	  dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
107
	  $(mkdir_p) $$dir; \
107
	  $(mkdir_p) $$dir; \
108
	  if test -r $$lang.gmo; then \
108
	  if test -r $$lang.gmo; then \
109
	    $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
109
	    $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
Lines 137-144 Link Here
137
uninstall:
137
uninstall:
138
	linguas="$(USE_LINGUAS)"; \
138
	linguas="$(USE_LINGUAS)"; \
139
	for lang in $$linguas; do \
139
	for lang in $$linguas; do \
140
	  rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
140
	  rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
141
	  rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
141
	  rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
142
	done
142
	done
143
143
144
check: all $(GETTEXT_PACKAGE).pot
144
check: all $(GETTEXT_PACKAGE).pot
(-)gelide-0.1.5.orig/src/Makefile.am (-2 / +2 lines)
Lines 1-10 Link Here
1
## Process this file with automake to produce Makefile.in
1
## Process this file with automake to produce Makefile.in
2
2
3
AM_CPPFLAGS = \
3
AM_CPPFLAGS = \
4
	-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
4
	-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
5
	-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
5
	-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
6
	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
6
	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
7
	-DPACKAGE_DOC_DIR=\""$(prefix)/doc"\" \
7
	-DPACKAGE_DOC_DIR=\""$(docdir)"\" \
8
	$(GELIDE_CFLAGS)
8
	$(GELIDE_CFLAGS)
9
9
10
AM_CFLAGS =\
10
AM_CFLAGS =\
(-)gelide-0.1.5.orig/src/gelide.hpp (-1 / +1 lines)
Lines 60-66 Link Here
60
	#define GELIDE_PIXMAPS			PACKAGE_DATA_DIR"/gelide/pixmaps/"
60
	#define GELIDE_PIXMAPS			PACKAGE_DATA_DIR"/gelide/pixmaps/"
61
	#define GELIDE_UI_ICONS			PACKAGE_DATA_DIR"/gelide/ui/icons/"
61
	#define GELIDE_UI_ICONS			PACKAGE_DATA_DIR"/gelide/ui/icons/"
62
	#define GELIDE_CFG_DEFAULT		PACKAGE_DATA_DIR"/gelide/defaultcfg.xml"
62
	#define GELIDE_CFG_DEFAULT		PACKAGE_DATA_DIR"/gelide/defaultcfg.xml"
63
	#define GELIDE_DOCS				PACKAGE_DOC_DIR"/gelide/"
63
	#define GELIDE_DOCS				PACKAGE_DATA_DIR"/gelide/"
64
#else
64
#else
65
	#define GELIDE_ICON				"../data/gelide.svg"
65
	#define GELIDE_ICON				"../data/gelide.svg"
66
	#define GELIDE_PIXMAPS			"../pixmap/"
66
	#define GELIDE_PIXMAPS			"../pixmap/"

Return to bug 303055