Author: ccheney Date: 2003-10-31 07:41:15 +0100 (Fri, 31 Oct 2003) New Revision: 4
Added: trunk/packages/kdebindings/ trunk/packages/kdebindings/debian/ trunk/packages/kdebindings/debian/Makefile.Debian.PL trunk/packages/kdebindings/debian/changelog trunk/packages/kdebindings/debian/control trunk/packages/kdebindings/debian/copyright trunk/packages/kdebindings/debian/dcopperl.docs trunk/packages/kdebindings/debian/dcopperl.files trunk/packages/kdebindings/debian/dcoppython.docs trunk/packages/kdebindings/debian/dcoppython.files trunk/packages/kdebindings/debian/dcoppython.override trunk/packages/kdebindings/debian/debian.diff trunk/packages/kdebindings/debian/libdcopc-dev.files trunk/packages/kdebindings/debian/libdcopc1.files trunk/packages/kdebindings/debian/libdcopc1.shlibs trunk/packages/kdebindings/debian/libkdexparts-dev.files trunk/packages/kdebindings/debian/libkdexparts1.docs trunk/packages/kdebindings/debian/libkdexparts1.files trunk/packages/kdebindings/debian/libkdexparts1.override trunk/packages/kdebindings/debian/libkdexparts1.shlibs trunk/packages/kdebindings/debian/rules Log: kdebindings (2.2.2-3) unstable; urgency=low * More build fixes * Sync with upstream * Update documentation for freeze -- Ivan E. Moore II <[EMAIL PROTECTED]> Thu, 29 Nov 2001 04:18:00 -0700 Added: trunk/packages/kdebindings/debian/Makefile.Debian.PL =================================================================== --- trunk/packages/kdebindings/debian/Makefile.Debian.PL 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/Makefile.Debian.PL 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,33 @@ +use ExtUtils::MakeMaker; +use Config; +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. + +print "Trying to find some configuration information...\n"; +my $kde_dirs = $ENV{KDEDIRS} || '/usr'; +my $qt_dir = '/usr'; +my $kde_inc = "$kde_dirs/include/kde"; +my $kde_lib = "$kde_dirs/lib"; +my $qt_inc = "$qt_dir/include/qt"; +my $qt_lib = "$qt_dir/lib"; +$kde_inc = undef unless -f "$kde_inc/dcopclient.h"; +$kde_lib = undef unless -f "$kde_lib/libDCOP.$Config{dlext}"; +$qt_dir = undef unless -f "$qt_inc/qglobal.h"; + +WriteMakefile( + NAME => 'DCOP', + VERSION_FROM => 'DCOP.pm', + INC => "-I$qt_inc -I$kde_inc", + LIBS => "-L$qt_lib -lqt -L$kde_lib -lkdecore -lDCOP", + XS => {'DCOP.xs' => 'DCOP.cpp'}, + XSOPT => '-C++', + CCFLAGS => '-x c++', +); + +sub MY::xs_c { + package MY; + my $hack = shift->SUPER::xs_c(@_); + $hack =~ s/\.c/.cpp/g; + $hack; +} + Added: trunk/packages/kdebindings/debian/changelog =================================================================== --- trunk/packages/kdebindings/debian/changelog 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/changelog 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,70 @@ +kdebindings (2.2.2-3) unstable; urgency=low + + * More build fixes + * Sync with upstream + * Update documentation for freeze + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Thu, 29 Nov 2001 04:18:00 -0700 + +kdebindings (2.2.2-2) unstable; urgency=low + + * Fix build-depends so we actually build + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Mon, 25 Nov 2001 23:40:00 -0700 + +kdebindings (2.2.2-1) unstable; urgency=low + + * New upstream version + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Mon, 12 Nov 2001 14:26:00 -0700 + +kdebindings (2.2.1-2) unstable; urgency=low + + * This has been fixed for a while (Closes: #104576) + * Sync with upstream + * Fix python deps + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Thu, 08 Nov 2001 14:26:00 -0700 + +kdebindings (2.2.1-1.2) unstable; urgency=low + + * Fix configure + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Mon, 08 Oct 2001 13:50:00 -0700 + +kdebindings (2.2.1-1.1) unstable; urgency=low + + * Build with automake 1.5 + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Fri, 05 Oct 2001 13:50:00 -0700 + +kdebindings (2.2.1-1) unstable; urgency=low + + * New upstream version + * Lintian cleanup + * Fix includes problem for building with gcc3 (Closes: #111028) + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Sat, 25 Aug 2001 14:34:00 -0700 + +kdebindings (2.2-2) unstable; urgency=low + + * Fix dep (Closes: #108814) + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Wed, 16 Aug 2001 09:44:00 -0700 + +kdebindings (2.2-1) unstable; urgency=low + + * New upstream version 2.2. + * Cleanup of build/install process + * objprelink for x86 + * add a debian.diff + * Break out mozilla bits from libkdexparts packages since they depend + on non-us bits + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Fri, 10 Aug 2001 01:21:35 -0700 + +kdebindings (2.1-final-1) unstable; urgency=low + + * Initial Release. + + -- Ivan E. Moore II <[EMAIL PROTECTED]> Mon, 19 Feb 2001 01:21:35 -0700 Added: trunk/packages/kdebindings/debian/control =================================================================== --- trunk/packages/kdebindings/debian/control 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/control 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,49 @@ +Source: kdebindings +Build-Depends: automake (>= 1:1.4-p4-1.1), autoconf, libtool, debhelper (>= 3.0.0), gettext, kdelibs-dev (>= 4:2.2.2-1), libgtk1.2-dev, libglib1.2-dev, binutils-dev, python2.1-dev, perl5 +Section: devel +Priority: optional +Maintainer: Debian QA Group <[EMAIL PROTECTED]> +Standards-Version: 3.5.6 + +Package: dcoppython +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, python2.1 +Description: Python bindings for DCOP + Python bindings for DCOP + +Package: dcopperl +Architecture: any +Section: libs +Depends: ${perl:Depends} +Description: Perl bindings for DCOP + Perl bindings for DCOP + +Package: libdcopc1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends} +Description: C bindings for DCOP + C bindings for DCOP + +Package: libdcopc-dev +Architecture: any +Section: devel +Depends: libdcopc1 (= ${Source-Version}) +Description: C bindings for DCOP (Development files) + C bindings for DCOP + +Package: libkdexparts1 +Architecture: any +Section: libs +Depends: ${shlibs:Depends} +Description: Python bindings for DCOP + Python bindings for DCOP + +Package: libkdexparts-dev +Architecture: any +Section: devel +Depends: libkdexparts1 (= ${Source-Version}) +Description: Python bindings for DCOP + Python bindings for DCOP + Added: trunk/packages/kdebindings/debian/copyright =================================================================== --- trunk/packages/kdebindings/debian/copyright 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/copyright 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,42 @@ +This package was also debianized by Ivan E. Moore II <[EMAIL PROTECTED]>. + +It was downloaded via cvs from cvs.kde.org + +Copyright: + +See AUTHORS for authors. + +--- + +The libraries themselves have been covered (since Saturday, June 21st, 1997) +by the GNU Library General Public License (LGPL). Any other programs (such as +the examples) are covered by the GNU General Public License (GPL). All the +gory details for the LGPL reside in COPYING.LIB, and for the GPL reside in +COPYING. + +-- + +Copyright (c) 2000 Simon Hausmann <[EMAIL PROTECTED]> +Copyright (c) 2000 Lars Knoll <[EMAIL PROTECTED]> +Copyright (c) 1999 Preston Brown <[EMAIL PROTECTED]> +Copyright (c) 1999, 2000 Matthias Ettrich <[EMAIL PROTECTED]> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +Please see /usr/share/common-licenses/ for each individual license. Added: trunk/packages/kdebindings/debian/dcopperl.docs =================================================================== --- trunk/packages/kdebindings/debian/dcopperl.docs 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/dcopperl.docs 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,3 @@ +dcopperl/AUTHORS +dcopperl/README +dcopperl/TODO Added: trunk/packages/kdebindings/debian/dcopperl.files =================================================================== --- trunk/packages/kdebindings/debian/dcopperl.files 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/dcopperl.files 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,4 @@ +usr/lib/perl5/auto/DCOP/* +usr/lib/perl5/DCOP.pm +usr/lib/perl5/DCOP/* +usr/share/man/man3/DCOP.3pm Added: trunk/packages/kdebindings/debian/dcoppython.docs =================================================================== --- trunk/packages/kdebindings/debian/dcoppython.docs 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/dcoppython.docs 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1 @@ +dcoppython/README Added: trunk/packages/kdebindings/debian/dcoppython.files =================================================================== --- trunk/packages/kdebindings/debian/dcoppython.files 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/dcoppython.files 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,7 @@ +usr/lib/python2.1/site-packages/pcop.so +usr/lib/python2.1/site-packages/pcop.la +usr/lib/python2.1/site-packages/pyqt.so +usr/lib/python2.1/site-packages/pyqt.la +usr/lib/python2.1/dcop.py +usr/lib/python2.1/qt.py +usr/share/lintian/overrides/dcoppython Added: trunk/packages/kdebindings/debian/dcoppython.override =================================================================== --- trunk/packages/kdebindings/debian/dcoppython.override 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/dcoppython.override 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,3 @@ +dcoppython: no-shlibs-control-file usr/lib/python2.1/site-packages/pyqt.so +dcoppython: no-shlibs-control-file usr/lib/python2.1/site-packages/pcop.so + Added: trunk/packages/kdebindings/debian/debian.diff =================================================================== --- trunk/packages/kdebindings/debian/debian.diff 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/debian.diff 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,251 @@ +--- kdebindings-2.2.orig/xparts/Makefile.am ++++ kdebindings-2.2/xparts/Makefile.am +@@ -1,5 +1,5 @@ + +-SUBDIRS = src xpart_notepad $(MOZILLADIR) ++SUBDIRS = src xpart_notepad + + EXTRA_DIST = Makefile.cvs glib.m4 gtk.m4 acinclude.m4.in am_edit + +--- kdebindings-2.2.orig/admin/config.guess ++++ kdebindings-2.2/admin/config.guess +@@ -3,7 +3,7 @@ + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 + # Free Software Foundation, Inc. + +-timestamp='2001-03-30' ++timestamp='2001-04-20' + + # This file is free software; you can redistribute it and/or modify it + # under the terms of the GNU General Public License as published by +@@ -412,6 +412,9 @@ + rm -f $dummy.c $dummy + echo mips-mips-riscos${UNAME_RELEASE} + exit 0 ;; ++ Motorola:PowerMAX_OS:*:*) ++ echo powerpc-motorola-powermax ++ exit 0 ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit 0 ;; +@@ -459,7 +462,7 @@ + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' +- i?86:AIX:*:*) ++ i*86:AIX:*:*) + echo i386-ibm-aix + exit 0 ;; + ia64:AIX:*:*) +@@ -639,7 +642,7 @@ + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit 0 ;; +- i?86:OSF1:*:*) ++ i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else +@@ -705,7 +708,7 @@ + hp300:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; +- i?86:BSD/386:*:* | i?86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) ++ i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit 0 ;; + sparc*:BSD/OS:*:*) +@@ -876,7 +879,7 @@ + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit 0 ;; +- i?86:Linux:*:*) ++ i*86:Linux:*:*) + # The BFD linker knows what the default object file format is, so + # first see if it will tell us. cd to the root directory to prevent + # problems with other programs or directories called `ld' in the path. +@@ -887,14 +890,14 @@ + s/ .*// + p'` + case "$ld_supported_emulations" in +- i?86linux) ++ i*86linux) + echo "${UNAME_MACHINE}-pc-linux-gnuaout" + exit 0 + ;; +- elf_i?86) ++ elf_i*86) + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" + ;; +- i?86coff) ++ i*86coff) + echo "${UNAME_MACHINE}-pc-linux-gnucoff" + exit 0 + ;; +@@ -906,7 +909,7 @@ + # that means it is gnuoldld. + test -z "$ld_supported_emulations" && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0 + case "${UNAME_MACHINE}" in +- i?86) ++ i*86) + VENDOR=pc; + ;; + *) +@@ -944,10 +947,10 @@ + ;; + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions + # are messed up and put the nodename in both sysname and nodename. +- i?86:DYNIX/ptx:4*:*) ++ i*86:DYNIX/ptx:4*:*) + echo i386-sequent-sysv4 + exit 0 ;; +- i?86:UNIX_SV:4.2MP:2.*) ++ i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, +@@ -955,7 +958,7 @@ + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit 0 ;; +- i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*) ++ i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} +@@ -963,7 +966,7 @@ + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit 0 ;; +- i?86:*:5:7*) ++ i*86:*:5:7*) + # Fixed at (any) Pentium or better + UNAME_MACHINE=i586 + if [ ${UNAME_SYSTEM} = "UnixWare" ] ; then +@@ -972,7 +975,7 @@ + echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE} + fi + exit 0 ;; +- i?86:*:3.2:*) ++ i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` + echo ${UNAME_MACHINE}-pc-isc$UNAME_REL +@@ -990,7 +993,7 @@ + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit 0 ;; +- i?86:*DOS:*:*) ++ i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit 0 ;; + pc:*:*:*) +@@ -1035,7 +1038,7 @@ + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit 0 ;; +- i?86:LynxOS:2.*:* | i?86:LynxOS:3.[01]*:* | i?86:LynxOS:4.0*:*) ++ i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + TSUNAMI:LynxOS:2.*:*) +@@ -1146,7 +1149,7 @@ + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit 0 ;; +- i?86:OS/2:*:*) ++ i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx +--- kdebindings-2.2.orig/admin/config.sub ++++ kdebindings-2.2/admin/config.sub +@@ -3,7 +3,7 @@ + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 + # Free Software Foundation, Inc. + +-timestamp='2001-03-30' ++timestamp='2001-04-20' + + # This file is (in principle) common to ALL GNU software. + # The presence of a machine in this file suggests that SOME GNU software +@@ -231,7 +231,8 @@ + | mips64orion | mips64orionel | mipstx39 | mipstx39el \ + | mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \ + | mips64vr5000 | miprs64vr5000el | mcore | s390 | s390x \ +- | sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \ ++ | sparc | sparclet | sparclite | sparc64 | sparcv9 | sparcv9b \ ++ | v850 | c4x \ + | thumb | d10v | d30v | fr30 | avr | openrisc | tic80 \ + | pj | pjl | h8500) + basic_machine=$basic_machine-unknown +@@ -247,7 +248,7 @@ + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. +- i[234567]86 | x86_64) ++ i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. +@@ -257,7 +258,7 @@ + ;; + # Recognize the basic CPU types with company name. + # FIXME: clean up the formatting here. +- vax-* | tahoe-* | i[234567]86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \ ++ vax-* | tahoe-* | i*86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \ + | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | c[123]* \ + | arm-* | armbe-* | armle-* | armv*-* | strongarm-* | xscale-* \ + | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \ +@@ -271,7 +272,8 @@ + | we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \ + | clipper-* | orion-* \ + | sparclite-* | pdp10-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \ +- | sparc64-* | sparcv9-* | sparc86x-* | mips16-* | mips64-* | mipsel-* \ ++ | sparc64-* | sparcv9-* | sparcv9b-* | sparc86x-* \ ++ | mips16-* | mips64-* | mipsel-* \ + | mips64el-* | mips64orion-* | mips64orionel-* \ + | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \ + | mipstx39-* | mipstx39el-* | mcore-* \ +@@ -506,19 +508,19 @@ + basic_machine=i370-ibm + ;; + # I'm not sure what "Sysv32" means. Should this be sysv3.2? +- i[34567]86v32) ++ i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; +- i[34567]86v4*) ++ i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; +- i[34567]86v) ++ i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; +- i[34567]86sol2) ++ i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; +@@ -935,7 +937,7 @@ + sh3 | sh4) + basic_machine=sh-unknown + ;; +- sparc | sparcv9) ++ sparc | sparcv9 | sparcv9b) + basic_machine=sparc-sun + ;; + cydra) +@@ -1025,7 +1027,7 @@ + ;; + -qnx*) + case $basic_machine in +- x86-* | i[34567]86-*) ++ x86-* | i*86-*) + ;; + *) + os=-nto$os Added: trunk/packages/kdebindings/debian/libdcopc-dev.files =================================================================== --- trunk/packages/kdebindings/debian/libdcopc-dev.files 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libdcopc-dev.files 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,2 @@ +usr/lib/libdcopc.so +usr/include/dcopc/* Added: trunk/packages/kdebindings/debian/libdcopc1.files =================================================================== --- trunk/packages/kdebindings/debian/libdcopc1.files 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libdcopc1.files 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,3 @@ +usr/lib/libdcopc.so.1.0.0 +usr/lib/libdcopc.so.1 +usr/lib/libdcopc.la Added: trunk/packages/kdebindings/debian/libdcopc1.shlibs =================================================================== --- trunk/packages/kdebindings/debian/libdcopc1.shlibs 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libdcopc1.shlibs 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1 @@ +libdcopc 1 libdcopc1 (>= 2.2.2-0) Added: trunk/packages/kdebindings/debian/libkdexparts-dev.files =================================================================== --- trunk/packages/kdebindings/debian/libkdexparts-dev.files 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libkdexparts-dev.files 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,4 @@ +usr/include/xkparts/* +usr/lib/libkdexparts.so +usr/lib/libgtkxparts.so +usr/lib/libxp_notepadpart.so Added: trunk/packages/kdebindings/debian/libkdexparts1.docs =================================================================== --- trunk/packages/kdebindings/debian/libkdexparts1.docs 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libkdexparts1.docs 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,2 @@ +xparts/AUTHORS +xparts/TODO Added: trunk/packages/kdebindings/debian/libkdexparts1.files =================================================================== --- trunk/packages/kdebindings/debian/libkdexparts1.files 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libkdexparts1.files 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,13 @@ +usr/lib/libkdexparts.so.1.0.0 +usr/lib/libkdexparts.so.1 +usr/lib/libkdexparts.la +usr/lib/libgtkxparts.so.0.0.0 +usr/lib/libgtkxparts.so.0 +usr/lib/libgtkxparts.la +usr/lib/libxp_notepadpart.so.0.0.0 +usr/lib/libxp_notepadpart.so.0 +usr/lib/libxp_notepadpart.la +usr/bin/xp_notepad +usr/bin/shell_xparthost +usr/share/services/xp_notepad.desktop +usr/share/lintian/overrides/libkdexparts1 Added: trunk/packages/kdebindings/debian/libkdexparts1.override =================================================================== --- trunk/packages/kdebindings/debian/libkdexparts1.override 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libkdexparts1.override 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,2 @@ +libkdexparts1: binary-or-shlib-defines-rpath ./usr/bin/kmozilla /usr/lib/mozilla + Added: trunk/packages/kdebindings/debian/libkdexparts1.shlibs =================================================================== --- trunk/packages/kdebindings/debian/libkdexparts1.shlibs 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/libkdexparts1.shlibs 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,3 @@ +libkdexparts 1 libkdexparts1 (>= 2.2.2-0) +libgtkxparts 0 libkdexparts1 (>= 2.2.2-0) +libxp_notepadpart 0 libkdexparts1 (>= 2.2.2-0) Added: trunk/packages/kdebindings/debian/rules =================================================================== --- trunk/packages/kdebindings/debian/rules 2003-10-31 06:36:21 UTC (rev 3) +++ trunk/packages/kdebindings/debian/rules 2003-10-31 06:41:15 UTC (rev 4) @@ -0,0 +1,103 @@ +#!/usr/bin/make -f +# Made with the aid of debmake, by Christoph Lameter, +# based on the sample debian/rules file for GNU hello by Ian Jackson. +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export DH_COMPAT=3 + +tmp = $(shell pwd)/debian/tmp +SHELL=/bin/sh + +ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH) +ifeq ($(ARCH),alpha) + export CFLAGS=-O0 -mieee + export CXXFLAGS=-O0 -mieee +endif + +ifeq ($(ARCH),i386) + # Uncomment the following 2 lines for i686 optimization + #export CFLAGS=-O3 -march=i686 -ffast-math -finline-functions + #export CXXFLAGS=-O3 -march=i686 -ffast-math -finline-functions + XINERAMA=--with-xinerama +endif + +build: build-stamp + +ifndef PERL +PERL=/usr/bin/perl +endif + +-include debian/debiandirs + +debian/debiandirs: admin/debianrules + perl -w admin/debianrules echodirs > debian/debiandirs + +build-stamp: + dh_testdir + if test ! -f configure; then \ + make -f admin/Makefile.common ;\ + fi + -chmod 755 configure + ./configure $(configkde) --without-java $(XINERAMA) + make + make -C dcoppython + cp dcopperl/Makefile.PL debian/Makefile.back + cp debian/Makefile.Debian.PL dcopperl/Makefile.PL + (cd dcopperl ; $(PERL) Makefile.PL INSTALLDIRS=vendor ; \ + make OPTIMIZE="-O2 -g -Wall" ) + + touch build-stamp + +debian-clean: + dh_testdir + -rm -f build-stamp + dh_clean + +clean: debian-clean + -rm -rf debian/debiandirs debian/tmp + -cp debian/Makefile.back dcopperl/Makefile.PL + if test -d CVS; then \ + make -f admin/Makefile.common cvs-clean ;\ + fi + -make distclean + +binary-indep: build + dh_testdir + dh_testroot + + +binary-arch: build + dh_testdir + dh_testroot + dh_clean + dh_installdirs + make DESTDIR=$(tmp)/ install + make -C dcoppython DESTDIR=$(tmp)/ install + make -C dcopperl PREFIX=$(tmp)/usr install + dh_installdocs + dh_installman + install -d $(tmp)/usr/share/lintian/overrides + cp debian/*.override $(tmp)/usr/share/lintian/overrides/ + for i in `ls debian/tmp/usr/share/lintian/overrides/`; do \ + mv debian/tmp/usr/share/lintian/overrides/$$i debian/tmp/usr/share/lintian/overrides/`echo $$i | sed -e 's#.override##'`; \ + done + dh_movefiles --sourcedir=debian/tmp + dh_installchangelogs + dh_strip + dh_perl + dh_compress -X.docbook -X.css -X-license -X.dcl -X.bz2 + dh_fixperms + -chmod 755 debian/dcoppython/usr/lib/python2.1/qt.py + dh_makeshlibs -V + dh_installdeb + dh_shlibdeps -l`pwd`/debian/libdcopc1/usr/lib:`pwd`/debian/libkdexparts1/usr/lib + dh_gencontrol + dh_md5sums + dh_builddeb + +# Below here is fairly generic really + +binary: binary-indep binary-arch + +.PHONY: binary binary-arch clean Property changes on: trunk/packages/kdebindings/debian/rules ___________________________________________________________________ Name: svn:executable + *