kdeutils compiles as well...

This commit is contained in:
espie 2002-04-04 14:23:48 +00:00
parent 0fbf61da8b
commit c2e19104df
10 changed files with 487 additions and 0 deletions

69
x11/kde/utils3/Makefile Normal file
View File

@ -0,0 +1,69 @@
# $OpenBSD: Makefile,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
COMMENT= "X11 toolkit, utilities"
CATEGORIES= x11 x11/kde
NEED_VERSION= 1.504
VERSION= 3.0
DISTNAME= kdeutils-${VERSION}
DIST_SUBDIR= kde
HOMEPAGE= http://www.kde.org
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${VERSION}/src
EXTRACT_SUFX= .tar.bz2
# Parts of kde want shared libraries to work, as some symbols are
# duplicated over the place.
NOT_FOR_ARCHS=${NO_SHARED_ARCHS}
MODULES=qt3
#LIB_DEPENDS= kdecore.4,DCOP,kabc,kdefx,kdeprint,kdesu,kdeui,khtml,kio,kjava,kparts,kspell,vcard::x11/kde/libs3
#BUILD_DEPENDS= ::audio/lame
# for kaddressbook
#RUN_DEPENDS+= ::x11/kde/base3
CONFIGURE_STYLE= autoconf
AUTOCONF_NEW= Yes
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/admin
CONFIGURE_ARGS= ${MODQT_CONFIGURE_ARGS}
CONFIGURE_ARGS+= --with-extra-libs=${LOCALBASE}/lib
CONFIGURE_ARGS+= --with-extra-includes=${LOCALBASE}/include
CONFIGURE_ARGS+= --with-xdmdir=/var/X11/kdm
CONFIGURE_ARGS+= --disable-mt
CONFIGURE_ARGS+= --disable-threading
CONFIGURE_ARGS+= --disable-debug
CONFIGURE_ARGS+= --enable-final
#CONFIGURE_ARGS+= --enable-debug
#CONFIGURE_ARGS+= --without-motif
#CONFIGURE_ARGS+=--enable-static --enable-debug --disable-shared
PATCH_LIST=${PORTSDIR}/x11/kde/arts3/patches/p-* patch-*
# Not yet, too much time to compile
#CONFIGURE_ARGS+= --enable-static
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
USE_GMAKE= Yes
CONFIGURE_ENV= RUN_KAPPFINDER=no KDEDIR=${LOCALBASE}
CONFIGURE_ENV+= ac_aux_files=''
MAKE_ENV= ${CONFIGURE_ENV}
PORTHOME=${WRKDIR}
# Ensure qt will always be at the front
MAKE_FLAGS=CXXLD='--tag CXX ${CXX} -L${MODQT_LIBDIR}'
MAKE_FLAGS+=LAMEDIR='${LAMEDIR}'
FAKE_FLAGS=DESTDIR=${WRKINST} TAR=tar
# GPL
# Note that lame is not a problem, since kdebase is packaged with a
# stub lame library which does nothing, and can be overriden with a
# live one later.
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
.include <bsd.port.mk>

