You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.8 KiB
64 lines
1.8 KiB
#! /usr/bin/make -f
|
|
|
|
DEB_PATCHDIRS := debian/patches/common debian/patches
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include debian/cdbs/kde.mk
|
|
#include /usr/share/cdbs/1/rules/patchsys-quilt.mk
|
|
include /usr/share/cdbs/1/rules/utils.mk
|
|
|
|
-include debian/debiandirs
|
|
|
|
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
|
DEB_PARALLEL_JOBS ?= $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
|
|
endif
|
|
DEB_MAKE_PARALLEL ?= $(and $(DEB_BUILD_PARALLEL),$(DEB_PARALLEL_JOBS),-j$(DEB_PARALLEL_JOBS))
|
|
|
|
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
|
&& echo xz || echo bzip2)
|
|
|
|
DEB_INSTALL_DOCS_ALL :=
|
|
|
|
DOC_LANGS = da de et fr it nl pl pt ru sv pt_BR
|
|
|
|
post-patches:: debian/stamp-bootstrap
|
|
|
|
debian/stamp-bootstrap:
|
|
dh_testdir
|
|
|
|
# Regenerate build system
|
|
ifneq "$(wildcard /usr/share/libtool/ltmain.sh)" ""
|
|
cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh
|
|
endif
|
|
ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
|
|
cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
|
|
endif
|
|
ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
|
|
cp -f /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh
|
|
endif
|
|
cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
|
|
|
autoreconf && automake -f && \
|
|
$(MAKE) -f admin/Makefile.common && \
|
|
./configure $(configkde)
|
|
touch debian/stamp-bootstrap
|
|
|
|
build: debian/build-stamp
|
|
|
|
debian/build-stamp:
|
|
dh_testdir
|
|
$(MAKE) $(DEB_MAKE_PARALLEL)
|
|
touch debian/build-stamp
|
|
|
|
install/gwenview-i18n-trinity::
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
|
|
$(MAKE) install DESTDIR=$(CURDIR)/debian/gwenview-i18n-trinity $(DEB_MAKE_PARALLEL)
|
|
|
|
for LANG in $(DOC_LANGS); do \
|
|
cd $(CURDIR)/debian/gwenview-i18n-trinity/$(kde_htmldir)/$$LANG/gwenview; \
|
|
$(kde_prefix)/bin/meinproc $(DEB_DESTDIR)$(kde_htmldir)/$$LANG/gwenview/index.docbook; \
|
|
done
|