diff options
Diffstat (limited to 'dilos/core/tdebindings')
26 files changed, 29 insertions, 584 deletions
diff --git a/dilos/core/tdebindings/debian/cdbs/debian-tde.mk b/dilos/core/tdebindings/debian/cdbs/debian-tde.mk deleted file mode 100644 index e2b1dc666..000000000 --- a/dilos/core/tdebindings/debian/cdbs/debian-tde.mk +++ /dev/null @@ -1,246 +0,0 @@ -# -*- mode: makefile; coding: utf-8 -*- -# Copyright © 2003 Christopher L Cheney <ccheney@debian.org> -# Copyright © 2019 TDE Team -# Description: A class for TDE packages; sets TDE environment variables, etc -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; either version 2, or (at -# your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -# 02111-1307 USA. - -ifndef _cdbs_bootstrap -_cdbs_scripts_path ?= /usr/lib/cdbs -_cdbs_rules_path ?= /usr/share/cdbs/1/rules -_cdbs_class_path ?= /usr/share/cdbs/1/class -endif - -ifndef _cdbs_class_debian-qt-kde -_cdbs_class_debian-qt-kde := 1 - -# for dh_icons -CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4) - -# Note: This _must_ be included before autotools.mk, or it won't work. -common-configure-arch common-configure-indep:: debian/stamp-cvs-make -debian/stamp-cvs-make: -ifndef _cdbs_class_cmake - cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in -ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" - cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh -endif -ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" - cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh -endif - $(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist; -endif - touch debian/stamp-cvs-make - -include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix) - -ifdef _cdbs_tarball_dir -DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE) -else -DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE) -endif - -ifndef _cdbs_class_cmake -include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix) -endif - -ifdef _cdbs_class_cmake -ifneq "$(wildcard /usr/bin/ninja)" "" -MAKE = ninja -v -DEB_MAKE_ENVVARS += DESTDIR=$(DEB_DESTDIR) -DEB_MAKE_INSTALL_TARGET = install -DEB_CMAKE_NORMAL_ARGS += -GNinja -endif -endif - -ifndef _cdbs_rules_patchsys_quilt -DEB_PATCHDIRS := debian/patches/common debian/patches -endif - -export kde_cgidir = \$${libdir}/cgi-bin -export kde_confdir = \$${sysconfdir}/trinity -export kde_htmldir = \$${datadir}/doc/tde/HTML - -DEB_KDE_ENABLE_FINAL := yes -DEB_INSTALL_DOCS_ALL := - -DEB_DH_MAKESHLIBS_ARGS_ALL := -V -DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib/$(DEB_HOST_MULTIARCH)) - -DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin -DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include" -DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el - -# The default gzip compressor has been changed in dpkg >= 1.17.0. -deb_default_compress = $(shell LANG=C dpkg-deb --version | head -n1 | \ - sed -e "s|.*version ||" -e "s| .*||" | \ - xargs -r dpkg --compare-versions 1.17.0 lt \ - && echo xz || echo gzip) -ifeq ($(deb_default_compress),gzip) -DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ - && echo xz || echo bzip2) -endif - -ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb - ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches))) - cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,) - else - cdbs_kde_enable_final = - endif -endif - -ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) - cdbs_kde_enable_final = - cdbs_kde_enable_debug = --enable-debug=yes -else - cdbs_kde_enable_debug = --disable-debug -endif - -ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS))) - cdbs_kde_enable_debug = --enable-debug=full -endif - -DEB_BUILD_PARALLEL ?= true - -cdbs_configure_flags += \ - --with-qt-dir=/usr/share/qt3 \ - --disable-rpath \ - --with-xinerama \ - $(cdbs_kde_enable_final) \ - $(cdbs_kde_enable_debug) - - -# This is a convenience target for calling manually. -# It's not part of the build process. -buildprep: clean apply-patches -ifndef _cdbs_class_cmake - $(MAKE) -f admin/Makefile.common dist -endif - debian/rules clean - -.tdepkginfo: - echo "# TDE package information" >.tdepkginfo - dpkg-parsechangelog | sed -n "s|^Source: |Name: |p" >>.tdepkginfo - dpkg-parsechangelog | sed -n "s|^Version: |Version: |p" >>.tdepkginfo - date +"DateTime: %m/%d/%Y %H:%M" -u -d "$$(dpkg-parsechangelog | sed -n 's|^Date: ||p')" >>.tdepkginfo - -post-patches:: .tdepkginfo - -common-build-arch:: debian/stamp-man-pages -debian/stamp-man-pages: - if ! test -d debian/man/out; then mkdir -p debian/man/out; fi - for f in $$(find debian/man -name '*.sgml'); do \ - docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \ - done - for f in $$(find debian/man -name '*.man'); do \ - soelim -I debian/man $$f \ - > debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \ - done - touch debian/stamp-man-pages - -common-binary-indep:: - ( set -e; \ - tmpf=`mktemp debian/versions.XXXXXX`; \ - perl debian/cdbs/versions.pl >$$tmpf; \ - for p in $(DEB_INDEP_PACKAGES); do \ - cat $$tmpf >>debian/$$p.substvars; \ - done; \ - rm -f $$tmpf ) - -common-binary-arch:: - ( set -e; \ - tmpf=`mktemp debian/versions.XXXXXX`; \ - perl debian/cdbs/versions.pl >$$tmpf; \ - for p in $(DEB_ARCH_PACKAGES); do \ - cat $$tmpf >>debian/$$p.substvars; \ - done; \ - rm -f $$tmpf ) - # update multi-arch path in install files - ls -d debian/* | \ - grep -E "(install|links)$$" | \ - while read a; do \ - [ -d $$a ] || [ -f $$a.arch ] || \ - ! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \ - sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \ - done - -clean:: - rm -rf debian/man/out - -rmdir debian/man - rm -f debian/stamp-man-pages - rm -rf debian/shlibs-check - # revert multi-arch path in install files - ls -d debian/* | \ - grep -E "(install|links)$$" | \ - while read a; do \ - [ ! -f $$a.arch ] || \ - mv $$a.arch $$a; \ - done - -$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%: - if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi - if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi - if test -e debian/$(cdbs_curpkg).lintian; then \ - install -p -D -m644 debian/$(cdbs_curpkg).lintian \ - debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \ - fi - if test -e debian/$(cdbs_curpkg).presubj; then \ - install -p -D -m644 debian/$(cdbs_curpkg).presubj \ - debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \ - fi - -binary-install/$(DEB_SOURCE_PACKAGE)-doc-html:: - set -e; \ - for doc in `cd $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en; find . -name index.docbook`; do \ - pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \ - echo Building $$pkg HTML docs...; \ - mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \ - cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \ - /usr/bin/meinproc $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en/$$pkg/index.docbook; \ - done - for pkg in $(DOC_HTML_PRUNE) ; do \ - rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \ - done - -common-build-indep:: debian/stamp-kde-apidox -debian/stamp-kde-apidox: - $(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox) - touch $@ - -common-install-indep:: common-install-kde-apidox -common-install-kde-apidox:: - $(if $(DEB_KDE_APIDOX),+DESTDIR=$(DEB_DESTDIR) $(DEB_MAKE_INVOKE) install-apidox) - -cleanbuilddir:: - -$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR)) - -clean:: -ifndef _cdbs_class_cmake - if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \ - cd $(DEB_SRCDIR); \ - find . -name Makefile.in -print | \ - xargs --no-run-if-empty rm -f; \ - rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \ - configure configure.files configure.in stamp-h.in \ - subdirs; \ - fi -endif - rm -f .tdepkginfo - rm -f debian/stamp-kde-apidox - rm -f debian/stamp-cvs-make - -endif diff --git a/dilos/core/tdebindings/debian/cdbs/versions.pl b/dilos/core/tdebindings/debian/cdbs/versions.pl deleted file mode 100644 index 1b110f7af..000000000 --- a/dilos/core/tdebindings/debian/cdbs/versions.pl +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; - -my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`; -my ($version3, $version3_next); -my ($version2, $version2_next); - -($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/; -($version2 = $version3) =~ s/\.[^.]+$//; - -($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e; -($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e; - -print "TDE-Version3=$version3\n"; -print "TDE-Version2=$version2\n"; -print "TDE-Next-Version3=$version3_next\n"; -print "TDE-Next-Version2=$version2_next\n"; diff --git a/dilos/core/tdebindings/debian/compat b/dilos/core/tdebindings/debian/compat index ec635144f..f599e28b8 100644 --- a/dilos/core/tdebindings/debian/compat +++ b/dilos/core/tdebindings/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/dilos/core/tdebindings/debian/control b/dilos/core/tdebindings/debian/control index 99fbd2427..5fb5eaff9 100644 --- a/dilos/core/tdebindings/debian/control +++ b/dilos/core/tdebindings/debian/control @@ -1,8 +1,8 @@ Source: tdebindings-trinity -Build-Depends: cdbs (>= 0.4.43), debhelper (>= 9~), - python-all-dev (>= 2.3.5-11), python-support (>= 0.5) | dh-python, quilt, gawk, - default-jdk [amd64 i386 armel armhf arm64 mipsel ia64 powerpc riscv64 s390 sparc], - tdelibs14-trinity-dev, libtqt3-compat-headers (>= 3:3.3.5), +Build-Depends: tde-cdbs (>= 0.4.43), debhelper (>= 10~), + python3-all-dev, dh-python, python3-setuptools, quilt, gawk, + default-jdk [amd64 i386 armel armhf arm64 mipsel ia64 powerpc ppc64el riscv64 s390 sparc], + tdelibs14-trinity-dev, ruby, ruby-dev, flex, bison, libpkcs11-helper1-dev, automake, autoconf, libtool, libltdl-dev, graphviz [solaris-any], libgtk2.0-dev [solaris-any], oracle-java8-jdk [solaris-any] Section: devel @@ -17,7 +17,7 @@ Architecture: all Section: tde Replaces: kdebindings-trinity (<< 4:14.0.0~) Breaks: kdebindings-trinity (<< 4:14.0.0~) -Depends: tdebindings-java-trinity (>= ${source:Version}), libdcop3-java-trinity (>= ${source:Version}), libdcop3-jni-trinity (>= ${source:Version}), libqt3-java-trinity (>= ${source:Version}), libqt3-jni-trinity (>= ${source:Version}), libtrinity-java-trinity (>= ${source:Version}), libtrinity-jni-trinity (>= ${source:Version}), libsmoketqt1-trinity (>= ${source:Version}), libsmoketde1-trinity (>= ${source:Version}), python-dcop-trinity (>= ${source:Version}), libkjsembed1-trinity (>= ${source:Version}), kjscmd-trinity (>= ${source:Version}), juic-trinity (>= ${source:Version}), libkorundum0-ruby-trinity (>= ${source:Version}), libqt0-ruby-trinity (>= ${source:Version}), tde-xparts-extras-trinity (>= ${source:Version}) +Depends: tdebindings-java-trinity (>= ${source:Version}), libdcop3-java-trinity (>= ${source:Version}), libdcop3-jni-trinity (>= ${source:Version}), libqt3-java-trinity (>= ${source:Version}), libqt3-jni-trinity (>= ${source:Version}), libtrinity-java-trinity (>= ${source:Version}), libtrinity-jni-trinity (>= ${source:Version}), libsmoketqt1-trinity (>= ${source:Version}), libsmoketde1-trinity (>= ${source:Version}), python3-dcop-trinity (>= ${source:Version}), libkjsembed1-trinity (>= ${source:Version}), kjscmd-trinity (>= ${source:Version}), juic-trinity (>= ${source:Version}), libkorundum0-ruby-trinity (>= ${source:Version}), libqt0-ruby-trinity (>= ${source:Version}), tde-xparts-extras-trinity (>= ${source:Version}) Description: TDE bindings metapackage TDE (the Trinity Desktop Environment) is a powerful Open Source graphical desktop environment for Unix workstations. It combines ease of use, @@ -66,7 +66,7 @@ Description: DCOP bindings for Java [Trinity] This package is part of the official TDE bindings module. Package: libdcop3-jni-trinity -Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc riscv64 s390 sparc solaris-any +Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc ppc64el riscv64 s390 sparc solaris-any Section: libs Replaces: libdcop3-jni-trinity (<< 4:14.0.0~) Breaks: libdcop3-jni-trinity (<< 4:14.0.0~) @@ -80,7 +80,7 @@ Description: DCOP bindings for Java ( Native libraries ) [Trinity] This package is part of the official TDE bindings module. Package: libdcop3-java-trinity-dev -Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc riscv64 s390 sparc solaris-any +Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc ppc64el riscv64 s390 sparc solaris-any Section: libdevel Replaces: libdcop3-java-trinity-dev (<< 4:14.0.0~) Breaks: libdcop3-java-trinity-dev (<< 4:14.0.0~) @@ -111,7 +111,7 @@ Description: Java bindings for Qt [Trinity] This package is part of the official TDE bindings module. Package: libqt3-jni-trinity -Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc riscv64 s390 sparc solaris-any +Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc ppc64el riscv64 s390 sparc solaris-any Section: libs Replaces: libqt3-jni-trinity (<< 4:14.0.0~) Breaks: libqt3-jni-trinity (<< 4:14.0.0~) @@ -140,7 +140,7 @@ Description: tdelibs bindings for Java [Trinity] This package is part of the official TDE bindings module. Package: libtrinity-jni-trinity -Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc riscv64 s390 sparc solaris-any +Architecture: amd64 i386 armel armhf arm64 mipsel ia64 powerpc ppc64el riscv64 s390 sparc solaris-any Section: libs Replaces: libtrinity-jni-trinity (<< 4:14.0.0~) Breaks: libtrinity-jni-trinity (<< 4:14.0.0~) @@ -212,13 +212,11 @@ Description: SMOKE Binding Library to TDE - Development Files . This package is part of the official TDE bindings module. -Package: python-dcop-trinity +Package: python3-dcop-trinity Architecture: any Section: python -Replaces: python-dcop-trinity (<< 4:14.0.0~) -Breaks: python-dcop-trinity (<< 4:14.0.0~) -Depends: ${python:Depends}, ${shlibs:Depends} -Provides: ${python:Provides} +Depends: ${python3:Depends}, ${shlibs:Depends} +Provides: ${python3:Provides} Description: DCOP bindings for Python This package contains the shared libraries necessary to run and develop Python programs using the Python DCOP bindings diff --git a/dilos/core/tdebindings/debian/juic-trinity.install b/dilos/core/tdebindings/debian/juic-trinity.install index 489cc979d..b3754926d 100644 --- a/dilos/core/tdebindings/debian/juic-trinity.install +++ b/dilos/core/tdebindings/debian/juic-trinity.install @@ -4,3 +4,4 @@ qtjava/designer/juic/common/*.xsl /usr/share/juic/common qtjava/designer/juic/java/*.xml /usr/share/juic/java qtjava/designer/juic/java/*.xsl /usr/share/juic/java qtjava/designer/juic/juic.xsl /usr/share/juic +debian/tmp/usr/share/man/man1/juic.1 diff --git a/dilos/core/tdebindings/debian/juic-trinity.manpages b/dilos/core/tdebindings/debian/juic-trinity.manpages deleted file mode 100644 index 3b2609197..000000000 --- a/dilos/core/tdebindings/debian/juic-trinity.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/local/juic.1 diff --git a/dilos/core/tdebindings/debian/libdcop3-java-trinity-dev.install b/dilos/core/tdebindings/debian/libdcop3-java-trinity-dev.install index bcc14a752..3afb886e0 100644 --- a/dilos/core/tdebindings/debian/libdcop3-java-trinity-dev.install +++ b/dilos/core/tdebindings/debian/libdcop3-java-trinity-dev.install @@ -1 +1,2 @@ debian/tmp/usr/bin/dcopidl2java +debian/tmp/usr/share/man/man1/dcopidl2java.1 diff --git a/dilos/core/tdebindings/debian/libdcop3-java-trinity-dev.manpages b/dilos/core/tdebindings/debian/libdcop3-java-trinity-dev.manpages deleted file mode 100644 index 74e63033b..000000000 --- a/dilos/core/tdebindings/debian/libdcop3-java-trinity-dev.manpages +++ /dev/null @@ -1 +0,0 @@ -debian/local/dcopidl2java.1 diff --git a/dilos/core/tdebindings/debian/libkorundum0-ruby-trinity.install b/dilos/core/tdebindings/debian/libkorundum0-ruby-trinity.install index 8df9c7310..a61f2891a 100644 --- a/dilos/core/tdebindings/debian/libkorundum0-ruby-trinity.install +++ b/dilos/core/tdebindings/debian/libkorundum0-ruby-trinity.install @@ -9,4 +9,8 @@ debian/tmp/usr/lib/ruby/*/TDE/korundum.rb debian/tmp/usr/lib/*/*/*/korundum.so* debian/tmp/usr/lib/*/*/*/korundum.la +debian/tmp/usr/share/man/man1/krubyinit.1 +debian/tmp/usr/share/man/man1/rbtdesh.1 +debian/tmp/usr/share/man/man1/rbtdeapi.1 + korundum/ChangeLog /usr/share/doc/libkorundum0-ruby diff --git a/dilos/core/tdebindings/debian/libkorundum0-ruby-trinity.manpages b/dilos/core/tdebindings/debian/libkorundum0-ruby-trinity.manpages deleted file mode 100644 index ab2f0ee35..000000000 --- a/dilos/core/tdebindings/debian/libkorundum0-ruby-trinity.manpages +++ /dev/null @@ -1,3 +0,0 @@ -debian/local/krubyinit.1 -debian/local/rbtdesh.1 -debian/local/rbtdeapi.1 diff --git a/dilos/core/tdebindings/debian/libqt0-ruby-trinity.install b/dilos/core/tdebindings/debian/libqt0-ruby-trinity.install index ca7fdff7c..1a89c8d9a 100644 --- a/dilos/core/tdebindings/debian/libqt0-ruby-trinity.install +++ b/dilos/core/tdebindings/debian/libqt0-ruby-trinity.install @@ -12,4 +12,9 @@ debian/tmp/usr/lib/*/*/*/qtruby.la debian/tmp/usr/lib/*/*/*/tqui.so* debian/tmp/usr/lib/*/*/*/tqui.la +debian/tmp/usr/share/man/man1/qtrubyinit.1 +debian/tmp/usr/share/man/man1/rbqtsh.1 +debian/tmp/usr/share/man/man1/rbqtapi.1 +debian/tmp/usr/share/man/man1/rbuic.1 + qtruby/ChangeLog /usr/share/doc/libqt0-ruby diff --git a/dilos/core/tdebindings/debian/libqt0-ruby-trinity.manpages b/dilos/core/tdebindings/debian/libqt0-ruby-trinity.manpages deleted file mode 100644 index f2dc6de31..000000000 --- a/dilos/core/tdebindings/debian/libqt0-ruby-trinity.manpages +++ /dev/null @@ -1,4 +0,0 @@ -debian/local/qtrubyinit.1 -debian/local/rbqtsh.1 -debian/local/rbqtapi.1 -debian/local/rbuic.1 diff --git a/dilos/core/tdebindings/debian/local/dcopidl2java.1 b/dilos/core/tdebindings/debian/local/dcopidl2java.1 deleted file mode 100644 index 926d78391..000000000 --- a/dilos/core/tdebindings/debian/local/dcopidl2java.1 +++ /dev/null @@ -1,28 +0,0 @@ -.TH LIBDCOP-JAVA 1 "July 31, 2002" -.SH NAME -dcopidl2java \- Convert a DCOP IDL file to Java language stubs -.SH SYNOPSIS -.B dcopidl2java -.RI " [ " --no-skel " ] [ " --no-stub " ] [ " --package " " java-package " ] " file -.SH DESCRIPTION -This manual page documents briefly the -.B dcopidl2java -command. -.PP -\fBdcopidl2java\fP is a program that generates Java stubs from a DCOP IDL file, -for use with the libdcop-java Java DCOP bindings. - -.SH OPTIONS -A summary of options is included below. -.TP -.B --no-skel -Do not generate skeleton code. -.TP -.B --no-stub -Do not generate stub implementation code. -.TP -.B --package java-package -Set the name of the Java package to use in the generated code. -.SH AUTHOR -This manual page was written by Peter Hawkins <peterh@debian.org> -for the Debian GNU/Linux system (but may be used by others). diff --git a/dilos/core/tdebindings/debian/local/juic.1 b/dilos/core/tdebindings/debian/local/juic.1 deleted file mode 100644 index 9120f44d3..000000000 --- a/dilos/core/tdebindings/debian/local/juic.1 +++ /dev/null @@ -1,39 +0,0 @@ -.TH JUIC 1 "Apr 2004" "Trinity Desktop Environment" "Qt Java UI Compiler Manual" -.SH NAME -juic \- The Qt Java UI Compiler -.SH SYNOPSIS -.B juic -[options] uifile -.SH DESCRIPTION -Juic is the Qt Java UI Compiler. It generates Java\*(tm code from a -XML UI Description file. This XML UI Description file can be -generated by Qt Designer, Qt's graphical UI designer. Juic is the -Java\*(tm equivalent for the C++ uic program. - -Juic generates Java code for the Qt UI Description File passed to it, -and outputs it on standard output. -.SH OPTIONS -.TP -.B \-proc <xsltproc|xalan|saxon> -Tells juic which xslt processor to use internally. Possible values -are "xsltproc", "xalan", "saxon". The processor you specify must be -available in the PATH or juic will give an error. The default is to -use xsltproc if it's available, and use saxon otherwise. -.TP -.B \-package <the.package.for.the.class> -Tells juic to add the given package declaration to the generated java -class. -.TP -.B \-abstract <true|false> -Tells juic whether or not to define slots as abstract. -.TP -.B \-images <dir> -Tells juic where to find the images used in the given ui file. -Default is "images". -.TP -.B \-os <unix|msdos|mac> -Tells juic what newline style to use in the generated java file. Possible values are "unix", "msdos" and "mac", for UNIX, DOS and MacOS style newlines respectively. -.SH AUTHOR -Marco Ladermann -.SH SEE ALSO -uic(1) diff --git a/dilos/core/tdebindings/debian/local/krubyinit.1 b/dilos/core/tdebindings/debian/local/krubyinit.1 deleted file mode 100644 index f8a405452..000000000 --- a/dilos/core/tdebindings/debian/local/krubyinit.1 +++ /dev/null @@ -1,25 +0,0 @@ -.TH KRUBYINIT 1 "Aug 2004" "Trinity Desktop Environment" "KRubyInit Manual" -.SH NAME -krubyinit \- Start Korundum Ruby Scripts Faster -.SH SYNOPSYS -.B krubyinit -[switches] [--] [programfile] [arguments] -.SH DESCRIPTION -Krubyinit is a wrapper around the ruby interpreter for executing Ruby -scripts using the Korundum library ( the Ruby TDE bindings ). It uses -the tdeinit system to start the app so that they start a little bit -faster when started in a running TDE session. - -The script takes exactly the same options as the ruby(1) program. -Therefore, its options aren't documented here, please refer to the -ruby(1) manpage. - -This script is part of Korundum, which is part of the TDE Bindings -module. -.SH OPTIONS -Krubyinit takes exactly the same options as the ruby(1) program and -they have exactly the same meaning. Please refer to its manpage. -.SH AUTHOR -Alexander Kellett -.SH SEE ALSO -ruby(1) diff --git a/dilos/core/tdebindings/debian/local/qtrubyinit.1 b/dilos/core/tdebindings/debian/local/qtrubyinit.1 deleted file mode 100644 index 1ab6e7f28..000000000 --- a/dilos/core/tdebindings/debian/local/qtrubyinit.1 +++ /dev/null @@ -1,25 +0,0 @@ -.TH QTRUBYINIT 1 "Aug 2004" "Trinity Desktop Environment" "QtRubyInit Manual" -.SH NAME -qtrubyinit \- Start Qt Ruby Scripts Faster -.SH SYNOPSYS -.B qtrubyinit -[switches] [--] [programfile] [arguments] -.SH DESCRIPTION -Qtrubyinit is a wrapper around the ruby interpreter for executing Ruby -scripts using the QtRuby library. It uses the tdeinit system to start -the app so that they start a little bit faster when started in a -running TDE session. - -The script takes exactly the same options as the ruby(1) program. -Therefore, its options aren't documented here, please refer to the -ruby(1) manpage. - -This script is part of QtRuby, which is part of the TDE Bindings -module. -.SH OPTIONS -Qtrubyinit takes exactly the same options as the ruby(1) program and -they have exactly the same meaning. Please refer to its manpage. -.SH AUTHOR -Alexander Kellett -.SH SEE ALSO -ruby(1) diff --git a/dilos/core/tdebindings/debian/local/rbqtapi.1 b/dilos/core/tdebindings/debian/local/rbqtapi.1 deleted file mode 100644 index 7cafb5b8c..000000000 --- a/dilos/core/tdebindings/debian/local/rbqtapi.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH RBQTAPI 1 "Aug 2004" "Trinity Desktop Environment" "Qt Ruby Bindings Manual" -.SH NAME -rbqtapi \- A QtRuby Introspection Tool -.SH SYNOPSIS -.B rbqtapi -[options] [<class>] -.SH DESCRIPTION -Rbqtapi is a QtRuby Introspection Tool, similar to javap(1). Use it -to find a list of method for a certain QtRuby class. -.SH OPTIONS -.TP -.B \-r <re> -Find all functions matching regular expression/keyword <re> -.TP -.B \-i -Perform a case insensitive search ( only meaningful in combination with -r ) -.TP -.B \-p -Display also inherited methods. -.TP -.B \-v -Print QtRuby and Qt versions. -.TP -.B \-h -Print a help message. -.SH AUTHOR -Alexander Kellett -.SH SEE ALSO -rbtdeapi(1) diff --git a/dilos/core/tdebindings/debian/local/rbqtsh.1 b/dilos/core/tdebindings/debian/local/rbqtsh.1 deleted file mode 100644 index bda49d962..000000000 --- a/dilos/core/tdebindings/debian/local/rbqtsh.1 +++ /dev/null @@ -1,16 +0,0 @@ -.TH RBQTSH 1 "Aug 2004" "Trinity Desktop Environment" "Qt Ruby Bindings Manual" -.SH NAME -rbqtsh \- An Interactive QtRuby Shell -.SH SYNOPSIS -.B rbqtsh -[options] -.SH DESCRIPTION -Rbqtsh is an interactive QtRuby shell. It shows a GUI dialog box -where you can enter Ruby code using the QtRuby library. -.SH OPTIONS -This program takes no options. -.SH AUTHOR -Germain Garand -Alexander Kellett -.SH SEE ALSO -rbtdesh(1) diff --git a/dilos/core/tdebindings/debian/local/rbtdeapi.1 b/dilos/core/tdebindings/debian/local/rbtdeapi.1 deleted file mode 100644 index e3d166225..000000000 --- a/dilos/core/tdebindings/debian/local/rbtdeapi.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH RBTDEAPI 1 "Aug 2004" "Trinity Desktop Environment" "Korundum TDE Ruby Bindings Manual" -.SH NAME -rbtdeapi \- A Korundum TDE Ruby Introspection Tool -.SH SYNOPSIS -.B rbtdeapi -[options] [<class>] -.SH DESCRIPTION -Rbtdeapi is a Korundum TDE Ruby Introspection Tool, similar to -javap(1). Use it to find a list of method for a certain Korundum class. -.SH OPTIONS -.TP -.B \-r <re> -Find all functions matching regular expression/keyword <re> -.TP -.B \-i -Perform a case insensitive search ( only meaningful in combination with -r ) -.TP -.B \-p -Display also inherited methods. -.TP -.B \-v -Print QtRuby and Qt versions. -.TP -.B \-h -Print a help message. -.SH AUTHOR -Alexander Kellett -.SH SEE ALSO -rbqtapi(1) diff --git a/dilos/core/tdebindings/debian/local/rbtdesh.1 b/dilos/core/tdebindings/debian/local/rbtdesh.1 deleted file mode 100644 index 6e792e7fa..000000000 --- a/dilos/core/tdebindings/debian/local/rbtdesh.1 +++ /dev/null @@ -1,17 +0,0 @@ -.TH RBTDESH 1 "Aug 2004" "Trinity Desktop Environment" "Korundum TDE Ruby Bindings Manual" -.SH NAME -rbtdesh \- An Interactive Korundum Shell -.SH SYNOPSIS -.B rbtdesh -[options] -.SH DESCRIPTION -Rbtdesh is an interactive Korundum shell. It shows a GUI dialog box -where you can enter Ruby code using the Korundum TDE Ruby bindings -library. -.SH OPTIONS -This program takes no options. -.SH AUTHOR -Germain Garand -Alexander Kellett -.SH SEE ALSO -rbqtsh(1) diff --git a/dilos/core/tdebindings/debian/local/rbuic.1 b/dilos/core/tdebindings/debian/local/rbuic.1 deleted file mode 100644 index d59caa1ac..000000000 --- a/dilos/core/tdebindings/debian/local/rbuic.1 +++ /dev/null @@ -1,64 +0,0 @@ -.TH RBUIC 1 "Apr 2004" "Trinity Desktop Environment" "Qt Ruby UI Compiler Manual" -.SH NAME -rbuic \- The Qt Ruby UI Compiler -.SH SYNOPSIS -Generate implementation: -.B rbuic -[options] uifile -.LP -Generate subclass implementation: -.B rbuic -[options] -subimpl <classname> <uifile> -.LP -Generate image collection: -.B rbuic -[options] -embed <project> <image1> <image2> <image3> ... -.SH DESCRIPTION -Rbuic is the Qt Ruby UI Compiler. It generates Ruby code from a XML -UI Description file. This XML UI Description file can be generated by -Qt Designer, Qt's graphical UI designer. Rbuic is the Ruby equivalent -for the C++ uic program. - -When invoked to generate an implementation, rbuic generates Ruby code -for the Qt UI Description File passed to it, and outputs it on -standard output. - -When invoked to generate a subclass implementation, rbuic generates -template Ruby code for a subclass of the widget in the Qt UI -Description File passed to it, and outputs it on standard output. - -When invoked to generate an image collection, rbuic generates Ruby -code containing the image data in strings. This is useful to avoid -having to distribute image files along with your application. It is -arguably more useful for C++ ( where the image strings can be compiled -into an executable ), but still, it is available for Ruby as well. -.SH OPTIONS -.TP -.B \-o <file> -Write output to file rather than stdout. -.TP -.B \-p <indent> -Set the indent in spaces (0 to use a tab) -.TP -.B \-nofwd -Omit imports of custom widgets -.TP -.B \-kde -Use TDE widgets, require 'Korundum' extension -.TP -.B \-tr <func> -Use func(...) rather than trUtf8(...) for i18n -.TP -.B \-x -Generate extra code to test the class -.TP -.B \-version -Print the Rbuic and Qt versions -.TP -.B \-help -Display some help information. -.SH AUTHOR -Germain Garand -Phil Thompson -.SH SEE ALSO -uic(1) diff --git a/dilos/core/tdebindings/debian/python-dcop-trinity.install b/dilos/core/tdebindings/debian/python-dcop-trinity.install deleted file mode 100644 index 86d1a899e..000000000 --- a/dilos/core/tdebindings/debian/python-dcop-trinity.install +++ /dev/null @@ -1 +0,0 @@ -debian/tmp/usr/lib/python2.*/site-packages diff --git a/dilos/core/tdebindings/debian/python-dcop-trinity.docs b/dilos/core/tdebindings/debian/python3-dcop-trinity.docs index 957d3af3e..957d3af3e 100644 --- a/dilos/core/tdebindings/debian/python-dcop-trinity.docs +++ b/dilos/core/tdebindings/debian/python3-dcop-trinity.docs diff --git a/dilos/core/tdebindings/debian/python-dcop-trinity.examples b/dilos/core/tdebindings/debian/python3-dcop-trinity.examples index 4100d465b..4100d465b 100644 --- a/dilos/core/tdebindings/debian/python-dcop-trinity.examples +++ b/dilos/core/tdebindings/debian/python3-dcop-trinity.examples diff --git a/dilos/core/tdebindings/debian/python3-dcop-trinity.install b/dilos/core/tdebindings/debian/python3-dcop-trinity.install new file mode 100644 index 000000000..0cb9ab6cb --- /dev/null +++ b/dilos/core/tdebindings/debian/python3-dcop-trinity.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/python3/dist-packages diff --git a/dilos/core/tdebindings/debian/rules b/dilos/core/tdebindings/debian/rules index a43bbff91..61562d894 100755 --- a/dilos/core/tdebindings/debian/rules +++ b/dilos/core/tdebindings/debian/rules @@ -3,13 +3,9 @@ DEB_QUILT_PATCHDIR_LINK := export QUILT_PATCHES=debian/patches -DEB_PYTHON_SYSTEM = $(if $(wildcard /usr/bin/dh_python2),,pysupport) -DH_PYTHON2 = $(if $(wildcard /usr/bin/dh_python2),dh_python2,dh_pysupport) - - include /usr/share/cdbs/1/rules/debhelper.mk override DEB_BUILDDIR := $(DEB_SRCDIR) -include debian/cdbs/debian-tde.mk +-include /usr/share/cdbs/1/class/tde.mk DEB_BUILDDIR := $(DEB_SRCDIR) DEB_CONFIGURE_INCLUDEDIR := /usr/include/tde @@ -39,7 +35,7 @@ DEB_CONFIGURE_EXTRA_FLAGS = $(WITH_JAVA) --prefix=/usr \ --with-extra-includes=/usr/include/tqt \ DO_NOT_COMPILE='dcopc dcopperl kalyptus qtsharp xparts python' -DEB_COMPRESS_EXCLUDE += .java .ui .js .rb .map .wav .bmp .cpp .sk +DEB_COMPRESS_EXCLUDE_ALL += .java .ui .js .rb .map .wav .bmp .cpp .sk # These are not all the packages with libraries, but only those that # need to be in DEB_SHLIBDEPS_INCLUDE... @@ -117,22 +113,8 @@ common-install-arch:: stamp-install-dcopjava ### -binary-install/juic-trinity:: -# DilOS dirty hack -# mv debian/$(cdbs_curpkg)/usr/share/man debian/$(cdbs_curpkg)/usr/share/ - sed -i "s|UIXSLDIR=/usr|UIXSLDIR=/usr|" debian/$(cdbs_curpkg)/usr/bin/juic - -binary-install/libdcop3-java-trinity-dev:: -# mv debian/$(cdbs_curpkg)/usr/share/man debian/$(cdbs_curpkg)/usr/share/ - -binary-install/libkorundum0-ruby-trinity:: -# mv debian/$(cdbs_curpkg)/usr/share/man debian/$(cdbs_curpkg)/usr/share/ - -binary-install/libqt0-ruby-trinity:: -# mv debian/$(cdbs_curpkg)/usr/share/man debian/$(cdbs_curpkg)/usr/share/ - -binary-install/python-dcop-trinity:: - ${DH_PYTHON2} -p$(cdbs_curpkg) +binary-install/python3-dcop-trinity:: + dh_python3 -p$(cdbs_curpkg) ### |
