19078 /usr/ports/net/kdenetwork4 can not install - The FreeBSD Forums
The FreeBSD Forums  

Go Back   The FreeBSD Forums > Ports & Packages > Installation and Maintenance of FreeBSD Ports or Packages

Installation and Maintenance of FreeBSD Ports or Packages Installing and maintaining the FreeBSD Ports Collection or FreeBSD Packages (i.e. third party software).

Reply
 
Thread Tools Display Modes
  #1  
Old February 5th, 2009, 18:39
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default /usr/ports/net/kdenetwork4 can not install

I want install /usr/ports/net/kdenetwork4 but I see this error

Code:
===>  Installing for kdenetwork-4.1.4
===>   kdenetwork-4.1.4 depends on package: qca-ossl>=2.0.0.b3 - not found
===>    Verifying install for qca-ossl>=2.0.0.b3 in /usr/ports/security/qca-ossl
===>  Building for qca-ossl-2.0.0.b3
/usr/local/bin/qmake-qt4 -unix -o Makefile qca-ossl.pro
c++ -c -pipe -O2 -fno-strict-aliasing -pipe -Wall -W -fPIC -DOSSL_097 -DQT_NO_DEBUG -DQT_PLUGIN -DQT_CORE_LIB -DQT_SHARED -I/usr/local/share/qt4/mkspecs/freebsd-g++ -I. -I/usr/local/include/qt4/QtCore -I/usr/local/include/qt4/QtCore -I/usr/local/include/qt4 -I/usr/local/include/QtCrypto -I. -I. -I/usr/local/include -o qca-ossl.o qca-ossl.cpp
qca-ossl.cpp: In function 'X509_EXTENSION* opensslQCAPlugin::new_subject_key_id(X509*)':
qca-ossl.cpp:330: warning: deprecated conversion from string constant to 'char*'
qca-ossl.cpp: In member function 'virtual QCA::Provider::Context* opensslProvider::createContext(const QString&)':
qca-ossl.cpp:6815: error: 'EVP_whirlpool' was not declared in this scope
*** Error code 1

Stop in /usr/ports/security/qca-ossl/work/qca-ossl-2.0.0-beta3.
*** Error code 1

Stop in /usr/ports/security/qca-ossl.
*** Error code 1

Stop in /usr/ports/net/kdenetwork4.
Mostafa#
I do this with portmanger and portmaster but they can not install
Reply With Quote
  #2  
Old February 5th, 2009, 19:51
mecano mecano is offline
Junior Member
 
Join Date: Feb 2009
Location: France
Posts: 89
Thanks: 23
Thanked 7 Times in 5 Posts
Default

Your trouble should reside here
Code:
qca-ossl.cpp:6815: error: 'EVP_whirlpool' was not declared in this scope
it is lacking an EVP_whirlpool (variable) declaration
Reply With Quote
  #3  
Old February 7th, 2009, 06:57
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

Quote:
Originally Posted by mecano View Post
Your trouble should reside here
Code:
qca-ossl.cpp:6815: error: 'EVP_whirlpool' was not declared in this scope
it is lacking an EVP_whirlpool (variable) declaration
I install and denistall whirlpool but nothing happen again.
Reply With Quote
  #4  
Old February 7th, 2009, 11:49
mecano mecano is offline
Junior Member
 
Join Date: Feb 2009
Location: France
Posts: 89
Thanks: 23
Thanked 7 Times in 5 Posts
Default

It is more a problem with qca-ossl-2.0.0.b3 itself.
What the error said is that the variable EVP_whirpool was not defined anywhere and such can't be used. Typicaly variables are defined in .h source code header files.
If you know which value EVP_whirpool should have on your box you can look for a config.h and put it #define there.
Reply With Quote
  #5  
Old February 7th, 2009, 15:39
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

there is no another answer ?
Reply With Quote
  #6  
Old February 11th, 2009, 16:10
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

I have this problem again
and I can not install kde 4.2
what I must do
I search google and can not find anything
Reply With Quote
  #7  
Old February 11th, 2009, 16:19
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

I find this link

http://www.mail-archive.com/kde-free.../msg03671.html

in this link I see I can fix this problem with patch
but I do not know ,
I do not have experience with patch .
Reply With Quote
  #8  
Old February 11th, 2009, 17:01
fonz's Avatar
fonz fonz is offline
Moderator
 
Join Date: Nov 2008
Location: Apeldoorn, the Netherlands
Posts: 1,470
Thanks: 374
Thanked 241 Times in 214 Posts
Lightbulb

