summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2019-12-17 21:24:42 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2019-12-17 21:24:58 +0100
commitc27e2e0ec5681ca6db2b11c91bf06d69294e972e (patch)
treeecf67878293441e9397db7668083ae97c9d218d6 /media-sound/timemachine/files
parentdev-tcltk/tkdnd: version bump to 2.9.2 (diff)
downloadgentoo-c27e2e0ec5681ca6db2b11c91bf06d69294e972e.tar.gz
gentoo-c27e2e0ec5681ca6db2b11c91bf06d69294e972e.tar.bz2
gentoo-c27e2e0ec5681ca6db2b11c91bf06d69294e972e.zip
media-sound/timemachine: 0.3.4 bump
1) switched to virtual/jack 2) organized deps 3) added desktop file Closes: https://bugs.gentoo.org/426672 Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound/timemachine/files')
-rw-r--r--media-sound/timemachine/files/timemachine-0.3.4-underlinking.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/media-sound/timemachine/files/timemachine-0.3.4-underlinking.patch b/media-sound/timemachine/files/timemachine-0.3.4-underlinking.patch
new file mode 100644
index 000000000000..50fe45e23bcc
--- /dev/null
+++ b/media-sound/timemachine/files/timemachine-0.3.4-underlinking.patch
@@ -0,0 +1,24 @@
+diff --git a/configure.ac b/configure.ac
+index dfc8df7..0208487 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -1,6 +1,6 @@
+ dnl Process this file with autoconf to produce a configure script.
+
+-AC_INIT(configure.in)
++AC_INIT(configure.ac)
+ AM_INIT_AUTOMAKE(timemachine, 0.3.4)
+ AM_CONFIG_HEADER(config.h)
+ AM_MAINTAINER_MODE
+@@ -10,6 +10,11 @@ AC_PROG_CC
+ AM_PROG_CC_STDC
+ AC_HEADER_STDC
+
++dnl Check for libm for log10()
++AC_SEARCH_LIBS([log10], [m], [], [
++ AC_MSG_ERROR([unable to find the log10() function])
++])
++
+ PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.0.0])
+ PKG_CHECK_MODULES(JACK, [jack >= 0.80.0])
+ PKG_CHECK_MODULES(LIBLO, liblo >= 0.24, LO_FOUND="yes", LO_FOUND="no")