Changeset 3a1729a4dc1909e928808b505d048ab3eeaec864
- Timestamp:
- 10/17/08 03:33:08 (5 years ago)
- Author:
- Armin Burgmeier <armin@…>
- Parents:
- 0cc2b2338365ee1e27aa8db0abd654f1a8a9e199
- Children:
- 2dd07d2baf3203cea43763ce4fc58959077b4916
- git-committer:
- Armin Burgmeier <armin@arbur.net> / 2008-10-17T03:33:08Z+0200
- Message:
-
`make distcheck' and parallel installation fixes
2008-10-16 Armin Burgmeier <armin@…>
- code/Makefile.am:
- code/commands/Makefile.am:
- code/core/Makefile.am:
- code/dialogs/Makefile.am:
- code/operations/Makefile.am:
- code/util/Makefile.am: Fix `make distcheck' by using -I$(top_srcdir)
instead of a relative path such as -I.. Also, changed pixmapdir to
$(datadir)/pixmaps/gobby-0.5.
- pixmaps/Makefile.am:
- pixmaps/gobby-0.5.png: Moved from pixmaps/gobby.png.
- contrib/Makefile.am:
- contrib/gobby-0.5.desktop: Moved from gobby.desktop.
- configure.ac: Changed GETTEXT_PACKAGE from gobby to gobby05.
- code/core/iconmanager.cpp: Load gobby-0.5.png for the Gobby logo
instead of gobby.png.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rbc23c4d
|
r3a1729a
|
|
| | 1 | 2008-10-16 Armin Burgmeier <armin@arbur.net> |
| | 2 | |
| | 3 | * code/Makefile.am: |
| | 4 | * code/commands/Makefile.am: |
| | 5 | * code/core/Makefile.am: |
| | 6 | * code/dialogs/Makefile.am: |
| | 7 | * code/operations/Makefile.am: |
| | 8 | * code/util/Makefile.am: Fix `make distcheck' by using -I$(top_srcdir) |
| | 9 | instead of a relative path such as -I.. Also, changed pixmapdir to |
| | 10 | $(datadir)/pixmaps/gobby-0.5. |
| | 11 | |
| | 12 | * pixmaps/Makefile.am: |
| | 13 | * pixmaps/gobby-0.5.png: Moved from pixmaps/gobby.png. |
| | 14 | |
| | 15 | * contrib/Makefile.am: |
| | 16 | * contrib/gobby-0.5.desktop: Moved from gobby.desktop. |
| | 17 | |
| | 18 | * configure.ac: Changed GETTEXT_PACKAGE from gobby to gobby05. |
| | 19 | |
| | 20 | * code/core/iconmanager.cpp: Load gobby-0.5.png for the Gobby logo |
| | 21 | instead of gobby.png. |
| | 22 | |
| 1 | 23 | 2008-10-16 Armin Burgmeier <armin@arbur.net> |
| 2 | 24 | |
-
|
rbd34be3
|
r3a1729a
|
|
| 10 | 10 | |
| 11 | 11 | appicondir = $(datadir)/pixmaps |
| 12 | | pixmapdir = $(datadir)/pixmaps/gobby |
| | 12 | pixmapdir = $(datadir)/pixmaps/gobby-0.5 |
| 13 | 13 | |
| 14 | | libgobby_a_CPPFLAGS = $(gobby_CFLAGS) -I. \ |
| | 14 | libgobby_a_CPPFLAGS = $(gobby_CFLAGS) -I$(top_srcdir)/code \ |
| 15 | 15 | -DAPPICON_DIR=\""$(appicondir)"\" \ |
| 16 | 16 | -DPIXMAPS_DIR=\""$(pixmapdir)"\" |
-
|
rbd34be3
|
r3a1729a
|
|
| 19 | 19 | view-commands.hpp |
| 20 | 20 | |
| 21 | | libgobby_commands_a_CPPFLAGS = $(gobby_CFLAGS) -I.. \ |
| | 21 | appicondir = $(datadir)/pixmaps |
| | 22 | pixmapdir = $(datadir)/pixmaps/gobby-0.5 |
| | 23 | |
| | 24 | libgobby_commands_a_CPPFLAGS = $(gobby_CFLAGS) -I$(top_srcdir)/code \ |
| 22 | 25 | -DAPPICON_DIR=\""$(appicondir)"\" \ |
| 23 | 26 | -DPIXMAPS_DIR=\""$(pixmapdir)"\" |
-
|
r6c2a697
|
r3a1729a
|
|
| 38 | 38 | |
| 39 | 39 | appicondir = $(datadir)/pixmaps |
| 40 | | pixmapdir = $(datadir)/pixmaps/gobby |
| | 40 | pixmapdir = $(datadir)/pixmaps/gobby-0.5 |
| 41 | 41 | |
| 42 | | libgobby_core_a_CPPFLAGS = $(gobby_CFLAGS) -I.. \ |
| | 42 | libgobby_core_a_CPPFLAGS = $(gobby_CFLAGS) -I$(top_srcdir)/code \ |
| 43 | 43 | -DAPPICON_DIR=\""$(appicondir)"\" \ |
| 44 | 44 | -DPIXMAPS_DIR=\""$(pixmapdir)"\" |
-
|
r4d4ee96
|
r3a1729a
|
|
| 44 | 44 | subdir = "share/pixmaps"; |
| 45 | 45 | else |
| 46 | | subdir = "share/pixmaps/gobby"; |
| | 46 | subdir = "share/pixmaps/gobby-0.5"; |
| 47 | 47 | |
| 48 | 48 | gchar* path = g_win32_get_package_installation_directory_of_module(NULL); |
| … |
… |
|
| 72 | 72 | // or menu sized items. It is not yet enabled therefore. |
| 73 | 73 | Gobby::IconManager::IconManager(): |
| 74 | | gobby(load_pixbuf(APPICON_DIR, "gobby.png") ), |
| | 74 | gobby(load_pixbuf(APPICON_DIR, "gobby-0.5.png") ), |
| 75 | 75 | userlist(load_pixbuf(PIXMAPS_DIR, "userlist.png") ), |
| 76 | 76 | doclist(load_pixbuf(PIXMAPS_DIR, "doclist.png") ), |
-
|
rbd34be3
|
r3a1729a
|
|
| 17 | 17 | preferencesdialog.hpp |
| 18 | 18 | |
| 19 | | libgobby_dialogs_a_CPPFLAGS = $(gobby_CFLAGS) -I.. \ |
| | 19 | appicondir = $(datadir)/pixmaps |
| | 20 | pixmapdir = $(datadir)/pixmaps/gobby-0.5 |
| | 21 | |
| | 22 | libgobby_dialogs_a_CPPFLAGS = $(gobby_CFLAGS) -I$(top_srcdir)/code \ |
| 20 | 23 | -DAPPICON_DIR=\""$(appicondir)"\" \ |
| 21 | 24 | -DPIXMAPS_DIR=\""$(pixmapdir)"\" |
-
|
rbd34be3
|
r3a1729a
|
|
| 15 | 15 | operation-save.hpp |
| 16 | 16 | |
| 17 | | libgobby_operations_a_CPPFLAGS = $(gobby_CFLAGS) -I.. \ |
| | 17 | appicondir = $(datadir)/pixmaps |
| | 18 | pixmapdir = $(datadir)/pixmaps/gobby-0.5 |
| | 19 | |
| | 20 | libgobby_operations_a_CPPFLAGS = $(gobby_CFLAGS) -I$(top_srcdir)/code \ |
| 18 | 21 | -DAPPICON_DIR=\""$(appicondir)"\" \ |
| 19 | 22 | -DPIXMAPS_DIR=\""$(pixmapdir)"\" |
-
|
rbd34be3
|
r3a1729a
|
|
| 20 | 20 | serialize.hpp |
| 21 | 21 | |
| 22 | | libgobby_util_a_CPPFLAGS = $(gobby_CFLAGS) -I.. \ |
| | 22 | libgobby_util_a_CPPFLAGS = $(gobby_CFLAGS) -I$(top_srcdir)/code \ |
| 23 | 23 | -DAPPICON_DIR=\""$(appicondir)"\" \ |
| 24 | 24 | -DPIXMAPS_DIR=\""$(pixmapdir)"\" |
-
|
r86c32c8
|
r3a1729a
|
|
| 75 | 75 | AM_GLIB_DEFINE_LOCALEDIR(GOBBY_LOCALEDIR) |
| 76 | 76 | |
| 77 | | GETTEXT_PACKAGE=$PACKAGE |
| | 77 | GETTEXT_PACKAGE=gobby05 |
| 78 | 78 | AC_SUBST(GETTEXT_PACKAGE) |
| 79 | 79 | AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["${GETTEXT_PACKAGE}"], [gettext domain]) |
-
|
r36fa5fe
|
r3a1729a
|
|
| 4 | 4 | # GNOME-specific installation. |
| 5 | 5 | desktopdir = $(datadir)/applications |
| 6 | | desktop_DATA = gobby.desktop |
| | 6 | desktop_DATA = gobby-0.5.desktop |
| 7 | 7 | endif |
| 8 | 8 | |
| 9 | | EXTRA_DIST = gobby.desktop |
| | 9 | EXTRA_DIST = gobby-0.5.desktop |
-
|
r4e8f0f6
|
r3a1729a
|
|
| 1 | 1 | |
| 2 | 2 | appicondir = $(datadir)/pixmaps |
| 3 | | pixmapdir = $(datadir)/pixmaps/gobby |
| | 3 | pixmapdir = $(datadir)/pixmaps/gobby-0.5 |
| 4 | 4 | |
| 5 | | dist_appicon_DATA = gobby.png |
| | 5 | dist_appicon_DATA = gobby-0.5.png |
| 6 | 6 | dist_pixmap_DATA = userlist.png doclist.png save-all.svg |