601c270142
Hack at it to compile without kdelibs installed. Quite a few nits to fix, including some bad issue with https... discussed with brad@
20 lines
307 B
Bash
Executable File
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
|