summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conrad@kostecki.com>2018-10-05 17:12:03 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-10-05 23:39:28 +0200
commite7c5b111a56a7bf4350f3c4f6bb102f1e865031c (patch)
tree0206448438d7342ea39c59ddca0521d2209a43d9 /app-misc/ddate/files
parentapp-benchmarks/stress-ng: bump to version 0.09.42 (diff)
downloadgentoo-e7c5b111a56a7bf4350f3c4f6bb102f1e865031c.tar.gz
gentoo-e7c5b111a56a7bf4350f3c4f6bb102f1e865031c.tar.bz2
gentoo-e7c5b111a56a7bf4350f3c4f6bb102f1e865031c.zip
app-misc/ddate: bump to version 0.2.2
Closes: https://bugs.gentoo.org/667822 Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Package-Manager: Portage-2.3.50, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/10078 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-misc/ddate/files')
-rw-r--r--app-misc/ddate/files/ddate-0.2.2-dont-compress-manpage.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/app-misc/ddate/files/ddate-0.2.2-dont-compress-manpage.patch b/app-misc/ddate/files/ddate-0.2.2-dont-compress-manpage.patch
new file mode 100644
index 000000000000..1eacf8ae3a11
--- /dev/null
+++ b/app-misc/ddate/files/ddate-0.2.2-dont-compress-manpage.patch
@@ -0,0 +1,20 @@
+--- a/CMakeLists.txt 2014-06-20 14:56:55.000000000 +0200
++++ b/CMakeLists.txt 2018-10-05 17:03:43.000000000 +0200
+@@ -4,15 +4,9 @@
+
+ add_executable(ddate ddate.c)
+
+-add_custom_command( OUTPUT ddate.1.gz
+- COMMAND gzip -c -9 ${CMAKE_SOURCE_DIR}/ddate.1 >> ${CMAKE_CURRENT_BINARY_DIR}/ddate.1.gz
+- DEPENDS ${CMAKE_SOURCE_DIR}/ddate.1
+- COMMENT "gzipping manpage"
+- )
+-
+ add_custom_target( manpage ALL
+- DEPENDS ddate.1.gz
++ DEPENDS ddate.1
+ )
+
+-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/ddate.1.gz DESTINATION share/man/man1)
++install(FILES ${CMAKE_SOURCE_DIR}/ddate.1 DESTINATION share/man/man1)
+ install(TARGETS ddate DESTINATION bin)