~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to debian/debian.diff

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--- kdemultimedia-2.2.0-final.orig/kmidi/BITMAPS/Makefile.am
2
 
+++ kdemultimedia-2.2.0-final/kmidi/BITMAPS/Makefile.am
3
 
@@ -4,7 +4,7 @@
4
 
        off.xbm on.xbm pause.xbm play.xbm prev.xbm quit.xbm restart.xbm \
5
 
        stop.xbm tback.xbm timidity.xbm tnext.xbm tpause.xbm tprev.xbm tquit.xbm
6
 
 
7
 
-TIMID_DIR = $(kde_datadir)/kmidi/config
8
 
+TIMID_DIR = $(kde_datadir)/kmidi
9
 
 
10
 
 EXTRA_DIST = $(CONFIG_FILES)
11
 
 
12
 
--- kdemultimedia-2.2.0-final.orig/kmidi/Makefile.am
13
 
+++ kdemultimedia-2.2.0-final/kmidi/Makefile.am
14
 
@@ -21,7 +21,7 @@
15
 
 # Where to install the patches, config files, and MIDI files.
16
 
 # If you change this, it's a good idea to recompile the binary,
17
 
 # or you'll need to invoke timidity with the -L option.
18
 
-TIMID_DIR = $(kde_datadir)/kmidi/config
19
 
+TIMID_DIR = $(kde_datadir)/kmidi
20
 
 
21
 
 
22
 
 bin_PROGRAMS = kmidi sf2cfg
23
 
--- kdemultimedia-2.2.0-final.orig/kmidi/config.h
24
 
+++ kdemultimedia-2.2.0-final/kmidi/config.h
25
 
@@ -299,10 +299,10 @@
26
 
 /* You could specify a complete path, e.g. "/etc/timidity.cfg", and
27
 
    then specify the library directory in the configuration file. */
28
 
 #ifdef ADAGIO
29
 
-#define CONFIG_FILE    TIMID_DIR "/timidity.cfg"
30
 
+#define CONFIG_FILE    "/etc/kde2/timidity.cfg"
31
 
 #else
32
 
 #ifndef CONFIG_FILE
33
 
-#define CONFIG_FILE DEFAULT_PATH "/timidity.cfg"
34
 
+#define CONFIG_FILE "/etc/kde2/timidity.cfg"
35
 
 #endif
36
 
 #endif
37
 
 
38
 
--- kdemultimedia-2.2.0-final.orig/kmidi/TIMIDITY/Makefile.am
39
 
+++ kdemultimedia-2.2.0-final/kmidi/TIMIDITY/Makefile.am
40
 
@@ -19,14 +19,14 @@
41
 
 # Where to install the patches, config files, and MIDI files.
42
 
 # If you change this, it's a good idea to recompile the binary,
43
 
 # or you'll need to invoke timidity with the -L option.
44
 
-TIMID_DIR = /$(kde_datadir)/kmidi/config
45
 
+TIMID_DIR = $(kde_datadir)/kmidi
46
 
 
47
 
 appsdir = $(kde_appsdir)/Multimedia
48
 
 apps_DATA = timidity.desktop
49
 
 
50
 
-bin_PROGRAMS = timidity
51
 
+bin_PROGRAMS = ktimidity
52
 
 
53
 
-timidity_SOURCES = timidity.c common.c readmidi.c playmidi.c resample.c mix.c instrum.c \
54
 
+ktimidity_SOURCES = timidity.c common.c readmidi.c playmidi.c resample.c mix.c instrum.c \
55
 
         tables.c controls.c output.c filter.c \
56
 
         wave_a.c raw_a.c dumb_c.c fffload.c \
57
 
         sndfont.c readsbk.c \
58
 
--- kdemultimedia-2.2.0-final.orig/kmidi/TIMIDITY/timidity.desktop
59
 
+++ kdemultimedia-2.2.0-final/kmidi/TIMIDITY/timidity.desktop
60
 
@@ -85,7 +85,7 @@
61
 
 Name[vi]=Tổng hợp TiMidity 
62
 
 Name[zh_CN.GB2312]=TiMidity 合成器
63
 
 DocPath=kmidi/index.html
64
 
-Exec=timidity -iatv
65
 
+Exec=ktimidity -iatv
66
 
 Icon=kmidi
67
 
 TerminalOptions=
68
 
 Path=
69
 
