Many new features and refinements. Notable changes include: * Konqueror is the second web browser to pass the Acid2 CSS test, ahead of Firefox and Internet Explorer * Konqueror can also now free web pages from adverts with its ad-block feature * SuperKaramba is included in KDE, providing well-integrated and easy-to-install widgets for the user's desktop * Kopete has support for MSN and Yahoo! webcams * The edutainment module has three new applications (KGeography, Kanagram and blinKen), and has seen huge improvements in Kalzium
21 lines
695 B
Text
21 lines
695 B
Text
$NetBSD: patch-bc,v 1.4 2005/12/11 11:01:48 markd Exp $
|
|
|
|
--- kdeeject/kdeeject.orig 2005-09-10 20:25:38.000000000 +1200
|
|
+++ kdeeject/kdeeject
|
|
@@ -1,6 +1,6 @@
|
|
#!/bin/sh
|
|
# Script used by kdesktop to eject a removable media (CDROM/Tape/SCSI/Floppy)
|
|
-# Relies on the 'eject' program, 'cdcontrol' on *BSD
|
|
+# Relies on the 'eject' program, 'cdcontrol' on FreeBSD
|
|
#
|
|
# Copyright GPL v2 by David Faure <david@mandrakesoft.com>
|
|
#
|
|
@@ -17,7 +17,7 @@ if test $# -ge 1 -a "$1" != "--help"; th
|
|
OpenBSD)
|
|
cdio -f $1 eject >/dev/null 2>&1
|
|
;;
|
|
- *BSD)
|
|
+ FreeBSD)
|
|
dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'`
|
|
cdcontrol -f $dev eject >/dev/null 2>&1
|
|
;;
|