diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2007-03-13 19:13:51 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2007-03-13 19:13:51 +0000 |
commit | a209c5b185423decb49344e360900c7bd7e43222 (patch) | |
tree | beea7a17a306cd21cbbf4ce8ce1eae64ec530cca /net/kdenetwork3 | |
parent | 7f59efef38bda87187c5cccd4d443c9b31fb9a51 (diff) | |
download | ports-a209c5b185423decb49344e360900c7bd7e43222.tar.gz ports-a209c5b185423decb49344e360900c7bd7e43222.zip |
Notes
Diffstat (limited to 'net/kdenetwork3')
-rw-r--r-- | net/kdenetwork3/Makefile | 3 | ||||
-rw-r--r-- | net/kdenetwork3/distinfo | 6 | ||||
-rw-r--r-- | net/kdenetwork3/files/patch-post-3.5.5-kdenetwork-ksirc.diff | 26 |
3 files changed, 4 insertions, 31 deletions
diff --git a/net/kdenetwork3/Makefile b/net/kdenetwork3/Makefile index 90188bce6974..55cc4bfe08dc 100644 --- a/net/kdenetwork3/Makefile +++ b/net/kdenetwork3/Makefile @@ -8,7 +8,6 @@ PORTNAME= kdenetwork PORTVERSION= ${KDE_VERSION} -PORTREVISION= 1 CATEGORIES?= net kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src @@ -30,7 +29,7 @@ USE_GMAKE= yes USE_OPENSSL= yes USE_AUTOTOOLS= libtool:15 -INSTALLS_SHLIB= yes +USE_LDCONFIG= yes LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 DO_NOT_COMPILE+=kopete lanbrowsing filesharing diff --git a/net/kdenetwork3/distinfo b/net/kdenetwork3/distinfo index 7615aba07796..6a8b1a2651e3 100644 --- a/net/kdenetwork3/distinfo +++ b/net/kdenetwork3/distinfo @@ -1,3 +1,3 @@ -MD5 (KDE/kdenetwork-3.5.5.tar.bz2) = a6e642c070cbd50d4a817f6588bf8e46 -SHA256 (KDE/kdenetwork-3.5.5.tar.bz2) = c3f36e69bbd23902f2bdd9a1a8cda93b0436338ada422bb8ac6bc3d2bcd8e38f -SIZE (KDE/kdenetwork-3.5.5.tar.bz2) = 9235564 +MD5 (KDE/kdenetwork-3.5.6.tar.bz2) = 0f428cccc4ea16aa53c427530874c591 +SHA256 (KDE/kdenetwork-3.5.6.tar.bz2) = 786e6c25d5cba4ed1eeac947c5554d7fe57de593abf6551c58c178043b82475e +SIZE (KDE/kdenetwork-3.5.6.tar.bz2) = 9245468 diff --git a/net/kdenetwork3/files/patch-post-3.5.5-kdenetwork-ksirc.diff b/net/kdenetwork3/files/patch-post-3.5.5-kdenetwork-ksirc.diff deleted file mode 100644 index db3f82833b43..000000000000 --- a/net/kdenetwork3/files/patch-post-3.5.5-kdenetwork-ksirc.diff +++ /dev/null @@ -1,26 +0,0 @@ ------------------------------------------------------------------------- -r621124 | mueller | 2007-01-08 11:33:10 +0100 (Mon, 08 Jan 2007) | 2 lines - -add fix for CVE-2006-6811 - ------------------------------------------------------------------------- -Index: ksirc/iocontroller.cpp -=================================================================== ---- ksirc/iocontroller.cpp (revision 621123) -+++ ksirc/iocontroller.cpp (revision 621124) -@@ -266,13 +266,13 @@ void KSircIOController::stdout_read(KPro - if(ksopts->autoCreateWin == TRUE && line[0] != '`' && line[1] != '#' && line[1] != '&' && noticeCreate) { - //kdDebug(5008) << "Creating window for: " << qsname << " because of: " << line.data() << endl; - ksircproc->new_toplevel(KSircChannel(ksircproc->serverName(), qsname)); -- assert(ksircproc->TopList[qsname] != 0x0); - } -- else{ -+ if (!ksircproc->TopList[qsname]) { - qsname = "!default"; - if(line[0] == '`') - qsname = "!discard"; - } -+ assert(ksircproc->TopList[qsname]); - } - - ksircproc->TopList[qsname]->sirc_receive(line); |