gtk+2.0 (2.6.7-2) unstable; urgency=low

* Upload to unstable.
  * Forward patches from 2.6.4 branch:
    + 003_focus_issues.patch: stolen from CVS HEAD to fix focus issues.
    + debian/gtk-tutorial.devhelp: updated to reflect the reality of the
      html files.
  * Loïc Minier:
    + Document the configuration of Emacs-style key bindings in README.Debian,
      with additional instructions for GNOME users. [debian/README.Debian]
      (Closes: #309530)

 -- Josselin Mouette <joss@debian.org>  Mon,  6 Jun 2005 22:39:27 +0200
This commit is contained in:
Josselin Mouette
2005-06-06 20:46:35 +00:00
parent 0492fc07d3
commit 5ff09a6bb5
13 changed files with 455 additions and 272 deletions

15
debian/rules vendored
View File

@ -26,10 +26,6 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
ifneq (,$(findstring $(DEB_HOST_GNU_TYPE),mipsel-linux mips-linux))
STATIC_CONFIG_ARGS = --disable-testsuite
endif
##
version=$(shell dpkg-parsechangelog | grep '^Version: ' | sed -e 's/^Version: //' -e 's/-[A-Za-z0-9\.\+]*$$//g' -e 's/+[A-Za-z0-9\.]*$$//g')
major=$(shell echo ${version} | sed -e 's/\(^[0-9]*\)\.[0-9]*\.[0-9]*$$/\1/')
@ -110,8 +106,7 @@ $(STAMP_DIR)/configure-static-stamp:
--with-included-loaders=yes \
--disable-modules \
--disable-shared \
--enable-static \
$(STATIC_CONFIG_ARGS)
--enable-static
cd $(BUILD_STATIC_DIR) && \
sed < libtool > libtool-2 \
@ -121,7 +116,7 @@ $(STAMP_DIR)/configure-static-stamp:
touch $@
configure: configure-shared
configure: configure-static configure-shared
build-shared: debian/control configure-shared $(STAMP_DIR)/build-shared-stamp
$(STAMP_DIR)/build-shared-stamp:
@ -147,7 +142,7 @@ $(STAMP_DIR)/build-static-stamp:
touch $@
build: build-shared
build: build-static build-shared
clean:: debian/control
dh_testdir
@ -182,7 +177,7 @@ install-static: build-static install-test
RUN_QUERY_IMMODULES_TEST=false \
RUN_QUERY_LOADER_TEST=false
install: install-shared
install: install-static install-shared
# generating debian files from .in
for f in `find debian/ -name "[^c]*.in"`; do \
sed -e "s/@VERSION@/${version}/g" -e "s/@MODVER@/${modver}/g" -e "s/@APIVER@/${apiver}/g" $$f > `echo $$f | sed -e "s/\.in//"`; \
@ -302,4 +297,4 @@ binary-arch: build install
dh_builddeb -a
binary: binary-indep binary-arch
.PHONY: build build-shared clean binary-indep binary-arch binary install install-shared configure configure-shared debian/control
.PHONY: build build-shared build-static clean binary-indep binary-arch binary install install-shared install-static configure configure-shared configure-static debian/control