--- kdemultimedia-2.2.0-final.orig/kmidi/config/Makefile.am
70
 
+++ kdemultimedia-2.2.0-final/kmidi/config/Makefile.am
71
 
@@ -2,23 +2,23 @@
72
 
 
73
 
 CONFIG_FILES = gravis.cfg gsdrum.cfg midia.cfg mt32.cfg timidity.cfg wowpats.cfg chaos12-voices chaos8-voices megadrum megainst pila-voices sound-canvas-drums guitar piano piano+guitar drums $(TCLFILES)
74
 
 
75
 
-TIMID_DIR = $(kde_datadir)/kmidi/config
76
 
+TIMID_DIR = $(kde_confdir)/kmidi
77
 
 
78
 
 EXTRA_DIST = $(CONFIG_FILES)
79
 
 
80
 
 SUBDIRS = patch
81
 
 
82
 
 install-data-local:
83
 
-       $(mkinstalldirs) $(TIMID_DIR)
84
 
+       $(mkinstalldirs) $(DESTDIR)$(TIMID_DIR)
85
 
        @for i in $(CONFIG_FILES); do \
86
 
-         if [ ! -f "$(TIMID_DIR)/$$i" ] ; then  \
87
 
+         if [ ! -f "$(DESTDIR)$(TIMID_DIR)/$$i" ] ; then  \
88
 
            echo "$(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(TIMID_DIR)"; \
89
 
            $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(TIMID_DIR) ; \
90
 
           fi ; \
91
 
         done
92
 
-       if [ ! -f "$(TIMID_DIR)/tclIndex" -a -f "$(TIMID_DIR)/misc.tcl" ] ; then  \
93
 
-         (cd $(TIMID_DIR); sed -e s@%TCL_DIR%@$(TIMID_DIR)@g $(srcdir)/tkmidity.ptcl > tkmidity.tcl ) ; \
94
 
-         (cd $(TIMID_DIR); echo 'auto_mkindex . *.tcl; exit' | tclsh ) ; \
95
 
+       if [ ! -f "$(DESTDIR)$(TIMID_DIR)/tclIndex" -a -f "$(DESTDIR)$(TIMID_DIR)/misc.tcl" ] ; then  \
96
 
+         (cd $(DESTDIR)$(TIMID_DIR); sed -e s@%TCL_DIR%@$(TIMID_DIR)@g $(srcdir)/tkmidity.ptcl > tkmidity.tcl ) ; \
97
 
+         (cd $(DESTDIR)$(TIMID_DIR); echo 'auto_mkindex . *.tcl; exit' | tclsh ) ; \
98
 
        fi
99
 
 
100
 
 uninstall-local:
101
 
--- kdemultimedia-2.2.0-final.orig/kmidi/config/timidity.cfg
102
 
+++ kdemultimedia-2.2.0-final/kmidi/config/timidity.cfg
103
 
@@ -28,7 +28,7 @@
104
 
 # If you've moved things around since compiling, uncomment and edit this to
105
 
 # point to the library directory: 
106
 
 #
107
 
-#dir /opt/kde/share/apps/kmidi/config
108
 
+dir /etc/kde2/kmidi
109
 
 #
110
 
 
111
 
 ##############################################################################
112
 
--- kdemultimedia-2.2.0-final.orig/kmidi/config/tkmidity.ptcl
113
 
+++ kdemultimedia-2.2.0-final/kmidi/config/tkmidity.ptcl
114
 
@@ -1,4 +1,4 @@
115
 
-#!/usr/local/bin/wishx -f
116
 
+#!/usr/bin/wishx -f
117
 
 #
118
 
 # TkMidity -- Tcl/Tk Interface for TiMidity
119
 
 #      written by Takashi IWAI
120
 
--- kdemultimedia-2.2.0-final.orig/kmidi/config/tkpanel.tcl
121
 
+++ kdemultimedia-2.2.0-final/kmidi/config/tkpanel.tcl
122
 
@@ -1,4 +1,4 @@
123
 
-#!/usr/local/bin/wishx -f
124
 
+#!/usr/bin/wishx -f
125
 
 #
126
 
 # TkMidity -- Tcl/Tk Interface for TiMidity
127
 
 #      written by Takashi IWAI
128
 
--- kdemultimedia-2.2.0-final.orig/mpeglib/configure.in.in
129
 
+++ kdemultimedia-2.2.0-final/mpeglib/configure.in.in
130
 
