import manaplus 1.1.6.26

ManaPlus is an extended client for The Mana World and similar
eAthena-based MMORPG game servers.

from jona joachim (MAINTAINER) with tweaksy by landry@ and me.
ok landry@
This commit is contained in:
jasper 2011-07-10 09:56:51 +00:00
parent 71564aa4a1
commit c60844fbea
8 changed files with 590 additions and 0 deletions

58
games/manaplus/Makefile Normal file
View File

@ -0,0 +1,58 @@
# $OpenBSD: Makefile,v 1.1.1.1 2011/07/10 09:56:51 jasper Exp $
COMMENT = extended client for The Mana World
V = 1.1.6.26
DISTNAME = manaplus-${V}
CATEGORIES = games x11
HOMEPAGE = http://manaplus.evolonline.org/
MAINTAINER = Jona Joachim <jaj@hcl-club.lu>
# GPLv2
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
WANTLIB += GL SDL SDL_gfx SDL_image SDL_mixer SDL_net SDL_ttf
WANTLIB += X11 c crypto curl guichan guichan_sdl idn m physfs
WANTLIB += png pthread ssl stdc++ xml2 z
MASTER_SITES = http://download.evolonline.org/manaplus/download/${V}/
EXTRACT_SUFX = .tar.bz2
MODULES = devel/gettext
RUN_DEPENDS= devel/desktop-file-utils
LIB_DEPENDS = devel/sdl-image \
devel/sdl-gfx \
devel/sdl-mixer \
devel/sdl-net \
devel/sdl-ttf \
devel/guichan \
devel/physfs \
net/curl \
textproc/libxml
USE_LIBTOOL = Yes
CONFIGURE_STYLE = gnu
CONFIGURE_ARGS = --without-librt --without-internalguichan
BUILD_DEPENDS= ${MODGNU_AUTOCONF_DEPENDS} \
${MODGNU_AUTOMAKE_DEPENDS}
FAKE_FLAGS += desktopdir=${PREFIX}/share/applications/
AUTOCONF_VERSION = 2.59
AUTOMAKE_VERSION = 1.9
WRKDIST = ${WRKDIR}/manaplus
pre-configure:
cd ${WRKSRC} && \
${SETENV} AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
AUTOCONF_VERSION=${AUTOCONF_VERSION} autoreconf -i
.include <bsd.port.mk>

5
games/manaplus/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (manaplus-1.1.6.26.tar.bz2) = h98Pq2knsYKWg3jPVQWcSA==
RMD160 (manaplus-1.1.6.26.tar.bz2) = 5Gq0sTs5hxDvzHKHNOkdL8uHL3Q=
SHA1 (manaplus-1.1.6.26.tar.bz2) = AqiMWJVT5/VfmOEG9u1C8v/jeKQ=
SHA256 (manaplus-1.1.6.26.tar.bz2) = MeJ2sC2VJtoHqfZRCEylO1KpJnzbmpdU6m0jVu4MBag=
SIZE (manaplus-1.1.6.26.tar.bz2) = 4781738

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-data_icons_Makefile_am,v 1.1.1.1 2011/07/10 09:56:51 jasper Exp $
--- data/icons/Makefile.am.orig Sat Jun 25 18:12:08 2011
+++ data/icons/Makefile.am Wed Jun 29 18:46:09 2011
@@ -9,8 +9,8 @@ icons_DATA = manaplus.png \
manaplus.xpm
install-data-local:
- $(mkinstalldirs) $(DESTDIR)$(datarootdir)/pixmaps
- $(INSTALL) $(srcdir)/manaplus.png $(DESTDIR)$(datarootdir)/pixmaps/manaplus.png
+ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps
+ $(INSTALL) $(srcdir)/manaplus.png $(DESTDIR)$(datadir)/pixmaps/manaplus.png
uninstall-local:
rm -f $(DESTDIR)$(datarootdir)/pixmaps/manaplus.png

View File

