1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/x11/gnome-pie/files/patch-src__CMakeLists.txt
Nicola Vitale 65ace5171d Gnome-Pie is a circular application launcher. It is made of several pies,
each consisting of multiple slices. The user presses a key stroke which
opens the desired pie. By activating one of its slices, applications may
be launched, key presses may be simulated or files can be opened.

WWW: http://gnome-pie.simonschneegans.de/
2013-01-24 22:43:07 +00:00

44 lines
785 B
Plaintext

--- ./src/CMakeLists.txt.orig 2013-01-23 23:33:16.000000000 +0100
+++ ./src/CMakeLists.txt 2013-01-24 21:41:57.000000000 +0100
@@ -43,6 +43,7 @@
${CMAKE_INSTALL_PREFIX}/bin
)
+if (INSTALL_DOCS)
# install credits
install(
FILES
@@ -50,7 +51,9 @@
DESTINATION
${CMAKE_INSTALL_PREFIX}/share/doc/gnome-pie
)
+endif()
+if (INSTALL_NLS)
# install locales
install(
DIRECTORY
@@ -61,6 +64,7 @@
PATTERN *.pot EXCLUDE
PATTERN *.sh EXCLUDE
)
+endif()
# install themes
install(
@@ -95,11 +99,12 @@
${CMAKE_INSTALL_PREFIX}/share/applications
)
+if (NOT NO_INSTALL_MANPAGES)
# install manpage
install(
FILES
${CMAKE_SOURCE_DIR}/resources/gnome-pie.1
DESTINATION
- ${CMAKE_INSTALL_PREFIX}/share/man/man1
+ ${CMAKE_INSTALL_PREFIX}/man/man1
)
-
+endif()