@@ -108,21 +108,6 @@
131
 
    DGALIBS="-lXxf86dga"
132
 
 fi
133
 
 
134
 
-AC_MSG_CHECKING(for X11 video extension)
135
 
-x11_xv=no
136
 
-AC_TRY_COMPILE([
137
 
-                #include <X11/Xlib.h>
138
 
-                #include <X11/extensions/Xvlib.h>
139
 
-                ],[
140
 
-                ],[
141
 
-                x11_xv=yes
142
 
-                ])
143
 
-AC_MSG_RESULT($x11_xv)
144
 
-if test x$x11_xv = xyes; then
145
 
-   AC_DEFINE(X11_XV,1,[Define if you have XFree4.0 XV extension])
146
 
-   XVLIBS="-lXv"
147
 
-fi
148
 
-
149
 
 AC_MSG_CHECKING(for X11 videomode extension)
150
 
 x11_xvidmode=no
151
 
 AC_TRY_COMPILE([
152
 
--- kdemultimedia-2.2.0-final.orig/noatun/noatun/modules/kjofol-skin/noatun_kjofol_fixskin.sh
153
 
+++ kdemultimedia-2.2.0-final/noatun/noatun/modules/kjofol-skin/noatun_kjofol_fixskin.sh
154
 
@@ -1,4 +1,4 @@
155
 
-#!sh
156
 
+#!/bin/sh
157
 
 
158
 
 cd $1
159
 
 
160
 
--- kdemultimedia-2.2.0-final.orig/admin/config.guess
161
 
+++ kdemultimedia-2.2.0-final/admin/config.guess
162
 
@@ -3,7 +3,7 @@
163
 
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
164
 
 #   Free Software Foundation, Inc.
165
 
 
166
 
-timestamp='2001-03-30'
167
 
+timestamp='2001-04-20'
168
 
 
169
 
 # This file is free software; you can redistribute it and/or modify it
170
 
 # under the terms of the GNU General Public License as published by
171
 
@@ -412,6 +412,9 @@
172
 
        rm -f $dummy.c $dummy
173
 
        echo mips-mips-riscos${UNAME_RELEASE}
174
 
        exit 0 ;;
175
 
+    Motorola:PowerMAX_OS:*:*)
176
 
+       echo powerpc-motorola-powermax
177
 
+       exit 0 ;;
178
 
     Night_Hawk:Power_UNIX:*:*)
179
 
        echo powerpc-harris-powerunix
180
 
        exit 0 ;;
181
 
@@ -459,7 +462,7 @@
182
 
     ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
183
 
        echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id
184
 
        exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX '
185
 
-    i?86:AIX:*:*)
186
 
+    i*86:AIX:*:*)
187
 
        echo i386-ibm-aix
188
 
        exit 0 ;;
189
 
     ia64:AIX:*:*)
190
 
@@ -639,7 +642,7 @@
191
 
     hp8??:OSF1:*:*)
192
 
        echo hppa1.0-hp-osf
193
 
        exit 0 ;;
194
 
-    i?86:OSF1:*:*)
195
 
+    i*86:OSF1:*:*)
196
 
        if [ -x /usr/sbin/sysversion ] ; then
197
 
            echo ${UNAME_MACHINE}-unknown-osf1mk
198
 
        else
199
 
@@ -705,7 +708,7 @@
200
 
     hp300:OpenBSD:*:*)
201
 
        echo m68k-unknown-openbsd${UNAME_RELEASE}
202
 
        exit 0 ;;
203
 
-    i?86:BSD/386:*:* | i?86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
204
 
+    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
205
 
        echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
206
 
        exit 0 ;;
207
 
     sparc*:BSD/OS:*:*)
208
 
@@ -876,7 +879,7 @@
209
 
     x86_64:Linux:*:*)
210
 
        echo x86_64-unknown-linux-gnu
211
 
        exit 0 ;;
212
 
-    i?86:Linux:*:*)
213
 
+    i*86:Linux:*:*)
214
 
        # The BFD linker knows what the default object file format is, so
215
 
        # first see if it will tell us. cd to the root directory to prevent
216
 
        # problems with other programs or directories called `ld' in the path.
217
 
@@ -887,14 +890,14 @@
218
 
                                    s/ .*//
219
 
                                    p'`
220
 
         case "$ld_supported_emulations" in
221
 
-         i?86linux)
222
 
