diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-01 05:24:51 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2011-08-01 05:24:51 +0000 |
commit | f32b4a646d57ce481b4dd7fe5833576a69aa79d5 (patch) | |
tree | 6c82ba3db072751cdb149734b14210803e71bfa2 /multimedia/okle/files/patch-src::okle_win.cpp | |
parent | Remove gnomeicu: expired port (diff) |
Bye bye abandonwares (part 4)
2011-08-01 korean/a2ps: Looks like an abandonware, no more public distfiles
2011-08-01 korean/bitchx: Look like an abandonware, no more public distifles
2011-08-01 korean/elm: Look like an abandonware, no more public distifles
2011-08-01 korean/linuxdoc-sgml: Look like an abandonware, no more public distifles
2011-08-01 korean/mod_url: Look like an abandonware, no more public distifles
2011-08-01 korean/nh2ps: Look like an abandonware, no more public distifles
2011-08-01 korean/pinetreefonts: No more public distfile
2011-08-01 mail/bincimap: No more public distfile
2011-08-01 mail/cmail: No more public distfile
2011-08-01 math/hexcalc: Look like an abandonware, no more public distifles
2011-08-01 math/qgfe: Look like an abandonware, no more public distifles
2011-08-01 misc/ewipe: Look like an abandonware, no more public distifles
2011-08-01 misc/gkrellmfmonitor2: Look like an abandonware, no more public distifles
2011-08-01 misc/gkx86info: Look like an abandonware, no more public distifles
2011-08-01 multimedia/goggles: Abandonware, see: http://www.fifthplanet.net/2010/01/dead-projects-goggles-dvd-player.html
2011-08-01 multimedia/ldvd: Abandonware
2011-08-01 multimedia/linux-divx4linux: No more needed
2011-08-01 multimedia/linux-divx4linux4: No more needed
2011-08-01 multimedia/ogle: Abandonware
2011-08-01 multimedia/ogle-gui: Abandonware
2011-08-01 multimedia/okle: Abandonware
2011-08-01 multimedia/subconv: Look like an abandonware, no more public distifles
2011-08-01 net/callgen323: Look like an abandonware, no more public distifles
2011-08-01 net/lyntin: No longer under active development
2011-08-01 net/py-rt: No more public distfiles, looks like an abandonware
2011-08-01 net/rwhoisd: Looks like an abandonware, no more public distfiles
2011-08-01 net/traffic: Looks like an abandonware, no more public distfiles
2011-07-23 net-im/gnomeicu: No longer maintain by upstream, use net-im/empathy instead
2011-08-01 net-mgmt/trafd: Look like an abandonware, no more public distifles
2011-08-01 net-p2p/gkrellm-gift: Look like an abandonware, no more public distifles
2011-08-01 news/bgrab: Looks like an abandonware, no more public distfiles
2011-08-01 news/rkive: Looks like an abandonware, no more public distfiles
2011-08-01 polish/sap: Looks like an abandonware, no more public distfiles
2011-08-01 print/nenscript: Looks like an abandonware, no more public distfiles
Diffstat (limited to 'multimedia/okle/files/patch-src::okle_win.cpp')
-rw-r--r-- | multimedia/okle/files/patch-src::okle_win.cpp | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/multimedia/okle/files/patch-src::okle_win.cpp b/multimedia/okle/files/patch-src::okle_win.cpp deleted file mode 100644 index 2b9d03310f9c..000000000000 --- a/multimedia/okle/files/patch-src::okle_win.cpp +++ /dev/null @@ -1,28 +0,0 @@ ---- src/okle_win.cpp.orig Sun Nov 23 09:26:07 2003 -+++ src/okle_win.cpp Thu Mar 11 22:41:26 2004 -@@ -37,6 +37,7 @@ - #include <kstandarddirs.h> - #include <qtooltip.h> - #include <dcopclient.h> -+#include <kfileitem.h> - - extern "C" { - #include <X11/Xlib.h> -@@ -737,14 +738,14 @@ - return; - } - -- QFileInfo fi(dvdp); -- if(!fi.exists()) -+ KFileItem fi(KFileItem::Unknown, KFileItem::Unknown, dvdp); -+ if(!QFile::exists(dvdp)) - { - KMessageBox::error(0,QString(i18n("%1 does not exist.\n\nEither set the correct DVD path in File -> Settings or create a symlink from your DVD device to %2.")).arg(dvdp).arg(dvdp),i18n("DVD device file not found")); - return; - } - -- if(!fi.isFile() && !fi.isSymLink()) -+ if(!fi.isFile() && !fi.isLink()) - { - KMessageBox::error(0,QString(i18n("%1 exists but is not a file or symlink.\n\nMake sure that %2 really refers to your DVD device or change the DVD device path in File -> Settings.")).arg(dvdp).arg(dvdp),i18n("DVD device file not usable")); - return; |