diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-24 14:32:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-24 14:32:28 -0600 |
commit | c7d982080a499d2dad14754de8781024a816c9f0 (patch) | |
tree | 4076c46e85a20c51c79e217de1d8ba5cd4b43343 /ubuntu/maverick/applications/kio-locate/debian/rules | |
parent | 2c4e690329eb2f4787d3df8998596e6470e50f29 (diff) | |
download | tde-packaging-c7d982080a499d2dad14754de8781024a816c9f0.tar.gz tde-packaging-c7d982080a499d2dad14754de8781024a816c9f0.zip |
Build kio-locate with CMake
Diffstat (limited to 'ubuntu/maverick/applications/kio-locate/debian/rules')
-rwxr-xr-x | ubuntu/maverick/applications/kio-locate/debian/rules | 47 |
1 files changed, 19 insertions, 28 deletions
diff --git a/ubuntu/maverick/applications/kio-locate/debian/rules b/ubuntu/maverick/applications/kio-locate/debian/rules index f10f5f7c1..4a1d73457 100755 --- a/ubuntu/maverick/applications/kio-locate/debian/rules +++ b/ubuntu/maverick/applications/kio-locate/debian/rules @@ -1,37 +1,28 @@ #!/usr/bin/make -f -include /usr/share/cdbs/1/rules/debhelper.mk - -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info - -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) +# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function +# Also include the main Trinity path +ifeq ("$(LD_LIBRARY_PATH)", "") +LD_LIBRARY_PATH=debian/tmp/opt/trinity/lib +else +LD_LIBRARY_PATH += :debian/tmp/opt/trinity/lib +endif +export LD_LIBRARY_PATH -DEB_COMPRESS_EXCLUDE=.docbook -DEB_SCONS_PREFIX=/opt/trinity - -CONFIG_STATUS=$(DEB_BUILDDIR)/config.status -SCONS_CMD=/usr/bin/scons +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk -common-configure-arch common-configure-indep:: common-configure-impl -common-configure-impl:: $(CONFIG_STATUS) -$(CONFIG_STATUS): - env PATH=/opt/trinity/bin:$(PATH) $(SCONS_CMD) configure prefix=$(DEB_DESTDIR)$(DEB_SCONS_PREFIX) - touch $(CONFIG_STATUS) +DEB_KDE_APIDOX := yes -common-build-arch common-build-indep:: common-build-impl -common-build-impl:: - env PATH=/opt/trinity/bin:$(PATH) $(SCONS_CMD) - rm -f doc/en/index.cache.bz2 +CXXFLAGS := -DSMB_CTX_FLAG_USE_KERBEROS -DSMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS -g -Wall $(DEB_OPT_FLAG) -common-install-arch common-install-indep:: common-install-impl -common-install-impl:: - env PATH=/opt/trinity/bin:$(PATH) DESTDIR=$(DEB_DESTDIR) $(SCONS_CMD) install +DEB_CMAKE_EXTRA_FLAGS := -DLIB_SUFFIX="" -DCMAKE_INSTALL_PREFIX="/opt/trinity" -DCONFIG_INSTALL_DIR="/etc/trinity" -DSYSCONF_INSTALL_DIR="/etc/trinity" -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" -DCMAKE_LIBRARY_PATH="/opt/trinity/lib" -DCMAKE_INCLUDE_PATH="/opt/trinity/include/" -DAUTODETECT_QT_DIRS="ON" -DCMAKE_VERBOSE_MAKEFILE="ON" -DBUILD_ALL="ON" -DCMAKE_SKIP_RPATH="OFF" -clean:: - rm -rf build cache scons-mini - rm -f admin/*.pyc $(CONFIG_STATUS) +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true DEB_INSTALL_DOCS_kio-locate-trinity := -XREADME -XNEWS -XTODO -XAUTHORS |