@ -0,0 +1,38 @@
$OpenBSD: patch-src_mumblemanager_cpp,v 1.1.1.1 2011/07/10 09:56:51 jasper Exp $
--- src/mumblemanager.cpp.orig Sun Jun 12 13:44:19 2011
+++ src/mumblemanager.cpp Sun Jun 26 17:46:02 2011
@@ -7,6 +7,7 @@
#include "utils/mathutils.h"
+#include <sys/param.h>
#include <stdio.h>
#include <stdlib.h>
#include <wchar.h>
@@ -39,7 +40,7 @@ MumbleManager::~MumbleManager()
{
#ifdef WIN32
UnmapViewOfFile(mLinkedMem);
-#elif defined __FreeBSD__ || defined __DragonFly__ || defined __APPLE__
+#elif defined BSD4_4
#else
munmap(mLinkedMem, sizeof(struct LinkedMem));
#endif
@@ -73,7 +74,7 @@ void MumbleManager::setMapBase(uint16_t mapid)
void MumbleManager::init()
{
-#if defined __FreeBSD__ || defined __DragonFly__ || defined __APPLE__
+#if defined BSD4_4
return;
#endif
@@ -100,7 +101,7 @@ void MumbleManager::init()
logger->log1("MumbleManager::init can't map MumbleLink");
return;
}
-#elif defined __FreeBSD__ || defined __DragonFly__ || defined __APPLE__
+#elif defined BSD4_4
#else
char memName[256];
snprintf(memName, 256, "/MumbleLink.%d", getuid());

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-src_resources_imagewriter_cpp,v 1.1.1.1 2011/07/10 09:56:51 jasper Exp $
--- src/resources/imagewriter.cpp.orig Sun Jun 26 16:54:01 2011
+++ src/resources/imagewriter.cpp Sun Jun 26 16:54:49 2011
@@ -24,8 +24,8 @@
#include "log.h"
-#include <png.h>
-#include <SDL.h>
+#include <libpng/png.h>
+#include <SDL/SDL.h>
#include <string>
#include "debug.h"

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-src_utils_paths_cpp,v 1.1.1.1 2011/07/10 09:56:51 jasper Exp $
--- src/utils/paths.cpp.orig Sat Jun 25 18:12:10 2011
+++ src/utils/paths.cpp Wed Jun 29 21:05:35 2011
@@ -25,6 +25,7 @@
#include <cstdio>
#include <stdlib.h>
+#include <limits.h>
#ifdef WIN32
#define realpath(N, R) _fullpath((R), (N), _MAX_PATH)
@@ -35,7 +36,8 @@
std::string getRealPath(const std::string &str)
{
std::string path;
- char *realPath = realpath(str.c_str(), NULL);
+ char *realPath = (char*)calloc(PATH_MAX, sizeof(char));
+ realpath(str.c_str(), realPath);
path = realPath;
free(realPath);
return path;

2
games/manaplus/pkg/DESCR Normal file
View File

@ -0,0 +1,2 @@
ManaPlus is an extended client for The Mana World and similar
eAthena-based MMORPG game servers.

438
games/manaplus/pkg/PLIST Normal file
View File

@ -0,0 +1,438 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/07/10 09:56:51 jasper Exp $
@bin bin/manaplus
@man man/man6/manaplus.6
share/applications/manaplus.desktop
share/locale/da/LC_MESSAGES/manaplus.mo
share/locale/de/LC_MESSAGES/manaplus.mo
share/locale/en_GB/
share/locale/en_GB/LC_MESSAGES/
share/locale/en_GB/LC_MESSAGES/manaplus.mo
share/locale/es/LC_MESSAGES/manaplus.mo
share/locale/fi/LC_MESSAGES/manaplus.mo
share/locale/fr/LC_MESSAGES/manaplus.mo
share/locale/hr/LC_MESSAGES/manaplus.mo
share/locale/hu/LC_MESSAGES/manaplus.mo
share/locale/it/LC_MESSAGES/manaplus.mo
share/locale/nl/LC_MESSAGES/manaplus.mo
share/locale/nl_BE/
share/locale/nl_BE/LC_MESSAGES/
share/locale/nl_BE/LC_MESSAGES/manaplus.mo
share/locale/pl/LC_MESSAGES/manaplus.mo
share/locale/pt/LC_MESSAGES/manaplus.mo
share/locale/pt_BR/LC_MESSAGES/manaplus.mo
share/locale/ru/LC_MESSAGES/manaplus.mo
share/locale/sv/LC_MESSAGES/manaplus.mo
share/manaplus/
share/manaplus/data/
share/manaplus/data/fonts/
share/manaplus/data/fonts/dejavusans-bold.ttf
share/manaplus/data/fonts/dejavusans.ttf
share/manaplus/data/fonts/dejavusansmono-bold.ttf
share/manaplus/data/fonts/dejavusansmono.ttf
share/manaplus/data/fonts/liberationsans-bold.ttf
share/manaplus/data/fonts/liberationsans.ttf
share/manaplus/data/fonts/liberationsansmono-bold.ttf
share/manaplus/data/fonts/liberationsansmono.ttf
share/manaplus/data/fonts/mplus-1p-bold.ttf
share/manaplus/data/fonts/mplus-1p-regular.ttf
share/manaplus/data/graphics/
share/manaplus/data/graphics/gui/
share/manaplus/data/graphics/gui/bubble.png
share/manaplus/data/graphics/gui/button.png
share/manaplus/data/graphics/gui/button_disabled.png
share/manaplus/data/graphics/gui/buttonhi.png
share/manaplus/data/graphics/gui/buttonpress.png
share/manaplus/data/graphics/gui/checkbox.png
share/manaplus/data/graphics/gui/circle-gray.png
share/manaplus/data/graphics/gui/circle-green.png
share/manaplus/data/graphics/gui/close_button.png
share/manaplus/data/graphics/gui/colors.xml
share/manaplus/data/graphics/gui/deepbox.png
share/manaplus/data/graphics/gui/hscroll_left_default.png
share/manaplus/data/graphics/gui/hscroll_left_highlight.png
share/manaplus/data/graphics/gui/hscroll_left_pressed.png
share/manaplus/data/graphics/gui/hscroll_right_default.png
share/manaplus/data/graphics/gui/hscroll_right_highlight.png
share/manaplus/data/graphics/gui/hscroll_right_pressed.png
share/manaplus/data/graphics/gui/item_shortcut_bgr.png
share/manaplus/data/graphics/gui/mouse.png
share/manaplus/data/graphics/gui/progress-indicator.png
share/manaplus/data/graphics/gui/radioin.png
share/manaplus/data/graphics/gui/radioin_highlight.png
share/manaplus/data/graphics/gui/radioout.png
share/manaplus/data/graphics/gui/radioout_highlight.png
share/manaplus/data/graphics/gui/resize.png
share/manaplus/data/graphics/gui/selection.png
share/manaplus/data/graphics/gui/slider.png
share/manaplus/data/graphics/gui/slider_hilight.png
share/manaplus/data/graphics/gui/speechbubble.xml
share/manaplus/data/graphics/gui/sticky_button.png
share/manaplus/data/graphics/gui/tab.png
share/manaplus/data/graphics/gui/tab_hilight.png
share/manaplus/data/graphics/gui/tabselected.png
share/manaplus/data/graphics/gui/target-cursor-blue-l.png
share/manaplus/data/graphics/gui/target-cursor-blue-m.png
share/manaplus/data/graphics/gui/target-cursor-blue-s.png
share/manaplus/data/graphics/gui/target-cursor-red-l.png
share/manaplus/data/graphics/gui/target-cursor-red-m.png
share/manaplus/data/graphics/gui/target-cursor-red-s.png
share/manaplus/data/graphics/gui/unknown-item.png
share/manaplus/data/graphics/gui/vscroll_down_default.png
share/manaplus/data/graphics/gui/vscroll_down_highlight.png
share/manaplus/data/graphics/gui/vscroll_down_pressed.png
share/manaplus/data/graphics/gui/vscroll_grey.png
share/manaplus/data/graphics/gui/vscroll_highlight.png
share/manaplus/data/graphics/gui/vscroll_up_default.png
share/manaplus/data/graphics/gui/vscroll_up_highlight.png
share/manaplus/data/graphics/gui/vscroll_up_pressed.png
share/manaplus/data/graphics/gui/window.png
share/manaplus/data/graphics/gui/window.xml
share/manaplus/data/graphics/images/
share/manaplus/data/graphics/images/error.png
share/manaplus/data/graphics/images/login_wallpaper.png
share/manaplus/data/graphics/sprites/
share/manaplus/data/graphics/sprites/arrow_down.gif
share/manaplus/data/graphics/sprites/arrow_left.gif
share/manaplus/data/graphics/sprites/arrow_right.gif
share/manaplus/data/graphics/sprites/arrow_up.gif
share/manaplus/data/graphics/sprites/error.png
share/manaplus/data/graphics/sprites/error.xml
share/manaplus/data/graphics/sprites/manaplus_emote.xml
share/manaplus/data/graphics/sprites/manaplus_emotes.xml
share/manaplus/data/graphics/sprites/manaplus_emotions.png
share/manaplus/data/graphics/target-cursor-in-range-l.png
share/manaplus/data/graphics/target-cursor-in-range-m.png
share/manaplus/data/graphics/target-cursor-in-range-s.png
share/manaplus/data/graphics/target-cursor-normal-l.png
share/manaplus/data/graphics/target-cursor-normal-m.png
share/manaplus/data/graphics/target-cursor-normal-s.png
share/manaplus/data/help/
share/manaplus/data/help/about.txt
share/manaplus/data/help/chatcommands.txt
share/manaplus/data/help/commands.txt
share/manaplus/data/help/es/
share/manaplus/data/help/es/about.txt
share/manaplus/data/help/es/chatcommands.txt
share/manaplus/data/help/es/commands.txt
share/manaplus/data/help/es/header.txt
share/manaplus/data/help/es/index.txt
share/manaplus/data/help/es/skills.txt
share/manaplus/data/help/es/support.txt
share/manaplus/data/help/es/team.txt
share/manaplus/data/help/es/teamtmw.txt
share/manaplus/data/help/es/windows.txt
share/manaplus/data/help/fr/
share/manaplus/data/help/fr/about.txt
share/manaplus/data/help/fr/chatcommands.txt
share/manaplus/data/help/fr/commands.txt
share/manaplus/data/help/fr/header.txt
share/manaplus/data/help/fr/index.txt
share/manaplus/data/help/fr/skills.txt
share/manaplus/data/help/fr/support.txt
share/manaplus/data/help/fr/team.txt
share/manaplus/data/help/fr/teamtmw.txt
share/manaplus/data/help/fr/windows.txt
share/manaplus/data/help/header.txt
share/manaplus/data/help/index.txt
share/manaplus/data/help/pt/
share/manaplus/data/help/pt/tips/
share/manaplus/data/help/pt/tips/1.txt
share/manaplus/data/help/pt/tips/10.txt
share/manaplus/data/help/pt/tips/11.txt
share/manaplus/data/help/pt/tips/12.txt
share/manaplus/data/help/pt/tips/13.txt
share/manaplus/data/help/pt/tips/14.txt
share/manaplus/data/help/pt/tips/2.txt
share/manaplus/data/help/pt/tips/3.txt
share/manaplus/data/help/pt/tips/4.txt
share/manaplus/data/help/pt/tips/5.txt
share/manaplus/data/help/pt/tips/6.txt
share/manaplus/data/help/pt/tips/7.txt
share/manaplus/data/help/pt/tips/8.txt
share/manaplus/data/help/pt/tips/9.txt
share/manaplus/data/help/pt_BR/
share/manaplus/data/help/pt_BR/tips/
share/manaplus/data/help/pt_BR/tips/1.txt
share/manaplus/data/help/pt_BR/tips/10.txt
share/manaplus/data/help/pt_BR/tips/11.txt
share/manaplus/data/help/pt_BR/tips/12.txt
share/manaplus/data/help/pt_BR/tips/13.txt
share/manaplus/data/help/pt_BR/tips/14.txt
share/manaplus/data/help/pt_BR/tips/2.txt
share/manaplus/data/help/pt_BR/tips/3.txt
share/manaplus/data/help/pt_BR/tips/4.txt
share/manaplus/data/help/pt_BR/tips/5.txt
share/manaplus/data/help/pt_BR/tips/6.txt
share/manaplus/data/help/pt_BR/tips/7.txt
share/manaplus/data/help/pt_BR/tips/8.txt
share/manaplus/data/help/pt_BR/tips/9.txt
share/manaplus/data/help/ru/
share/manaplus/data/help/ru/chatcommands.txt
share/manaplus/data/help/ru/header.txt
share/manaplus/data/help/ru/index.txt
share/manaplus/data/help/ru/team.txt
share/manaplus/data/help/ru/tips/
share/manaplus/data/help/ru/tips/1.txt
share/manaplus/data/help/ru/tips/10.txt
share/manaplus/data/help/ru/tips/11.txt
share/manaplus/data/help/ru/tips/12.txt
share/manaplus/data/help/ru/tips/13.txt
share/manaplus/data/help/ru/tips/14.txt
share/manaplus/data/help/ru/tips/2.txt
share/manaplus/data/help/ru/tips/3.txt
share/manaplus/data/help/ru/tips/4.txt
share/manaplus/data/help/ru/tips/5.txt
share/manaplus/data/help/ru/tips/6.txt
share/manaplus/data/help/ru/tips/7.txt
share/manaplus/data/help/ru/tips/8.txt
share/manaplus/data/help/ru/tips/9.txt
share/manaplus/data/help/skills.txt
share/manaplus/data/help/support.txt
share/manaplus/data/help/team.txt
share/manaplus/data/help/teamtmw.txt
share/manaplus/data/help/tips/
share/manaplus/data/help/tips/1-1.jpg
share/manaplus/data/help/tips/1-2.jpg
share/manaplus/data/help/tips/1.txt
share/manaplus/data/help/tips/10.txt
share/manaplus/data/help/tips/11.txt
share/manaplus/data/help/tips/12.txt
share/manaplus/data/help/tips/13.txt
share/manaplus/data/help/tips/14.txt
share/manaplus/data/help/tips/2.txt
share/manaplus/data/help/tips/3.txt
share/manaplus/data/help/tips/4.txt
share/manaplus/data/help/tips/5.txt
share/manaplus/data/help/tips/6.txt
share/manaplus/data/help/tips/7.txt
share/manaplus/data/help/tips/8.txt
share/manaplus/data/help/tips/9.txt
share/manaplus/data/help/windows.txt
share/manaplus/data/icons/
share/manaplus/data/icons/manaplus.hqx
share/manaplus/data/icons/manaplus.icns
share/manaplus/data/icons/manaplus.ico
share/manaplus/data/icons/manaplus.png
share/manaplus/data/icons/manaplus.svg
share/manaplus/data/icons/manaplus.xpm
share/manaplus/data/sfx/
share/manaplus/data/sfx/system/
share/manaplus/data/sfx/system/newmessage.ogg
share/manaplus/data/themes/
share/manaplus/data/themes/blackwood/
share/manaplus/data/themes/blackwood/button.png
share/manaplus/data/themes/blackwood/button_disabled.png
share/manaplus/data/themes/blackwood/buttonhi.png
share/manaplus/data/themes/blackwood/buttonpress.png
share/manaplus/data/themes/blackwood/checkbox.png
share/manaplus/data/themes/blackwood/circle-gray.png
share/manaplus/data/themes/blackwood/circle-green.png
share/manaplus/data/themes/blackwood/close_button.png
share/manaplus/data/themes/blackwood/colors.xml
share/manaplus/data/themes/blackwood/deepbox.png
share/manaplus/data/themes/blackwood/hscroll_left_default.png
share/manaplus/data/themes/blackwood/hscroll_left_highlight.png
share/manaplus/data/themes/blackwood/hscroll_left_pressed.png
share/manaplus/data/themes/blackwood/hscroll_right_default.png
share/manaplus/data/themes/blackwood/hscroll_right_highlight.png
share/manaplus/data/themes/blackwood/hscroll_right_pressed.png
share/manaplus/data/themes/blackwood/item_shortcut_bgr.png
share/manaplus/data/themes/blackwood/mouse.png
share/manaplus/data/themes/blackwood/progress-indicator.png
share/manaplus/data/themes/blackwood/radioin.png
share/manaplus/data/themes/blackwood/radioin_highlight.png
share/manaplus/data/themes/blackwood/radioout.png
share/manaplus/data/themes/blackwood/radioout_highlight.png
share/manaplus/data/themes/blackwood/selection.png
share/manaplus/data/themes/blackwood/slider.png
share/manaplus/data/themes/blackwood/slider_hilight.png
share/manaplus/data/themes/blackwood/speech_bubble.png
share/manaplus/data/themes/blackwood/speechbubble.xml
share/manaplus/data/themes/blackwood/sticky_button.png
share/manaplus/data/themes/blackwood/tab.png
share/manaplus/data/themes/blackwood/tab_hilight.png
share/manaplus/data/themes/blackwood/tabselected.png
share/manaplus/data/themes/blackwood/target-cursor-blue-l.png
share/manaplus/data/themes/blackwood/target-cursor-blue-m.png
share/manaplus/data/themes/blackwood/target-cursor-blue-s.png
share/manaplus/data/themes/blackwood/target-cursor-red-l.png
share/manaplus/data/themes/blackwood/target-cursor-red-m.png
share/manaplus/data/themes/blackwood/target-cursor-red-s.png
share/manaplus/data/themes/blackwood/vscroll_down_default.png
share/manaplus/data/themes/blackwood/vscroll_down_highlight.png
share/manaplus/data/themes/blackwood/vscroll_down_pressed.png
share/manaplus/data/themes/blackwood/vscroll_grey.png
share/manaplus/data/themes/blackwood/vscroll_highlight.png
share/manaplus/data/themes/blackwood/vscroll_up_default.png
share/manaplus/data/themes/blackwood/vscroll_up_highlight.png
share/manaplus/data/themes/blackwood/vscroll_up_pressed.png
share/manaplus/data/themes/blackwood/window.png
share/manaplus/data/themes/classic/
share/manaplus/data/themes/enchilado/
share/manaplus/data/themes/enchilado/button.png
share/manaplus/data/themes/enchilado/button_disabled.png
share/manaplus/data/themes/enchilado/buttonhi.png
share/manaplus/data/themes/enchilado/buttonpress.png
share/manaplus/data/themes/enchilado/colors.xml
share/manaplus/data/themes/enchilado/tab.png
share/manaplus/data/themes/enchilado/tab_hilight.png
share/manaplus/data/themes/enchilado/tabselected.png
share/manaplus/data/themes/enchilado/window.png
share/manaplus/data/themes/enchilado/window.xml
share/manaplus/data/themes/mana/
share/manaplus/data/themes/mana/colors.xml
share/manaplus/data/themes/pink/
share/manaplus/data/themes/pink/bubble.png
share/manaplus/data/themes/pink/button.png
share/manaplus/data/themes/pink/button_disabled.png
share/manaplus/data/themes/pink/buttonhi.png
share/manaplus/data/themes/pink/buttonpress.png
share/manaplus/data/themes/pink/checkbox.png
share/manaplus/data/themes/pink/circle-gray.png
share/manaplus/data/themes/pink/circle-green.png
share/manaplus/data/themes/pink/close_button.png
share/manaplus/data/themes/pink/colors.xml
share/manaplus/data/themes/pink/deepbox.png
share/manaplus/data/themes/pink/hscroll_left_default.png
share/manaplus/data/themes/pink/hscroll_left_highlight.png
share/manaplus/data/themes/pink/hscroll_left_pressed.png
share/manaplus/data/themes/pink/hscroll_right_default.png
share/manaplus/data/themes/pink/hscroll_right_highlight.png
share/manaplus/data/themes/pink/hscroll_right_pressed.png
share/manaplus/data/themes/pink/item_shortcut_bgr.png
share/manaplus/data/themes/pink/mouse.png
share/manaplus/data/themes/pink/progress-indicator.png
share/manaplus/data/themes/pink/radioin.png
share/manaplus/data/themes/pink/radioin_highlight.png
share/manaplus/data/themes/pink/radioout.png
share/manaplus/data/themes/pink/radioout_highlight.png
share/manaplus/data/themes/pink/resize.png
share/manaplus/data/themes/pink/selection.png
share/manaplus/data/themes/pink/slider.png
share/manaplus/data/themes/pink/slider_hilight.png
share/manaplus/data/themes/pink/speechbubble.xml
share/manaplus/data/themes/pink/sticky_button.png
share/manaplus/data/themes/pink/tab.png
share/manaplus/data/themes/pink/tab_hilight.png
share/manaplus/data/themes/pink/tabselected.png
share/manaplus/data/themes/pink/target-cursor-blue-l.png
share/manaplus/data/themes/pink/target-cursor-blue-m.png
share/manaplus/data/themes/pink/target-cursor-blue-s.png
share/manaplus/data/themes/pink/target-cursor-red-l.png
share/manaplus/data/themes/pink/target-cursor-red-m.png
share/manaplus/data/themes/pink/target-cursor-red-s.png
share/manaplus/data/themes/pink/unknown-item.png
share/manaplus/data/themes/pink/vscroll_down_default.png
share/manaplus/data/themes/pink/vscroll_down_highlight.png
share/manaplus/data/themes/pink/vscroll_down_pressed.png
share/manaplus/data/themes/pink/vscroll_grey.png
share/manaplus/data/themes/pink/vscroll_highlight.png
share/manaplus/data/themes/pink/vscroll_up_default.png
share/manaplus/data/themes/pink/vscroll_up_highlight.png
share/manaplus/data/themes/pink/vscroll_up_pressed.png
share/manaplus/data/themes/pink/window.png
share/manaplus/data/themes/pink/window.xml
share/manaplus/data/themes/redandblack/
share/manaplus/data/themes/redandblack/bubble.png
share/manaplus/data/themes/redandblack/button.png
share/manaplus/data/themes/redandblack/button_disabled.png
share/manaplus/data/themes/redandblack/buttonhi.png
share/manaplus/data/themes/redandblack/buttonpress.png
share/manaplus/data/themes/redandblack/checkbox.png
share/manaplus/data/themes/redandblack/circle-gray.png
share/manaplus/data/themes/redandblack/circle-green.png
share/manaplus/data/themes/redandblack/close_button.png
share/manaplus/data/themes/redandblack/colors.xml
share/manaplus/data/themes/redandblack/deepbox.png
share/manaplus/data/themes/redandblack/hscroll_left_default.png
share/manaplus/data/themes/redandblack/hscroll_left_highlight.png
share/manaplus/data/themes/redandblack/hscroll_left_pressed.png
share/manaplus/data/themes/redandblack/hscroll_right_default.png
share/manaplus/data/themes/redandblack/hscroll_right_highlight.png
share/manaplus/data/themes/redandblack/hscroll_right_pressed.png
share/manaplus/data/themes/redandblack/item_shortcut_bgr.png
share/manaplus/data/themes/redandblack/mouse.png
share/manaplus/data/themes/redandblack/radioin.png
share/manaplus/data/themes/redandblack/radioin_highlight.png
share/manaplus/data/themes/redandblack/radioout.png
share/manaplus/data/themes/redandblack/radioout_highlight.png
share/manaplus/data/themes/redandblack/resize.png
share/manaplus/data/themes/redandblack/selection.png
share/manaplus/data/themes/redandblack/slider.png
share/manaplus/data/themes/redandblack/slider_hilight.png
share/manaplus/data/themes/redandblack/speechbubble.xml
share/manaplus/data/themes/redandblack/sticky_button.png
share/manaplus/data/themes/redandblack/tab.png
share/manaplus/data/themes/redandblack/tab_hilight.png
share/manaplus/data/themes/redandblack/tabselected.png
share/manaplus/data/themes/redandblack/target-cursor-blue-l.png
share/manaplus/data/themes/redandblack/target-cursor-blue-m.png
share/manaplus/data/themes/redandblack/target-cursor-blue-s.png
share/manaplus/data/themes/redandblack/target-cursor-red-l.png
share/manaplus/data/themes/redandblack/target-cursor-red-m.png
share/manaplus/data/themes/redandblack/target-cursor-red-s.png
share/manaplus/data/themes/redandblack/unknown-item.png
share/manaplus/data/themes/redandblack/vscroll_down_default.png
share/manaplus/data/themes/redandblack/vscroll_down_highlight.png
share/manaplus/data/themes/redandblack/vscroll_down_pressed.png
share/manaplus/data/themes/redandblack/vscroll_grey.png
share/manaplus/data/themes/redandblack/vscroll_highlight.png
share/manaplus/data/themes/redandblack/vscroll_up_default.png
share/manaplus/data/themes/redandblack/vscroll_up_highlight.png
share/manaplus/data/themes/redandblack/vscroll_up_pressed.png
share/manaplus/data/themes/redandblack/window.png
share/manaplus/data/themes/redandblack/window.xml
share/manaplus/data/themes/wood/
share/manaplus/data/themes/wood/bubble.png
share/manaplus/data/themes/wood/button.png
share/manaplus/data/themes/wood/button_disabled.png
share/manaplus/data/themes/wood/buttonhi.png
share/manaplus/data/themes/wood/buttonpress.png
share/manaplus/data/themes/wood/checkbox.png
share/manaplus/data/themes/wood/circle-gray.png
share/manaplus/data/themes/wood/circle-green.png
share/manaplus/data/themes/wood/close_button.png
share/manaplus/data/themes/wood/colors.xml
share/manaplus/data/themes/wood/deepbox.png
share/manaplus/data/themes/wood/hscroll_left_default.png
share/manaplus/data/themes/wood/hscroll_left_highlight.png
share/manaplus/data/themes/wood/hscroll_left_pressed.png
share/manaplus/data/themes/wood/hscroll_right_default.png
share/manaplus/data/themes/wood/hscroll_right_highlight.png
share/manaplus/data/themes/wood/hscroll_right_pressed.png
share/manaplus/data/themes/wood/item_shortcut_bgr.png
share/manaplus/data/themes/wood/mouse.png
share/manaplus/data/themes/wood/radioin.png
share/manaplus/data/themes/wood/radioin_highlight.png
share/manaplus/data/themes/wood/radioout.png
share/manaplus/data/themes/wood/radioout_highlight.png
share/manaplus/data/themes/wood/resize.png
share/manaplus/data/themes/wood/selection.png
share/manaplus/data/themes/wood/slider.png
share/manaplus/data/themes/wood/slider_hilight.png
share/manaplus/data/themes/wood/speechbubble.xml
share/manaplus/data/themes/wood/sticky_button.png
share/manaplus/data/themes/wood/tab.png
share/manaplus/data/themes/wood/tab_hilight.png
share/manaplus/data/themes/wood/tabselected.png
share/manaplus/data/themes/wood/target-cursor-blue-l.png
share/manaplus/data/themes/wood/target-cursor-blue-m.png
share/manaplus/data/themes/wood/target-cursor-blue-s.png
share/manaplus/data/themes/wood/target-cursor-red-l.png
share/manaplus/data/themes/wood/target-cursor-red-m.png
share/manaplus/data/themes/wood/target-cursor-red-s.png
share/manaplus/data/themes/wood/unknown-item.png
share/manaplus/data/themes/wood/vscroll_down_default.png
share/manaplus/data/themes/wood/vscroll_down_highlight.png
share/manaplus/data/themes/wood/vscroll_down_pressed.png
share/manaplus/data/themes/wood/vscroll_grey.png
share/manaplus/data/themes/wood/vscroll_highlight.png
share/manaplus/data/themes/wood/vscroll_up_default.png
share/manaplus/data/themes/wood/vscroll_up_highlight.png
share/manaplus/data/themes/wood/vscroll_up_pressed.png
share/manaplus/data/themes/wood/window.png
share/manaplus/data/themes/wood/window.xml
share/pixmaps/
share/pixmaps/manaplus.png
@exec %D/bin/update-desktop-database
@unexec-delete %D/bin/update-desktop-database