3
x11/kde/utils3/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (kde/kdeutils-3.0.tar.bz2) = 25df70632935464d9c4ca011ab9d22c2
RMD160 (kde/kdeutils-3.0.tar.bz2) = 841e65bf2f122d117c37428542dbe11eb52c9fd8
SHA1 (kde/kdeutils-3.0.tar.bz2) = f5b9738fbd55d6888f8158a78cf4e69090a35745

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-khexedit_chartabledialog_cc,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
--- khexedit/chartabledialog.cc.orig Thu Apr 4 15:31:17 2002
+++ khexedit/chartabledialog.cc Thu Apr 4 15:39:19 2002
@@ -18,7 +18,14 @@
*
*/
+#ifdef __OpenBSD__
+#include <float.h>
+#include <limits.h>
+#include <math.h>
+#define MAXINT INT_MAX
+#else
#include <values.h>
+#endif
#include <qlabel.h>
#include <qheader.h>

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-khexedit_dialog_cc,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
--- khexedit/dialog.cc.orig Thu Apr 4 15:31:17 2002
+++ khexedit/dialog.cc Thu Apr 4 15:39:06 2002
@@ -20,7 +20,14 @@
#include <ctype.h>
#include <iostream>
+#ifdef __OpenBSD__
+#include <float.h>
+#include <limits.h>
+#include <math.h>
+#define MAXINT INT_MAX
+#else
#include <values.h>
+#endif
#include <qbuttongroup.h>
#include <qfileinfo.h>

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-khexedit_exportdialog_cc,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
--- khexedit/exportdialog.cc.orig Thu Apr 4 15:31:17 2002
+++ khexedit/exportdialog.cc Thu Apr 4 15:39:22 2002
@@ -18,7 +18,14 @@
*
*/
+#ifdef __OpenBSD__
+#include <float.h>
+#include <limits.h>
+#include <math.h>
+#define MAXINT INT_MAX
+#else
#include <values.h>
+#endif
#include <qbuttongroup.h>
#include <qlineedit.h>

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-khexedit_optiondialog_cc,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
--- khexedit/optiondialog.cc.orig Thu Apr 4 15:31:17 2002
+++ khexedit/optiondialog.cc Thu Apr 4 15:39:13 2002
@@ -23,7 +23,14 @@
#include <qvbuttongroup.h>
#include <qpainter.h>
+#ifdef __OpenBSD__
+#include <float.h>
+#include <limits.h>
+#include <math.h>
+#define MAXINT INT_MAX
+#else
#include <values.h>
+#endif
#include <qcheckbox.h>
#include <qlayout.h>

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-khexedit_printerdialog_cc,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
--- khexedit/printerdialog.cc.orig Thu Apr 4 15:31:17 2002
+++ khexedit/printerdialog.cc Thu Apr 4 15:39:17 2002
@@ -18,7 +18,14 @@
*
*/
+#ifdef __OpenBSD__
+#include <float.h>
+#include <limits.h>
+#include <math.h>
+#define MAXINT INT_MAX
+#else
#include <values.h>
+#endif
#include <qbuttongroup.h>
#include <qfileinfo.h>

26
x11/kde/utils3/pkg/DESCR Normal file
View File

@ -0,0 +1,26 @@
Various kde applications:
* ark: manager for compressed files and archives
* kab: address book
* karm: tracks time spend per task or project
* kcalc: scientific calculator
* kcharselect: select special characters from any fonts and put them into
the clipboard
* charselectapplet: dito, but as a Kicker applet
* kcardtools:
* kdepasswd: like 'passwd', a graphical password changer
* kdessh: front end to ssh
* kdf: like 'df', a graphical free disk space viewer
* kedit: a simple text editor, without formatting like bold, italics etc
* kfloppy: format a floppy disks with this app
* khexedit: binary file editor
* kjots: manages several "books" with a subject and notes
* klaptopdaemon: battery and power management, including KControl plugins
* kljettool: configure a HL LaserJet from KDE
* klpq: front end to 'lpq', 'lprm' and 'lpc'
* klprfax: send faxes by printing to a lpr device, needs efax and ghostscript
* knotes: paste yellow notes all over your screen, virtually of course
* kpm: combines 'ps', 'top' and 'kill' into a visual process watcher
* kregexpeditor: graphical regular expression editor
* ktimer: execute programs after some time

View File

@ -0,0 +1,11 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
lib/kde3/libkcharselectapplet.so.1.0
lib/kde3/libkcm_kdf.so.0.0
lib/kde3/libkcm_laptop.so.0.0
lib/kde3/libkedit.so.0.0
lib/kde3/libkregexpeditorgui.so.0.0
lib/libark.so.1.0
lib/libkcalc.so.0.0
lib/libklaptopdaemon.so.0.0
DYNLIBDIR(%D/lib)
NEWDYNLIBDIR(%D/lib/kde3)

288
x11/kde/utils3/pkg/PLIST Normal file
View File

