View | Details | Raw Unified | Return to bug 192865
Collapse All | Expand All

(-)graphics/converseen/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/graphics/converseen/Makefile 365410 2014-08-19 17:36:18Z arved $
2
# $FreeBSD: head/graphics/converseen/Makefile 365410 2014-08-19 17:36:18Z arved $
3
3
4
PORTNAME=	converseen
4
PORTNAME=	converseen
5
PORTVERSION=	0.8.1
5
PORTVERSION=	0.8.2
6
CATEGORIES=	graphics
6
CATEGORIES=	graphics
7
MASTER_SITES=	SF/${PORTNAME}/Converseen/Converseen%200.8/
7
MASTER_SITES=	SF/${PORTNAME}/Converseen/Converseen%200.8/
8
8
(-)graphics/converseen/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (converseen-0.8.1.tar.bz2) = 5c7ad34ed65c02654aecfa861aa1cad395f1676e7deffc58f4df4419ae4e4f5c
1
SHA256 (converseen-0.8.2.tar.bz2) = 14be03e3b3ed850bc65f6400060a5c737dedaa69ed4c5fc691435288c4e1e2b5
2
SIZE (converseen-0.8.1.tar.bz2) = 243460
2
SIZE (converseen-0.8.2.tar.bz2) = 243451
(-)graphics/converseen/files/patch-src-formats.cpp (-31 / +5 lines)
Lines 1-37 Link Here
1
--- src/formats.cpp.orig	2014-07-08 21:01:12.000000000 +0200
1
--- src/formats.cpp.orig	2014-08-20 19:25:29.000000000 +0200
2
+++ src/formats.cpp	2014-07-08 21:01:34.000000000 +0200
2
+++ src/formats.cpp	2014-08-20 19:26:13.000000000 +0200
3
@@ -36,7 +36,6 @@
3
@@ -36,7 +36,7 @@
4
 
4
 
5
 void Formats::loadFormats()
5
 void Formats::loadFormats()
6
 {
6
 {
7
-#ifdef Q_OS_LINUX
7
-#ifdef Q_OS_LINUX || Q_OS_FREEBSD
8
+#if defined(Q_OS_LINUX) || defined(Q_OS_FREEBSD)
8
     list<CoderInfo> coderList;
9
     list<CoderInfo> coderList;
9
     coderInfoList(&coderList,
10
     coderInfoList(&coderList,
10
                   CoderInfo::TrueMatch,
11
                   CoderInfo::TrueMatch,
11
@@ -91,26 +90,6 @@
12
 
13
     s_readableFiltersString = readableFiltersList.join("");
14
     s_readableFiltersString.prepend(tr("All Supported Filters (%1)").arg(readableExts));
15
-#else
16
-    QFile data1(QDir::cleanPath("FileFormats/Readableformats.txt"));
17
-    if (data1.open(QFile::ReadOnly)) {
18
-        QTextStream in(&data1);
19
-
20
-        s_readableFilters = in.readLine().split(" ");
21
-        s_readableFiltersString = in.readLine();
22
-    }
23
-
24
-    QFile data2(QDir::cleanPath("FileFormats/WritableFormats.txt"));
25
-    if (data2.open(QFile::ReadOnly)) {
26
-        QTextStream in(&data2);
27
-        QString line;
28
-        do {
29
-            line = in.readLine();
30
-            s_writableFilters << line;
31
-        } while (!line.isNull());
32
-    }
33
-    s_writableFilters.removeLast();
34
-#endif
35
 
36
     s_writableFilters.prepend(tr("Don't change the format"));
37
 }

Return to bug 192865