+         i*86linux)
223
 
                echo "${UNAME_MACHINE}-pc-linux-gnuaout"
224
 
                exit 0
225
 
                ;;
226
 
-         elf_i?86)
227
 
+         elf_i*86)
228
 
                TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
229
 
                ;;
230
 
-         i?86coff)
231
 
+         i*86coff)
232
 
                echo "${UNAME_MACHINE}-pc-linux-gnucoff"
233
 
                exit 0
234
 
                ;;
235
 
@@ -906,7 +909,7 @@
236
 
        # that means it is gnuoldld.
237
 
        test -z "$ld_supported_emulations" && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0
238
 
        case "${UNAME_MACHINE}" in
239
 
-       i?86)
240
 
+       i*86)
241
 
          VENDOR=pc;
242
 
          ;;
243
 
        *)
244
 
@@ -944,10 +947,10 @@
245
 
        ;;
246
 
 # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.  earlier versions
247
 
 # are messed up and put the nodename in both sysname and nodename.
248
 
-    i?86:DYNIX/ptx:4*:*)
249
 
+    i*86:DYNIX/ptx:4*:*)
250
 
        echo i386-sequent-sysv4
251
 
        exit 0 ;;
252
 
-    i?86:UNIX_SV:4.2MP:2.*)
253
 
+    i*86:UNIX_SV:4.2MP:2.*)
254
 
         # Unixware is an offshoot of SVR4, but it has its own version
255
 
         # number series starting with 2...
256
 
         # I am not positive that other SVR4 systems won't match this,
257
 
@@ -955,7 +958,7 @@
258
 
         # Use sysv4.2uw... so that sysv4* matches it.
259
 
        echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
260
 
        exit 0 ;;
261
 
-    i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*)
262
 
+    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
263
 
        UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
264
 
        if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
265
 
                echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
266
 
@@ -963,7 +966,7 @@
267
 
                echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
268
 
        fi
269
 
        exit 0 ;;
270
 
-    i?86:*:5:7*)
271
 
+    i*86:*:5:7*)
272
 
         # Fixed at (any) Pentium or better
273
 
         UNAME_MACHINE=i586
274
 
         if [ ${UNAME_SYSTEM} = "UnixWare" ] ; then
275
 
@@ -972,7 +975,7 @@
276
 
            echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE}
277
 
        fi
278
 
        exit 0 ;;
279
 
-    i?86:*:3.2:*)
280
 
+    i*86:*:3.2:*)
281
 
        if test -f /usr/options/cb.name; then
282
 
                UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
283
 
                echo ${UNAME_MACHINE}-pc-isc$UNAME_REL
284
 
@@ -990,7 +993,7 @@
285
 
                echo ${UNAME_MACHINE}-pc-sysv32
286
 
        fi
287
 
        exit 0 ;;
288
 
-    i?86:*DOS:*:*)
289
 
+    i*86:*DOS:*:*)
290
 
        echo ${UNAME_MACHINE}-pc-msdosdjgpp
291
 
        exit 0 ;;
292
 
     pc:*:*:*)
293
 
@@ -1035,7 +1038,7 @@
294
 
     mc68030:UNIX_System_V:4.*:*)
295
 
        echo m68k-atari-sysv4
296
 
        exit 0 ;;
297
 
-    i?86:LynxOS:2.*:* | i?86:LynxOS:3.[01]*:* | i?86:LynxOS:4.0*:*)
298
 
+    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
299
 
        echo i386-unknown-lynxos${UNAME_RELEASE}
300
 
        exit 0 ;;
301
 
     TSUNAMI:LynxOS:2.*:*)
302
 
@@ -1146,7 +1149,7 @@
303
 
        fi
304
 
        echo ${UNAME_MACHINE}-unknown-plan9
305
 
        exit 0 ;;
306
 
-    i?86:OS/2:*:*)
307
 
+    i*86:OS/2:*:*)
308
 
        # If we were able to find `uname', then EMX Unix compatibility
309
 
        # is probably installed.
310
 
        echo ${UNAME_MACHINE}-pc-os2-emx
311
 
--- kdemultimedia-2.2.0-final.orig/admin/config.sub
312
 
+++ kdemultimedia-2.2.0-final/admin/config.sub
313
 
@@ -3,7 +3,7 @@
314
 
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
315
 
 #   Free Software Foundation, Inc.
316
 
 
317
 