@ -0,0 +1,288 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2002/04/04 14:23:48 espie Exp $
bin/ark
bin/efax
bin/efix
bin/fax
bin/kcalc
bin/kcharselect
bin/kdepasswd
bin/kdessh
bin/kdf
bin/kedit
bin/kfloppy
bin/khexedit
bin/kjots
bin/klaptopdaemon
bin/kljettool
bin/klpq
bin/klprfax
bin/klprfax_filter
bin/klprfax_lpd
bin/ktimer
bin/kwikdisk
include/kmultiformlistbox.h
include/kmultiformlistboxentry.h
include/kmultiformlistboxfactory.h
include/kwidgetstreamer.h
lib/kcalc.la
lib/kde3/kcharselectapplet.la
lib/kde3/kcm_kdf.la
lib/kde3/kcm_laptop.la
lib/kde3/kedit.la
lib/kde3/libkregexpeditorgui.la
lib/klaptopdaemon.la
lib/libark.la
man/man1/efax.1
man/man1/efix.1
man/man1/fax.1
share/applnk/Editors/KEdit.desktop
share/applnk/Settings/Information/kcmdf.desktop
share/applnk/Settings/Information/pcmcia.desktop
share/applnk/Settings/PowerControl/battery.desktop
share/applnk/Settings/PowerControl/bwarning.desktop
share/applnk/Settings/PowerControl/cwarning.desktop
share/applnk/Settings/PowerControl/power.desktop
share/applnk/System/kdf.desktop
share/applnk/System/kwikdisk.desktop
share/applnk/Utilities/KCharSelect.desktop
share/applnk/Utilities/KFloppy.desktop
share/applnk/Utilities/KLJetTool.desktop
share/applnk/Utilities/KLpq.desktop
share/applnk/Utilities/Kjots.desktop
share/applnk/Utilities/ark.desktop
share/applnk/Utilities/kcalc.desktop
share/applnk/Utilities/kdepasswd.desktop
share/applnk/Utilities/khexedit.desktop
share/applnk/Utilities/klprfax.desktop
share/applnk/Utilities/ktimer.desktop
share/apps/ark/ark_part.rc
share/apps/ark/arkui.rc
share/apps/ark/icons/hicolor/22x22/actions/ark_adddir.png
share/apps/ark/icons/hicolor/22x22/actions/ark_addfile.png
share/apps/ark/icons/hicolor/22x22/actions/ark_delete.png
share/apps/ark/icons/hicolor/22x22/actions/ark_extract.png
share/apps/ark/icons/hicolor/22x22/actions/ark_help.png
share/apps/ark/icons/hicolor/22x22/actions/ark_new.png
share/apps/ark/icons/hicolor/22x22/actions/ark_open.png
share/apps/ark/icons/hicolor/22x22/actions/ark_options.png
share/apps/ark/icons/hicolor/22x22/actions/ark_selectall.png
share/apps/ark/icons/hicolor/22x22/actions/ark_view.png
share/apps/kdf/pics/delete.png
share/apps/kdf/pics/tick.png
share/apps/kedit/keditui.rc
share/apps/khexedit/toolbar/hexdrag.png
share/apps/khexedit/toolbar/hexmask.png
share/apps/khexedit/toolbar/hexwrite.png
share/apps/kicker/applets/kcharselectapplet.desktop
share/apps/kjots/pics/filedel.png
share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_charge.png
share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nobattery.png
share/apps/klaptopdaemon/icons/hicolor/16x16/actions/laptop_nocharge.png
share/apps/klaptopdaemon/icons/hicolor/16x16/actions/power.png
share/apps/klaptopdaemon/icons/hicolor/32x32/actions/power.png
share/apps/kljettool/pics/kljetlogo.png
share/apps/konqueror/servicemenus/arkservicemenu.desktop
share/apps/kregexpeditor/pics/altn.png
share/apps/kregexpeditor/pics/anychar.png
share/apps/kregexpeditor/pics/begline.png
share/apps/kregexpeditor/pics/characters.png
share/apps/kregexpeditor/pics/compound.png
share/apps/kregexpeditor/pics/endline.png
share/apps/kregexpeditor/pics/error.png
share/apps/kregexpeditor/pics/neglookahead.png
share/apps/kregexpeditor/pics/nonwordboundary.png
share/apps/kregexpeditor/pics/poslookahead.png
share/apps/kregexpeditor/pics/repeat.png
share/apps/kregexpeditor/pics/select.png
share/apps/kregexpeditor/pics/text.png
share/apps/kregexpeditor/pics/wordboundary.png
share/apps/kregexpeditor/predefined/general/anything.regexp
share/apps/kregexpeditor/predefined/general/spaces.regexp
share/doc/HTML/en/KRegExpEditor/altn.png
share/doc/HTML/en/KRegExpEditor/altntool.png
share/doc/HTML/en/KRegExpEditor/anychar.png
share/doc/HTML/en/KRegExpEditor/anychartool.png
share/doc/HTML/en/KRegExpEditor/begline.png
share/doc/HTML/en/KRegExpEditor/boundarytools.png
share/doc/HTML/en/KRegExpEditor/characters.png
share/doc/HTML/en/KRegExpEditor/charactertool.png
share/doc/HTML/en/KRegExpEditor/common
share/doc/HTML/en/KRegExpEditor/compound.png
share/doc/HTML/en/KRegExpEditor/compoundtool.png
share/doc/HTML/en/KRegExpEditor/endline.png
share/doc/HTML/en/KRegExpEditor/index.cache.bz2
share/doc/HTML/en/KRegExpEditor/index.docbook
share/doc/HTML/en/KRegExpEditor/linestartendtool.png
share/doc/HTML/en/KRegExpEditor/lookaheadtools.png
share/doc/HTML/en/KRegExpEditor/neglookahead.png
share/doc/HTML/en/KRegExpEditor/nonwordboundary.png
share/doc/HTML/en/KRegExpEditor/poslookahead.png
share/doc/HTML/en/KRegExpEditor/repeat.png
share/doc/HTML/en/KRegExpEditor/repeattool.png
share/doc/HTML/en/KRegExpEditor/select.png
share/doc/HTML/en/KRegExpEditor/text.png
share/doc/HTML/en/KRegExpEditor/texttool.png
share/doc/HTML/en/KRegExpEditor/theEditor.png
share/doc/HTML/en/KRegExpEditor/wordboundary.png
share/doc/HTML/en/ark/common
share/doc/HTML/en/ark/index.cache.bz2
share/doc/HTML/en/ark/index.docbook
share/doc/HTML/en/kab/common
share/doc/HTML/en/kab/index.cache.bz2
share/doc/HTML/en/kab/index.docbook
share/doc/HTML/en/kab/kab-edit.png
share/doc/HTML/en/kab/kab-using.png
share/doc/HTML/en/kcalc/common
share/doc/HTML/en/kcalc/index.cache.bz2
share/doc/HTML/en/kcalc/index.docbook
share/doc/HTML/en/kcalc/kcalc_on_Aix.txt
share/doc/HTML/en/kcalc/kcalc_on_OSF.txt
share/doc/HTML/en/kdf/common
share/doc/HTML/en/kdf/index.cache.bz2
share/doc/HTML/en/kdf/index.docbook
share/doc/HTML/en/kdf/kdf.png
share/doc/HTML/en/kdf/kdf_config.png
share/doc/HTML/en/kedit/common
share/doc/HTML/en/kedit/index.cache.bz2
share/doc/HTML/en/kedit/index.docbook
share/doc/HTML/en/kfloppy/common
share/doc/HTML/en/kfloppy/index.cache.bz2
share/doc/HTML/en/kfloppy/index.docbook
share/doc/HTML/en/khexedit/common
share/doc/HTML/en/khexedit/index.cache.bz2
share/doc/HTML/en/khexedit/index.docbook
share/doc/HTML/en/khexedit/khexedit1.png
share/doc/HTML/en/kjots/common
share/doc/HTML/en/kjots/index.cache.bz2
share/doc/HTML/en/kjots/index.docbook
share/doc/HTML/en/kljettool/README
share/doc/HTML/en/kljettool/common
share/doc/HTML/en/kljettool/djcdoscommands.txt
share/doc/HTML/en/kljettool/filter
share/doc/HTML/en/kljettool/hp690c.zip
share/doc/HTML/en/kljettool/index.cache.bz2
share/doc/HTML/en/kljettool/index.docbook
share/doc/HTML/en/kljettool/magic
share/doc/HTML/en/kljettool/screenshot.png
share/doc/HTML/en/klpq/common
share/doc/HTML/en/klpq/index.cache.bz2
share/doc/HTML/en/klpq/index.docbook
share/doc/HTML/en/klprfax/common
share/doc/HTML/en/klprfax/index.cache.bz2
share/doc/HTML/en/klprfax/index.docbook
share/icons/hicolor/16x16/apps/ark.png
share/icons/hicolor/16x16/apps/kcalc.png
share/icons/hicolor/16x16/apps/kcharselect.png
share/icons/hicolor/16x16/apps/kcmdf.png
share/icons/hicolor/16x16/apps/kdf.png
share/icons/hicolor/16x16/apps/kedit.png
share/icons/hicolor/16x16/apps/kfloppy.png
share/icons/hicolor/16x16/apps/khexedit.png
share/icons/hicolor/16x16/apps/kjots.png
share/icons/hicolor/16x16/apps/klaptopdaemon.png
share/icons/hicolor/16x16/apps/kljettool.png
share/icons/hicolor/16x16/apps/klpq.png
share/icons/hicolor/16x16/apps/klprfax.png
share/icons/hicolor/16x16/apps/kwikdisk.png
share/icons/hicolor/16x16/apps/laptop_battery.png
share/icons/hicolor/16x16/apps/laptop_pcmcia.png
share/icons/hicolor/32x32/apps/ark.png
share/icons/hicolor/32x32/apps/kcalc.png
share/icons/hicolor/32x32/apps/kcmdf.png
share/icons/hicolor/32x32/apps/kdf.png
share/icons/hicolor/32x32/apps/kedit.png
share/icons/hicolor/32x32/apps/kfloppy.png
share/icons/hicolor/32x32/apps/khexedit.png
share/icons/hicolor/32x32/apps/kjots.png
share/icons/hicolor/32x32/apps/kljettool.png
share/icons/hicolor/32x32/apps/klpq.png
share/icons/hicolor/32x32/apps/klprfax.png
share/icons/hicolor/32x32/apps/kwikdisk.png
share/icons/hicolor/32x32/apps/laptop_battery.png
share/icons/hicolor/32x32/apps/laptop_pcmcia.png
share/icons/hicolor/48x48/apps/ark.png
share/icons/hicolor/48x48/apps/kcalc.png
share/icons/hicolor/48x48/apps/kcharselect.png
share/icons/hicolor/48x48/apps/kedit.png
share/icons/hicolor/48x48/apps/kfloppy.png
share/icons/hicolor/48x48/apps/khexedit.png
share/icons/hicolor/48x48/apps/kjots.png
share/icons/hicolor/48x48/apps/kljettool.png
share/icons/hicolor/48x48/apps/klpq.png
share/icons/hicolor/48x48/apps/laptop_battery.png
share/icons/hicolor/48x48/apps/laptop_pcmcia.png
share/icons/locolor/16x16/apps/klprfax.png
share/icons/locolor/32x32/apps/klprfax.png
share/services/arkpart.desktop
share/services/klaptopdaemon.desktop
share/services/kregexpeditorgui.desktop
%%SHARED%%
@dirrm share/services
@dirrm share/icons/locolor/32x32/apps
@dirrm share/icons/locolor/32x32
@dirrm share/icons/locolor/16x16/apps
@dirrm share/icons/locolor/16x16
@dirrm share/icons/locolor
@dirrm share/icons/hicolor/48x48/apps
@dirrm share/icons/hicolor/48x48
@dirrm share/icons/hicolor/32x32/apps
@dirrm share/icons/hicolor/32x32
@dirrm share/icons/hicolor/16x16/apps
@dirrm share/icons/hicolor/16x16
@dirrm share/icons/hicolor
@dirrm share/icons
@dirrm share/doc/HTML/en/klprfax
@dirrm share/doc/HTML/en/klpq
@dirrm share/doc/HTML/en/kljettool
@dirrm share/doc/HTML/en/kjots
@dirrm share/doc/HTML/en/khexedit
@dirrm share/doc/HTML/en/kfloppy
@dirrm share/doc/HTML/en/kedit
@dirrm share/doc/HTML/en/kdf
@dirrm share/doc/HTML/en/kcalc
@dirrm share/doc/HTML/en/kab
@dirrm share/doc/HTML/en/ark
@dirrm share/doc/HTML/en/KRegExpEditor
@dirrm share/doc/HTML/en
@dirrm share/doc/HTML
@dirrm share/apps/kregexpeditor/predefined/general
@dirrm share/apps/kregexpeditor/predefined
@dirrm share/apps/kregexpeditor/pics
@dirrm share/apps/kregexpeditor
@dirrm share/apps/konqueror/servicemenus
@dirrm share/apps/konqueror
@dirrm share/apps/kljettool/pics
@dirrm share/apps/kljettool
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32/actions
@dirrm share/apps/klaptopdaemon/icons/hicolor/32x32
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16/actions
@dirrm share/apps/klaptopdaemon/icons/hicolor/16x16
@dirrm share/apps/klaptopdaemon/icons/hicolor
@dirrm share/apps/klaptopdaemon/icons
@dirrm share/apps/klaptopdaemon
@dirrm share/apps/kjots/pics
@dirrm share/apps/kjots
@dirrm share/apps/kicker/applets
@dirrm share/apps/kicker
@dirrm share/apps/khexedit/toolbar
@dirrm share/apps/khexedit
@dirrm share/apps/kedit
@dirrm share/apps/kdf/pics
@dirrm share/apps/kdf
@exec mkdir -p %D/share/apps/kcalc/pics
@dirrm share/apps/kcalc/pics
@dirrm share/apps/kcalc
@dirrm share/apps/ark/icons/hicolor/22x22/actions
@dirrm share/apps/ark/icons/hicolor/22x22
@dirrm share/apps/ark/icons/hicolor
@dirrm share/apps/ark/icons
@dirrm share/apps/ark
@dirrm share/apps
@dirrm share/applnk/Utilities
@dirrm share/applnk/System
@dirrm share/applnk/Settings/PowerControl
@dirrm share/applnk/Settings/Information
@dirrm share/applnk/Settings
@dirrm share/applnk/Editors
@dirrm share/applnk
@dirrm lib/kde3