summaryrefslogtreecommitdiff
path: root/app-admin/testdisk/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-04-28 20:02:04 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-04-28 20:02:04 +0100
commita4e2a46beb5e4858ef27bdedbb0ff6d2ced430ad (patch)
tree852c90a4bf354c30ea66504f70bfab5401fba18d /app-admin/testdisk/files
parent5e8702bcbbed438e6c6cce023e7ef0cc9baa3e02 (diff)
gentoo resync : 28.04.2018
Diffstat (limited to 'app-admin/testdisk/files')
-rw-r--r--app-admin/testdisk/files/testdisk-7.0-qtbindir.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/app-admin/testdisk/files/testdisk-7.0-qtbindir.patch b/app-admin/testdisk/files/testdisk-7.0-qtbindir.patch
deleted file mode 100644
index cb99e503829d..000000000000
--- a/app-admin/testdisk/files/testdisk-7.0-qtbindir.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/configure.ac 2015-04-18 11:04:47.000000000 +0200
-+++ b/configure.ac 2017-12-04 20:34:51.804861863 +0100
-@@ -854,17 +854,14 @@
-
- if test "$use_qt" = "true";
- then
-- PKG_CHECK_MODULES(QTGUI, [QtGui >= 4.0.1],,use_qt=false)
-- AC_CHECK_TOOLS(MOC,[moc-qt4 moc],)
-- if test x$MOC = x ; then
-- AC_MSG_WARN(Could not find a moc-qt4 or moc tool in your PATH.)
-+ PKG_CHECK_MODULES([QTGUI], [QtCore >= 4.8.0 QtGui], [
-+ QT_PATH="$( eval $PKG_CONFIG --variable=libdir QtCore )/bin"
-+ AC_PATH_PROGS([MOC], [moc-qt4 moc], [moc], [$QT_PATH])
-+ AC_PATH_PROGS([RCC], [rcc-qt4 rcc], [rcc], [$QT_PATH])
-+ ], [
-+ AC_MSG_ERROR([Qt4 not found])
- use_qt=false
-- fi
-- AC_CHECK_TOOLS(RCC,[rcc-qt4 rcc],)
-- if test x$RCC = x ; then
-- AC_MSG_WARN(Could not find a rcc-qt4 or rcc tool in your PATH.)
-- use_qt=false
-- fi
-+ ])
- qphotorec_LDADD="$qphotorec_LDADD $QTGUI_LIBS"
- qphotorec_CXXFLAGS="$qphotorec_CXXFLAGS $QTGUI_CFLAGS"
- fi