diff options
author | Will Andrews <will@FreeBSD.org> | 2001-02-26 19:24:49 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-02-26 19:24:49 +0000 |
commit | 26121d15aefe3055f4b11633dcaca64da67c0913 (patch) | |
tree | 6ef2924bd6e9cb5e5a689c5d3a30612f8ec5dc50 /graphics/kdegraphics3/files/patch-kfax.cpp | |
parent | Remove '-lc' from LDLIBS so threaded apps can link against libslang (diff) |
Lo and behold, welcome KDE 2.1 to our ports tree. As a direct result of
the KDE team's excellent work, I am initiating burn sequence for KDE
1.x. All base KDE1 ports are hereby nuked. I am also reluctantly
reassuming maintainership of the KDE2 ports. Official KDE 2.1 packages
built for FreeBSD 4.2-STABLE w/ XFree86 4.0.2 are available on KDE's
official ftp mirrors now. Enjoy!
Note: It seems that the KDE people rerolled their kdelibs and kdebase
packages, and a quick examination of diffs reveal minor changes, but the
port should still work. I'll fix the packaging problems that bento runs
into.
Approved by: kevlo
Notes
Notes:
svn path=/head/; revision=38810
Diffstat (limited to 'graphics/kdegraphics3/files/patch-kfax.cpp')
-rw-r--r-- | graphics/kdegraphics3/files/patch-kfax.cpp | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/graphics/kdegraphics3/files/patch-kfax.cpp b/graphics/kdegraphics3/files/patch-kfax.cpp deleted file mode 100644 index 4bdb092f1459..000000000000 --- a/graphics/kdegraphics3/files/patch-kfax.cpp +++ /dev/null @@ -1,29 +0,0 @@ ---- kfax/kfax.cpp.orig Fri Dec 1 13:48:29 2000 -+++ kfax/kfax.cpp Fri Dec 1 13:51:10 2000 -@@ -46,6 +46,7 @@ - #include <kmessagebox.h> - #include <kcmdlineargs.h> - #include <kio/netaccess.h> -+#include <ktempfile.h> - - #include "kfax.h" - #include "kfax.moc" -@@ -994,14 +995,12 @@ - if(defaultpage.expander == g31expand) - faxtype = 31; - -+ KTempFile tmpFile; -+ tmpFile.setAutoDelete(true); - -- QString tempfile; -- tempfile = tmpnam(NULL); -+ fax2tiffmain(pn->pathname,QFile::encodeName(tmpFile.name()),pn->lsbfirst,pn->vres?0:1,faxtype); - -- fax2tiffmain(pn->pathname,tempfile.ascii(),pn->lsbfirst,pn->vres?0:1,faxtype); -- fax2psmain(tempfile.ascii(),psfile,width,height,pi.scale); -- -- remove(tempfile.ascii()); -+ fax2psmain(QFile::encodeName(tmpFile.name()),psfile,width,height,pi.scale); - - } - |