diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-09-16 01:55:07 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-07-18 00:29:41 +0200 |
commit | 02e5d6d9bcc02748d9082d5027a011962bab245d (patch) | |
tree | 2ae82410e688efeee3526b7f127287e3ffcaf0fa /ubuntu/maverick | |
parent | f025c10ab2c705f3b86669b3dae1817c0cdd6d1d (diff) | |
download | tde-packaging-02e5d6d9bcc02748d9082d5027a011962bab245d.tar.gz tde-packaging-02e5d6d9bcc02748d9082d5027a011962bab245d.zip |
Fix quilt conversion issues on Debian and Ubuntu
(cherry picked from commit 27db9395460b4fb8919d5f725e84fa24704803aa)
Diffstat (limited to 'ubuntu/maverick')
-rwxr-xr-x | ubuntu/maverick/applications/basket/debian/rules | 2 | ||||
-rwxr-xr-x | ubuntu/maverick/applications/piklab/debian/rules | 3 | ||||
-rwxr-xr-x | ubuntu/maverick/dependencies/qt3/debian/rules | 3 | ||||
-rw-r--r-- | ubuntu/maverick/libraries/mlt/debian/control | 2 | ||||
-rwxr-xr-x | ubuntu/maverick/libraries/mlt/debian/rules | 13 |
5 files changed, 16 insertions, 7 deletions
diff --git a/ubuntu/maverick/applications/basket/debian/rules b/ubuntu/maverick/applications/basket/debian/rules index 1de38c154..200c5baf7 100755 --- a/ubuntu/maverick/applications/basket/debian/rules +++ b/ubuntu/maverick/applications/basket/debian/rules @@ -28,6 +28,8 @@ endif #include /usr/share/cdbs/1/rules/patchsys-quilt.mk +post-patches:: + dh_testdir config.status: post-patches dh_testdir diff --git a/ubuntu/maverick/applications/piklab/debian/rules b/ubuntu/maverick/applications/piklab/debian/rules index 416588f8a..4fd3da4c2 100755 --- a/ubuntu/maverick/applications/piklab/debian/rules +++ b/ubuntu/maverick/applications/piklab/debian/rules @@ -28,6 +28,9 @@ endif #include /usr/share/cdbs/1/rules/patchsys-quilt.mk +post-patches:: + dh_testdir + config: post-patches config-stamp config-stamp: configure dh_testdir diff --git a/ubuntu/maverick/dependencies/qt3/debian/rules b/ubuntu/maverick/dependencies/qt3/debian/rules index 1b4954261..ab08954aa 100755 --- a/ubuntu/maverick/dependencies/qt3/debian/rules +++ b/ubuntu/maverick/dependencies/qt3/debian/rules @@ -119,6 +119,9 @@ ifeq ($(DEB_HOST_ARCH),arm) CONFIGURE_OPTS += -DQT_QLOCALE_USES_FCVT endif +post-patches:: + dh_testdir + build: libqt-thread-stamp touch build-stamp diff --git a/ubuntu/maverick/libraries/mlt/debian/control b/ubuntu/maverick/libraries/mlt/debian/control index b55371a4d..aae91273f 100644 --- a/ubuntu/maverick/libraries/mlt/debian/control +++ b/ubuntu/maverick/libraries/mlt/debian/control @@ -5,7 +5,7 @@ Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> XSBC-Original-Maintainer: Maintainer: Christian Marillat <marillat@debian.org> Homepage: http://mlt.sourceforge.net/ Standards-Version: 3.8.3 -Build-Depends: debhelper (>= 5), libdv4-dev, libquicktime-dev (>= 2:1.0.0), +Build-Depends: cdbs, debhelper (>= 5), libdv4-dev, libquicktime-dev (>= 2:1.0.0), libvorbis-dev, libsdl-dev | libsdl1.2-dev, libgtk2.0-dev, libjack-dev, quilt, libsamplerate-dev, libmad0-dev, kdelibs4-trinity-dev, imagemagick, ffmpeg, libflac-dev, libavcodec-dev, libxml2-dev, ladspa-sdk, libavutil-dev, libxcursor-dev, diff --git a/ubuntu/maverick/libraries/mlt/debian/rules b/ubuntu/maverick/libraries/mlt/debian/rules index d45bb4be3..80bbbcdc7 100755 --- a/ubuntu/maverick/libraries/mlt/debian/rules +++ b/ubuntu/maverick/libraries/mlt/debian/rules @@ -44,11 +44,14 @@ ifeq "$(DEBIAN_ARCH)" "amd64" CONFIGURE_OPTS = --enable-motion-est endif -configure: configure-stamp -configure-stamp: +#include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +post-patches:: dh_testdir - #QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2 +configure: configure-stamp +configure-stamp: post-patches + dh_testdir CFLAGS="$(CFLAGS)" PATH=/opt/trinity/bin:$(PATH) LD_LIBRARY_PATH=/opt/trinity/lib:$(LD_LIBRARY_PATH) CMAKE_LIBRARY_PATH=/opt/trinity/lib CMAKE_INCLUDE_PATH=/opt/trinity/include/kde ./configure --enable-gpl \ --luma-compress --disable-mmx $(CONFIGURE_OPTS) \ @@ -65,15 +68,13 @@ build-stamp: touch build-stamp -clean: +clean:: dh_testdir dh_testroot rm -f build-stamp configure-stamp [ ! -f config.mak ] || $(MAKE) dist-clean - #QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2 - dh_clean *.pc src/modules/gtk2/config.h config.log find -name config.mak | xargs -r rm |