-timestamp='2001-03-30'
318
 
+timestamp='2001-04-20'
319
 
 
320
 
 # This file is (in principle) common to ALL GNU software.
321
 
 # The presence of a machine in this file suggests that SOME GNU software
322
 
@@ -231,7 +231,8 @@
323
 
                | mips64orion | mips64orionel | mipstx39 | mipstx39el \
324
 
                | mips64vr4300 | mips64vr4300el | mips64vr4100 | mips64vr4100el \
325
 
                | mips64vr5000 | miprs64vr5000el | mcore | s390 | s390x \
326
 
-               | sparc | sparclet | sparclite | sparc64 | sparcv9 | v850 | c4x \
327
 
+               | sparc | sparclet | sparclite | sparc64 | sparcv9 | sparcv9b \
328
 
+               | v850 | c4x \
329
 
                | thumb | d10v | d30v | fr30 | avr | openrisc | tic80 \
330
 
                | pj | pjl | h8500)
331
 
                basic_machine=$basic_machine-unknown
332
 
@@ -247,7 +248,7 @@
333
 
        # We use `pc' rather than `unknown'
334
 
        # because (1) that's what they normally are, and
335
 
        # (2) the word "unknown" tends to confuse beginning users.
336
 
-       i[234567]86 | x86_64)
337
 
+       i*86 | x86_64)
338
 
          basic_machine=$basic_machine-pc
339
 
          ;;
340
 
        # Object if more than one company name word.
341
 
@@ -257,7 +258,7 @@
342
 
                ;;
343
 
        # Recognize the basic CPU types with company name.
344
 
        # FIXME: clean up the formatting here.
345
 
-       vax-* | tahoe-* | i[234567]86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \
346
 
+       vax-* | tahoe-* | i*86-* | i860-* | ia64-* | m32r-* | m68k-* | m68000-* \
347
 
              | m88k-* | sparc-* | ns32k-* | fx80-* | arc-* | c[123]* \
348
 
              | arm-*  | armbe-* | armle-* | armv*-* | strongarm-* | xscale-* \
349
 
              | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
350
 
@@ -271,7 +272,8 @@
351
 
              | we32k-* | cydra-* | ns16k-* | pn-* | np1-* | xps100-* \
352
 
              | clipper-* | orion-* \
353
 
              | sparclite-* | pdp10-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \
354
 
-             | sparc64-* | sparcv9-* | sparc86x-* | mips16-* | mips64-* | mipsel-* \
355
 
+             | sparc64-* | sparcv9-* | sparcv9b-* | sparc86x-* \
356
 
+             | mips16-* | mips64-* | mipsel-* \
357
 
              | mips64el-* | mips64orion-* | mips64orionel-* \
358
 
              | mips64vr4100-* | mips64vr4100el-* | mips64vr4300-* | mips64vr4300el-* \
359
 
              | mipstx39-* | mipstx39el-* | mcore-* \
360
 
@@ -506,19 +508,19 @@
361
 
                basic_machine=i370-ibm
362
 
                ;;
363
 
 # I'm not sure what "Sysv32" means.  Should this be sysv3.2?
364
 
-       i[34567]86v32)
365
 
+       i*86v32)
366
 
                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
367
 
                os=-sysv32
368
 
                ;;
369
 
-       i[34567]86v4*)
370
 
+       i*86v4*)
371
 
                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
372
 
                os=-sysv4
373
 
                ;;
374
 
-       i[34567]86v)
375
 
+       i*86v)
376
 
                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
377
 
                os=-sysv
378
 
                ;;
379
 
-       i[34567]86sol2)
380
 
+       i*86sol2)
381
 
                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
382
 
                os=-solaris2
383
 
                ;;
384
 
@@ -935,7 +937,7 @@
385
 
        sh3 | sh4)
386
 
                basic_machine=sh-unknown
387
 
                ;;
388
 
-       sparc | sparcv9)
389
 
+       sparc | sparcv9 | sparcv9b)
390
 
                basic_machine=sparc-sun
391
 
                ;;
392
 
         cydra)
393
 
@@ -1025,7 +1027,7 @@
394
 
                ;;
395
 
        -qnx*)
396
 
                case $basic_machine in
397
 
-                   x86-* | i[34567]86-*)
398
 
+                   x86-* | i*86-*)
399
 
                        ;;
400
 
                    *)
401
 
                        os=-nto$os