Skip to content

Commit

Permalink
Also support X11 icon for minetest copies installed via make install (#…
Browse files Browse the repository at this point in the history
…4407)

Fixes #4323.
  • Loading branch information
est31 committed Aug 20, 2016
1 parent 6590140 commit f092dac
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Expand Up @@ -175,6 +175,9 @@ if(UNIX AND NOT APPLE)
install(FILES "misc/minetest.desktop" DESTINATION "${XDG_APPS_DIR}")
install(FILES "misc/minetest.appdata.xml" DESTINATION "${APPDATADIR}")
install(FILES "misc/minetest.svg" DESTINATION "${ICONDIR}/hicolor/scalable/apps")
install(FILES "misc/minetest-xorg-icon-128.png"
DESTINATION "${ICONDIR}/hicolor/128x128/apps"
RENAME "minetest.png")
endif()

if(APPLE)
Expand Down
3 changes: 1 addition & 2 deletions src/client/clientlauncher.cpp
Expand Up @@ -114,8 +114,7 @@ bool ClientLauncher::run(GameParams &game_params, const Settings &cmd_args)

porting::setXorgClassHint(video_driver->getExposedVideoData(), PROJECT_NAME_C);

porting::setXorgWindowIcon(device,
porting::path_share + "/misc/minetest-xorg-icon-128.png");
porting::setXorgWindowIcon(device);

/*
This changes the minimum allowed number of vertices in a VBO.
Expand Down
1 change: 1 addition & 0 deletions src/cmake_config.h.in
Expand Up @@ -14,6 +14,7 @@
#define STATIC_SHAREDIR "@SHAREDIR@"
#define STATIC_LOCALEDIR "@LOCALEDIR@"
#define BUILD_TYPE "@CMAKE_BUILD_TYPE@"
#define ICON_DIR "@ICONDIR@"
#cmakedefine01 RUN_IN_PLACE
#cmakedefine01 USE_GETTEXT
#cmakedefine01 USE_CURL
Expand Down
19 changes: 18 additions & 1 deletion src/porting.cpp
Expand Up @@ -611,7 +611,24 @@ void setXorgClassHint(const video::SExposedVideoData &video_data,
#endif
}

bool setXorgWindowIcon(IrrlichtDevice *device,
bool setXorgWindowIcon(IrrlichtDevice *device)
{
#if RUN_IN_PLACE
return setXorgWindowIconFromPath(device,
path_share + "/misc/" PROJECT_NAME "-xorg-icon-128.png");
#else
// We have semi-support for reading in-place data if we are
// compiled with RUN_IN_PLACE. Don't break with this and
// also try the path_share location.
return
setXorgWindowIconFromPath(device,
ICON_DIR "/hicolor/128x128/apps/" PROJECT_NAME ".png") ||
setXorgWindowIconFromPath(device,
path_share + "/misc/" PROJECT_NAME "-xorg-icon-128.png");
#endif
}

bool setXorgWindowIconFromPath(IrrlichtDevice *device,
const std::string &icon_file)
{
#ifdef XORG_USED
Expand Down
4 changes: 3 additions & 1 deletion src/porting.h
Expand Up @@ -367,7 +367,9 @@ inline const char *getPlatformName()
void setXorgClassHint(const video::SExposedVideoData &video_data,
const std::string &name);

bool setXorgWindowIcon(IrrlichtDevice *device,
bool setXorgWindowIcon(IrrlichtDevice *device);

bool setXorgWindowIconFromPath(IrrlichtDevice *device,
const std::string &icon_file);

// This only needs to be called at the start of execution, since all future
Expand Down

0 comments on commit f092dac

Please sign in to comment.