DaemonForums  

Go Back   DaemonForums > OpenBSD > OpenBSD Packages and Ports

OpenBSD Packages and Ports Installation and upgrading of packages and ports on OpenBSD.

Reply
 
Thread Tools Display Modes
  #1   (View Single Post)  
Old 8th July 2015
divadgnol67 divadgnol67 is offline
Fdisk Soldier
 
Join Date: Jul 2009
Posts: 79
Default KDE4 install

I need some help guys and gals.

I finally decided to use another DE other than fluxbox. KDE4 installed and post install went well (thanks jggimi for comments on other threads).

But for the life of me I cant figure out why i get the following message (I paraphrase) : pkg_scripts (absent) dbus_daemon avahi_daemon kdm

both dbus and avahi appear to be working corectly. I'm guessing my syntax is incorrect.

Any ideas?

Be happy to post exact message if needed.

Thanks
Reply With Quote
  #2   (View Single Post)  
Old 8th July 2015
divadgnol67 divadgnol67 is offline
Fdisk Soldier
 
Join Date: Jul 2009
Posts: 79
Default

Its the
(absent) part I don't understand....
Reply With Quote
  #3   (View Single Post)  
Old 8th July 2015
ibara ibara is offline
OpenBSD language porter
 
Join Date: Jan 2014
Posts: 783
Default

More is needed. What does your /etc/rc/rc.conf.local look like?
Reply With Quote
  #4   (View Single Post)  
Old 8th July 2015
divadgnol67 divadgnol67 is offline
Fdisk Soldier
 
Join Date: Jul 2009
Posts: 79
Default

ntpd_flags=
apmd_flags="-A"
xdm_flags=NO
multicast_hosts=YES

pkg_scripts="$pkg_scripts dbus_daemon avahi_daemon kdm"
Reply With Quote
  #5   (View Single Post)  
Old 8th July 2015
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

For 5.7, /etc/rc.conf and /etc/rc.conf.local are parsed for variable assignments. The use of "$pkg_scripts" recursion is no longer useful, or supported. This change was to support the deployment of the new rcctl(8) tool.

Eliminate $pkg_scripts from the last line. For example, you could use:
Code:
pkg_scripts=dbus_daemon avahi_daemon kdm
See the rc.conf(5) man page if this is not clear.
Reply With Quote
  #6   (View Single Post)  
Old 8th July 2015
shep shep is offline
Real Name: Scott
Arp Constable
 
Join Date: May 2008
Location: Dry and Dusty
Posts: 1,503
Default

Code:
pkg_scripts="$pkg_scripts dbus_daemon avahi_daemon kdm"
Your code is likely stopping at "$pkg_scripts". The correct syntax would be:
Code:
pkg_scripts="dbus_daemon avahi_daemon kdm"
Oops: Concurrent response w/ jggimi

Last edited by shep; 8th July 2015 at 01:58 PM. Reason: Concurrent response
Reply With Quote
  #7   (View Single Post)  
Old 8th July 2015
divadgnol67 divadgnol67 is offline
Fdisk Soldier
 
Join Date: Jul 2009
Posts: 79
Default

Thanks again, and again, and again.......
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
KDE4 Modular Xorg 1.6 starting KDE4 shep NetBSD Package System (pkgsrc) 4 16th November 2009 03:06 AM
Kde4 bsdnewbie999 OpenBSD General 3 19th March 2009 06:01 PM
KDE4 (4.2.0) error Calderon FreeBSD Ports and Packages 4 19th February 2009 11:03 AM
KDE4 buildind... lumiwa FreeBSD Ports and Packages 11 27th October 2008 05:18 AM
What is the status of KDE4? wubrgamer General software and network 10 24th September 2008 03:58 AM


All times are GMT. The time now is 08:55 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content copyright © 2007-2010, the authors
Daemon image copyright ©1988, Marshall Kirk McKusick