diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2018-05-15 18:51:51 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2018-05-15 18:51:51 +0000 |
commit | f0023316651e237d98fd8cbb71c31191092b1c99 (patch) | |
tree | 9084097817c4a1e2c7493adf05afaaaf592bf6ae /biology/ugene | |
parent | 0c11c0861d5a9c29c89f26986f217638518aa08d (diff) | |
download | ports-f0023316651e237d98fd8cbb71c31191092b1c99.tar.gz ports-f0023316651e237d98fd8cbb71c31191092b1c99.zip |
Notes
Diffstat (limited to 'biology/ugene')
-rw-r--r-- | biology/ugene/Makefile | 2 | ||||
-rw-r--r-- | biology/ugene/files/patch-git_279756e4 | 30 |
2 files changed, 31 insertions, 1 deletions
diff --git a/biology/ugene/Makefile b/biology/ugene/Makefile index eaf5af64fbd3..5874cf044173 100644 --- a/biology/ugene/Makefile +++ b/biology/ugene/Makefile @@ -3,7 +3,7 @@ PORTNAME= ugene DISTVERSION= 1.22.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= biology science MASTER_SITES= http://ugene.unipro.ru/downloads/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} QueryDesigner_UserManual.pdf \ diff --git a/biology/ugene/files/patch-git_279756e4 b/biology/ugene/files/patch-git_279756e4 new file mode 100644 index 000000000000..f730ce8fe3c4 --- /dev/null +++ b/biology/ugene/files/patch-git_279756e4 @@ -0,0 +1,30 @@ +From 279756e448f53af5a495a2ce3a12abdf833fc703 Mon Sep 17 00:00:00 2001 +From: Kevin Kofler <kevin.kofler@chello.at> +Date: Tue, 2 Jan 2018 22:21:03 +0100 +Subject: [PATCH] Fix build against Qt 5.10 +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +src/plugins/external_tool_support/src/bowtie2/Bowtie2Settings.ui: Remove +shortcut setting that breaks the build with Qt 5.10. + +UGENE can be built with Qt ≥ 5.6 and a separate QtWebKit. With Qt 5.10, +we were hitting a build error: uic was producing code that did not +compile. +--- + src/plugins/external_tool_support/src/bowtie2/Bowtie2Settings.ui | 3 --- + 1 file changed, 3 deletions(-) + +--- src/plugins/external_tool_support/src/ui/Bowtie2Settings.ui ++++ src/plugins/external_tool_support/src/ui/Bowtie2Settings.ui +@@ -254,9 +254,6 @@ + <property name="text"> + <string>Disallow gaps (--gbar)</string> + </property> +- <property name="shortcut"> +- <string notr="true"/> +- </property> + </widget> + </item> + </layout> |