Finally update to a kde2 version.
Those guys are lame, see patch-kdbg_main_cpp One less objection for ditching kde1 entirely...
This commit is contained in:
parent
96e05217b6
commit
c6df48e4ee
@ -1,12 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2001/01/22 21:55:27 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2001/04/21 11:39:19 espie Exp $
|
||||
|
||||
DISTNAME= kdbg-1.0.2
|
||||
COMMENT= "graphical debugger for kde"
|
||||
DISTNAME= kdbg-1.2.0
|
||||
CATEGORIES= devel
|
||||
NEED_VERSION= 1.312
|
||||
HOMEPAGE= http://members.nextra.at/johsixt/kdbg.html
|
||||
|
||||
MAINTAINER= ports@openbsd.org
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
@ -15,15 +14,21 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
MASTER_SITES= ftp://ftp.kde.org/pub/kde/stable/1.1.2/apps/ide/ \
|
||||
ftp://ftp.eudaptics.com/pub/people/jsixt/
|
||||
|
||||
LIB_DEPENDS= qt.1.45::x11/qt \
|
||||
kdecore.1::x11/kde/libs
|
||||
LIB_DEPENDS= qt.2.::x11/qt2 \
|
||||
kdecore.3.::x11/kde/libs2
|
||||
|
||||
CONFIGURE_STYLE= gnu
|
||||
USE_GMAKE= Yes
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
||||
--with-qt-libraries="${LOCALBASE}/lib" \
|
||||
--with-qt-includes="${LOCALBASE}/include/X11/qt" \
|
||||
--with-qt-libraries="${LOCALBASE}/lib/qt2" \
|
||||
--with-qt-includes="${LOCALBASE}/include/X11/qt2" \
|
||||
--with-extra-includes="${LOCALBASE}/include" \
|
||||
--with-extra-libs="${LOCALBASE}/lib"
|
||||
--with-extra-libs="${LOCALBASE}/lib" \
|
||||
--with-kde-version=2
|
||||
|
||||
# --enable-debug \
|
||||
# --disable-nls \
|
||||
# --enable-lots-a-trace --with-transcript=transcript
|
||||
|
||||
MAKE_FLAGS=MOC=moc2
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (kdbg-1.0.2.tar.gz) = f1d78640bd7cef1e6a26f15067f9030e
|
||||
RMD160 (kdbg-1.0.2.tar.gz) = 2e540bf3aeaa152f25e716b6e829c9e9f355e1ac
|
||||
SHA1 (kdbg-1.0.2.tar.gz) = 1936ec257f61813cb475e702b71fd6ae36aa90cf
|
||||
MD5 (kdbg-1.2.0.tar.gz) = bc01765e0b0a02331144b558346467e1
|
||||
RMD160 (kdbg-1.2.0.tar.gz) = 39e551916085e448b6b343db821c66a26afa5907
|
||||
SHA1 (kdbg-1.2.0.tar.gz) = 96478f07b92cb859af26e6c3d9dd34d980814601
|
||||
|
12
devel/kdbg/patches/patch-kdbg_Makefile_in
Normal file
12
devel/kdbg/patches/patch-kdbg_Makefile_in
Normal file
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-kdbg_Makefile_in,v 1.1 2001/04/21 11:39:22 espie Exp $
|
||||
--- kdbg/Makefile.in.orig Sat Apr 21 04:40:50 2001
|
||||
+++ kdbg/Makefile.in Sat Apr 21 04:41:26 2001
|
||||
@@ -136,7 +136,7 @@ X_INCLUDES = @X_INCLUDES@
|
||||
X_LDFLAGS = @X_LDFLAGS@
|
||||
X_PRE_LIBS = @X_PRE_LIBS@
|
||||
all_includes = @all_includes@
|
||||
-all_libraries = @all_libraries@
|
||||
+all_libraries = $(QT_LDFLAGS) @all_libraries@
|
||||
kde_appsdir = @kde_appsdir@
|
||||
kde_bindir = @kde_bindir@
|
||||
kde_cgidir = @kde_cgidir@
|
14
devel/kdbg/patches/patch-kdbg_main_cpp
Normal file
14
devel/kdbg/patches/patch-kdbg_main_cpp
Normal file
@ -0,0 +1,14 @@
|
||||
$OpenBSD: patch-kdbg_main_cpp,v 1.1 2001/04/21 11:39:22 espie Exp $
|
||||
--- kdbg/main.cpp.orig Sat Apr 21 04:41:43 2001
|
||||
+++ kdbg/main.cpp Sat Apr 21 04:41:34 2001
|
||||
@@ -67,7 +67,9 @@ int main(int argc, char** argv)
|
||||
{ "t <file>", I18N_NOOP("transcript of conversation with the debugger"), 0 },
|
||||
{ "r <device>", I18N_NOOP("remote debugging via <device>"), 0 },
|
||||
{ "+[program]", I18N_NOOP("path of executable to debug"), 0 },
|
||||
- { "+[core]", I18N_NOOP("a core file to use"), 0}
|
||||
+ { "+[core]", I18N_NOOP("a core file to use"), 0},
|
||||
+ { 0, 0, 0 }
|
||||
+
|
||||
};
|
||||
KCmdLineArgs::addCmdLineOptions(options);
|
||||
|
13
devel/kdbg/patches/patch-kdbg_ttywnd_cpp
Normal file
13
devel/kdbg/patches/patch-kdbg_ttywnd_cpp
Normal file
@ -0,0 +1,13 @@
|
||||
$OpenBSD: patch-kdbg_ttywnd_cpp,v 1.1 2001/04/21 11:39:23 espie Exp $
|
||||
--- kdbg/ttywnd.cpp.orig Sat Apr 21 04:16:42 2001
|
||||
+++ kdbg/ttywnd.cpp Sat Apr 21 04:17:06 2001
|
||||
@@ -30,6 +30,9 @@
|
||||
#include <pty.h> /* openpty */
|
||||
#endif
|
||||
#include <errno.h>
|
||||
+#ifdef __OpenBSD__
|
||||
+#include <util.h>
|
||||
+#endif
|
||||
|
||||
#include "mydebug.h"
|
||||
|
@ -1 +0,0 @@
|
||||
graphical debugger for kde
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.2 2000/07/13 18:06:18 danh Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.3 2001/04/21 11:39:25 espie Exp $
|
||||
bin/kdbg
|
||||
share/applnk/Development/kdbg.kdelnk
|
||||
share/apps/kdbg/pics/brkcond.xpm
|
||||
@ -11,10 +11,17 @@ share/apps/kdbg/pics/pcinner.xpm
|
||||
share/apps/kdbg/pics/pcup.xpm
|
||||
share/apps/kdbg/pics/pgmfinish.xpm
|
||||
share/apps/kdbg/pics/pgmnext.xpm
|
||||
share/apps/kdbg/pics/pgmnexti.xpm
|
||||
share/apps/kdbg/pics/pgmrun.xpm
|
||||
share/apps/kdbg/pics/pgmstep.xpm
|
||||
share/apps/kdbg/pics/pgmstepi.xpm
|
||||
share/apps/kdbg/pics/pointer.xpm
|
||||
share/apps/kdbg/pics/regs.xpm
|
||||
share/apps/kdbg/pics/search.xpm
|
||||
share/apps/kdbg/pics/watch.xpm
|
||||
share/apps/kdbg/pics/watchcoded.xpm
|
||||
share/apps/kdbg/pics/watchdis.xpm
|
||||
share/apps/kdbg/pics/watchena.xpm
|
||||
share/apps/kdbg/types/X11.kdbgtt
|
||||
share/apps/kdbg/types/glib.kdbgtt
|
||||
share/apps/kdbg/types/gtk+.kdbgtt
|
||||
@ -22,31 +29,140 @@ share/apps/kdbg/types/kdecore.kdbgtt
|
||||
share/apps/kdbg/types/kdecore3.kdbgtt
|
||||
share/apps/kdbg/types/qt.kdbgtt
|
||||
share/apps/kdbg/types/qt2.kdbgtt
|
||||
share/doc/HTML/de/kdbg/argspwdenv.html
|
||||
share/doc/HTML/de/kdbg/breakptlist.html
|
||||
share/doc/HTML/de/kdbg/globaloptions.html
|
||||
share/doc/HTML/de/kdbg/howdoi.html
|
||||
share/doc/HTML/de/kdbg/index.html
|
||||
share/doc/HTML/de/kdbg/localvars.html
|
||||
share/doc/HTML/de/kdbg/memory.html
|
||||
share/doc/HTML/de/kdbg/pgmoutput.html
|
||||
share/doc/HTML/de/kdbg/pgmsettings.html
|
||||
share/doc/HTML/de/kdbg/registers.html
|
||||
share/doc/HTML/de/kdbg/sourcecode.html
|
||||
share/doc/HTML/de/kdbg/stack.html
|
||||
share/doc/HTML/de/kdbg/threads.html
|
||||
share/doc/HTML/de/kdbg/tips.html
|
||||
share/doc/HTML/de/kdbg/types.html
|
||||
share/doc/HTML/de/kdbg/watches.html
|
||||
share/doc/HTML/en/kdbg/argspwdenv.html
|
||||
share/doc/HTML/en/kdbg/breakptlist.html
|
||||
share/doc/HTML/en/kdbg/globaloptions.html
|
||||
share/doc/HTML/en/kdbg/howdoi.html
|
||||
share/doc/HTML/en/kdbg/index.html
|
||||
share/doc/HTML/en/kdbg/localvars.html
|
||||
share/doc/HTML/en/kdbg/memory.html
|
||||
share/doc/HTML/en/kdbg/pgmoutput.html
|
||||
share/doc/HTML/en/kdbg/pgmsettings.html
|
||||
share/doc/HTML/en/kdbg/registers.html
|
||||
share/doc/HTML/en/kdbg/sourcecode.html
|
||||
share/doc/HTML/en/kdbg/stack.html
|
||||
share/doc/HTML/en/kdbg/threads.html
|
||||
share/doc/HTML/en/kdbg/tips.html
|
||||
share/doc/HTML/en/kdbg/types.html
|
||||
share/doc/HTML/en/kdbg/watches.html
|
||||
share/doc/HTML/ru/kdbg/argspwdenv.html
|
||||
share/doc/HTML/ru/kdbg/breakptlist.html
|
||||
share/doc/HTML/ru/kdbg/globaloptions.html
|
||||
share/doc/HTML/ru/kdbg/howdoi.html
|
||||
share/doc/HTML/ru/kdbg/index.html
|
||||
share/doc/HTML/ru/kdbg/localvars.html
|
||||
share/doc/HTML/ru/kdbg/memory.html
|
||||
share/doc/HTML/ru/kdbg/pgmoutput.html
|
||||
share/doc/HTML/ru/kdbg/pgmsettings.html
|
||||
share/doc/HTML/ru/kdbg/registers.html
|
||||
share/doc/HTML/ru/kdbg/sourcecode.html
|
||||
share/doc/HTML/ru/kdbg/stack.html
|
||||
share/doc/HTML/ru/kdbg/threads.html
|
||||
share/doc/HTML/ru/kdbg/tips.html
|
||||
share/doc/HTML/ru/kdbg/types.html
|
||||
share/icons/kdbg.xpm
|
||||
share/icons/mini/mini-kdbg.xpm
|
||||
share/doc/HTML/ru/kdbg/watches.html
|
||||
share/icons/hicolor/16x16/apps/kdbg.png
|
||||
share/icons/hicolor/32x32/apps/kdbg.png
|
||||
share/icons/locolor/16x16/apps/kdbg.png
|
||||
share/icons/locolor/32x32/apps/kdbg.png
|
||||
share/locale/cs/LC_MESSAGES/kdbg.mo
|
||||
share/locale/da/LC_MESSAGES/kdbg.mo
|
||||
share/locale/de/LC_MESSAGES/kdbg.mo
|
||||
share/locale/es/LC_MESSAGES/kdbg.mo
|
||||
share/locale/fr/LC_MESSAGES/kdbg.mo
|
||||
share/locale/hr/LC_MESSAGES/kdbg.mo
|
||||
share/locale/hu/LC_MESSAGES/kdbg.mo
|
||||
share/locale/it/LC_MESSAGES/kdbg.mo
|
||||
share/locale/ja/LC_MESSAGES/kdbg.mo
|
||||
share/locale/no/LC_MESSAGES/kdbg.mo
|
||||
share/locale/no_NY/LC_MESSAGES/kdbg.mo
|
||||
share/locale/pl/LC_MESSAGES/kdbg.mo
|
||||
share/locale/pt/LC_MESSAGES/kdbg.mo
|
||||
share/locale/ro/LC_MESSAGES/kdbg.mo
|
||||
share/locale/ru/LC_MESSAGES/kdbg.mo
|
||||
share/locale/sk/LC_MESSAGES/kdbg.mo
|
||||
share/locale/sr/LC_MESSAGES/kdbg.mo
|
||||
share/locale/sv/LC_MESSAGES/kdbg.mo
|
||||
share/locale/tr/LC_MESSAGES/kdbg.mo
|
||||
share/locale/zh_CN.GB2312/LC_MESSAGES/kdbg.mo
|
||||
@dirrm share/locale/zh_CN.GB2312/LC_MESSAGES
|
||||
@dirrm share/locale/zh_CN.GB2312
|
||||
@dirrm share/locale/tr/LC_MESSAGES
|
||||
@dirrm share/locale/tr
|
||||
@dirrm share/locale/sv/LC_MESSAGES
|
||||
@dirrm share/locale/sv
|
||||
@dirrm share/locale/sr/LC_MESSAGES
|
||||
@dirrm share/locale/sr
|
||||
@dirrm share/locale/sk/LC_MESSAGES
|
||||
@dirrm share/locale/sk
|
||||
@dirrm share/locale/ru/LC_MESSAGES
|
||||
@dirrm share/locale/ru
|
||||
@dirrm share/locale/ro/LC_MESSAGES
|
||||
@dirrm share/locale/ro
|
||||
@dirrm share/locale/pt/LC_MESSAGES
|
||||
@dirrm share/locale/pt
|
||||
@dirrm share/locale/pl/LC_MESSAGES
|
||||
@dirrm share/locale/pl
|
||||
@dirrm share/locale/no_NY/LC_MESSAGES
|
||||
@dirrm share/locale/no_NY
|
||||
@dirrm share/locale/no/LC_MESSAGES
|
||||
@dirrm share/locale/no
|
||||
@dirrm share/locale/ja/LC_MESSAGES
|
||||
@dirrm share/locale/ja
|
||||
@dirrm share/locale/it/LC_MESSAGES
|
||||
@dirrm share/locale/it
|
||||
@dirrm share/locale/hu/LC_MESSAGES
|
||||
@dirrm share/locale/hu
|
||||
@dirrm share/locale/hr/LC_MESSAGES
|
||||
@dirrm share/locale/hr
|
||||
@dirrm share/locale/fr/LC_MESSAGES
|
||||
@dirrm share/locale/fr
|
||||
@dirrm share/locale/es/LC_MESSAGES
|
||||
@dirrm share/locale/es
|
||||
@dirrm share/locale/de/LC_MESSAGES
|
||||
@dirrm share/locale/de
|
||||
@dirrm share/locale/da/LC_MESSAGES
|
||||
@dirrm share/locale/da
|
||||
@dirrm share/locale/cs/LC_MESSAGES
|
||||
@dirrm share/locale/cs
|
||||
@dirrm share/locale
|
||||
@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/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/ru/kdbg
|
||||
@dirrm share/doc/HTML/ru
|
||||
@dirrm share/doc/HTML/en/kdbg
|
||||
@dirrm share/doc/HTML/en
|
||||
@dirrm share/doc/HTML/de/kdbg
|
||||
@dirrm share/doc/HTML/de
|
||||
@dirrm share/doc/HTML
|
||||
@dirrm share/apps/kdbg/types
|
||||
@dirrm share/apps/kdbg/pics
|
||||
@dirrm share/apps/kdbg
|
||||
@dirrm share/apps
|
||||
@dirrm share/applnk/Development
|
||||
@dirrm share/applnk
|
||||
|
Loading…
Reference in New Issue
Block a user