diff options
author | Rodney Dawes <dobey@novell.com> | 2005-05-01 19:26:24 +0000 |
---|---|---|
committer | Rodney Dawes <dobey@novell.com> | 2005-05-01 19:26:24 +0000 |
commit | 5d557c39a307b5a727919c527f14c535d5922df0 (patch) | |
tree | 28ea6254d9d8edb45b38ce4f48e8203b364c37b9 /graphics | |
parent | ba1adfb47b04e6f551ea3d221b532b201bbaaac3 (diff) | |
download | clientdata-5d557c39a307b5a727919c527f14c535d5922df0.tar.gz clientdata-5d557c39a307b5a727919c527f14c535d5922df0.tar.bz2 clientdata-5d557c39a307b5a727919c527f14c535d5922df0.tar.xz clientdata-5d557c39a307b5a727919c527f14c535d5922df0.zip |
- Added installation of game data, install required on *nix systems
- Updated desktop file to work better
- Install the desktop file to the standard location
- Install the icon as tmw.png in the standard pixmaps data dir
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile.am | 2 | ||||
-rw-r--r-- | graphics/gui/Makefile.am | 36 | ||||
-rw-r--r-- | graphics/images/Makefile.am | 8 | ||||
-rw-r--r-- | graphics/sprites/Makefile.am | 21 | ||||
-rw-r--r-- | graphics/tiles/Makefile.am | 11 |
5 files changed, 78 insertions, 0 deletions
diff --git a/graphics/Makefile.am b/graphics/Makefile.am new file mode 100644 index 00000000..43354894 --- /dev/null +++ b/graphics/Makefile.am @@ -0,0 +1,2 @@ + +SUBDIRS = gui images sprites tiles diff --git a/graphics/gui/Makefile.am b/graphics/gui/Makefile.am new file mode 100644 index 00000000..c01d83a6 --- /dev/null +++ b/graphics/gui/Makefile.am @@ -0,0 +1,36 @@ + +guidir = $(pkgdatadir)/data/graphics/gui + +gui_DATA = \ + bg_quad_dis.png \ + button.png \ + button_disabled.png \ + buttonhi.png \ + buttonpress.png \ + checkbox.png \ + fixedfont.png \ + hscroll_left_default.png \ + hscroll_left_highlight.png \ + hscroll_left_pressed.png \ + hscroll_right_default.png \ + hscroll_right_highlight.png \ + hscroll_right_pressed.png \ + mouse.png \ + radioin.png \ + radioout.png \ + selection.png \ + slider.png \ + textbox.png \ + thickborder.png \ + vscroll_blue.png \ + vscroll_down_default.png \ + vscroll_down_highlight.png \ + vscroll_down_pressed.png \ + vscroll_grey.png \ + vscroll_red.png \ + vscroll_up_default.png \ + vscroll_up_highlight.png \ + vscroll_up_pressed.png + +EXTRA_DIST = \ + $(gui_DATA) diff --git a/graphics/images/Makefile.am b/graphics/images/Makefile.am new file mode 100644 index 00000000..d06fcf11 --- /dev/null +++ b/graphics/images/Makefile.am @@ -0,0 +1,8 @@ + +imagesdir = $(pkgdatadir)/data/graphics/images + +images_DATA = \ + login_wallpaper.png + +EXTRA_DIST = \ + $(images_DATA) diff --git a/graphics/sprites/Makefile.am b/graphics/sprites/Makefile.am new file mode 100644 index 00000000..a1080d05 --- /dev/null +++ b/graphics/sprites/Makefile.am @@ -0,0 +1,21 @@ + +spritesdir = $(pkgdatadir)/data/graphics/sprites + +sprites_DATA = \ + emotions.png \ + items.png \ + monster0.png \ + monster1.png \ + monster2.png \ + monster3.png \ + monster4.png \ + monster5.png \ + monster6.png \ + monster7.png \ + npcs.png \ + player_male_base.png \ + player_male_hair.png \ + weapons.png + +EXTRA_DIST = \ + $(sprites_DATA) diff --git a/graphics/tiles/Makefile.am b/graphics/tiles/Makefile.am new file mode 100644 index 00000000..7cca49c0 --- /dev/null +++ b/graphics/tiles/Makefile.am @@ -0,0 +1,11 @@ + +tilesdir = $(pkgdatadir)/data/graphics/tiles + +tiles_DATA = \ + cave.png \ + collision.png \ + desert1.png \ + desert2.png + +EXTRA_DIST = \ + $(tiles_DATA) |