Quote:
Originally Posted by mfaridi View Post
I see I can fix this problem with patch
but I do not know , I do not have experience with patch .
Patch is fairly easy to use, see patch.
Basically, just download the file, place it in the right source dir (I don't know much about KDE but I guess you can figure that one out for yourself) and run % patch < file where file is of course the name of the patch file.

Hope this helps,

Alphons
__________________
Ken sent me.
Reply With Quote
  #9  
Old February 11th, 2009, 17:13
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

So what is patch ?
I see only text file
what format I must download ?
Reply With Quote
  #10  
Old February 11th, 2009, 17:17
fonz's Avatar
fonz fonz is offline
Moderator
 
Join Date: Nov 2008
Location: Apeldoorn, the Netherlands
Posts: 1,470
Thanks: 374
Thanked 241 Times in 214 Posts
Default

I just had a quick look at the link you mentioned and the patch is in the message itself.

You need to copy-paste the lines of code given in that message (the paragraph with all the + and - lines) into a text file. That will be your patchfile and you can apply it with the patch command.

Good luck,

Alphons
__________________
Ken sent me.
Reply With Quote
  #11  
Old February 11th, 2009, 17:18
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

So what is patch ?
I see only text file
what format I must download ?
Reply With Quote
  #12  
Old February 11th, 2009, 23:39
adox adox is offline
Junior Member
 
Join Date: Nov 2008
Location: Germany
Posts: 3
Thanks: 0
Thanked 1 Time in 1 Post
Default

@mfaridi> I had the same problem but i fix it with this patch -> http://4bit.ws/~dhn/patch-qca-ossl.cpp.

Code:
cd /usr/ports/security/qca-ossl
mkdir files
cd files
fetch http://4bit.ws/~dhn/patch-qca-ossl.cpp
cd ..
make clean
make install
- Dennis
Reply With Quote
The Following User Says Thank You to adox For This Useful Post:
mfaridi (February 14th, 2009)
  #13  
Old February 14th, 2009, 06:39
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

Quote:
Originally Posted by adox View Post
@mfaridi> I had the same problem but i fix it with this patch -> http://4bit.ws/~dhn/patch-qca-ossl.cpp.

Code:
cd /usr/ports/security/qca-ossl
mkdir files
cd files
fetch http://4bit.ws/~dhn/patch-qca-ossl.cpp
cd ..
make clean
make install
- Dennis
thanks
I solve this problem with your guide but I make file directory and go this link
http://mail.kde.org/pipermail/kde-fr...er/003994.html

and download attachment and rename it and put it file directory and run make install clean

All guys thanks
help me to solve this problem
Reply With Quote
  #14  
Old February 12th, 2009, 06:47
mfaridi's Avatar
mfaridi mfaridi is offline
Member
 
Join Date: Nov 2008
Location: Afghanistan
Posts: 622
Thanks: 161
Thanked 12 Times in 12 Posts
Default

this patch is make for make file or packages ?
for which one I must use it ?
Reply With Quote
  #15  
Old February 12th, 2009, 19:44
fonz's Avatar
fonz fonz is offline
Moderator
 
Join Date: Nov 2008
Location: Apeldoorn, the Netherlands
Posts: 1,470
Thanks: 374
Thanked 241 Times in 214 Posts
Default

As far as I can tell, this appears to be a patch for the source (i.e. port, not binary package) of qca-ossl (whatever that may be, I guess it's something KDE needs).

So, you should run patch in the directory containing the source code for qca-ossl, which is most likely /usr/ports/something/qca-ossl/work/ or a subdirectory thereof.

Alphons
__________________
Ken sent me.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
sparc64 net install problems. Dara Other Architectures 7 October 15th, 2010 21:46
if I install KDE4 package without going to /usr/ports/x11/kde4 mfaridi Installation and Maintenance of FreeBSD Ports or Packages 3 February 1st, 2009 14:59
15.6 Application of Jails & /usr/ports/distfiles paulfrottawa Installation and Maintenance of FreeBSD Ports or Packages 8 December 13th, 2008 16:57
/usr/ports/net-im/ejabberd & diabla-caffe-freebsd7 paulfrottawa Web & Network Services 5 December 12th, 2008 16:18
wireless card net-install DemoDoG Installing & Upgrading 2 December 2nd, 2008 21:34


All times are GMT +1. The time now is 19:00.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
The mark FreeBSD is a registered trademark of The FreeBSD Foundation and is used by The FreeBSD Project with the permission of The FreeBSD Foundation.
Web protection and acceleration provided by CloudFlare
0