openbsd-ports/www/konqueror-embedded/files/kde-config
espie 601c270142 Update to a ways more recent snapshot, that uses QT3.
Hack at it to compile without kdelibs installed.

Quite a few nits to fix, including some bad issue with https...

discussed with brad@
2006-10-20 16:07:24 +00:00

20 lines
307 B
Bash
Executable File

#! /bin/sh
# $OpenBSD: kde-config,v 1.1 2006/10/20 16:07:24 espie Exp $
KONQ=/usr/local
case $1 in
--prefix)
echo ${KONQ};;
--install)
shift
case $1 in
html)
echo ${KONQ}/share/doc/HTML;;
esac;;
--lib-suffix)
echo "";;
--version)
echo "Qt: 3.3.5"
echo "KDE: 3.5.5"
echo "kde-config: 1.0";;
esac