[Pkg-sdl-commits] [SCM] Packaging of SDL_sound branch, master, updated. debian/1.0.3-5

Manuel A. Fernandez Montecelo manuel.montezelo at gmail.com
Sun Feb 5 20:46:16 UTC 2012


The following commit has been merged in the master branch:
commit f8c3085a042daf8352af3f51e4e6524b50090000
Author: Manuel A. Fernandez Montecelo <manuel.montezelo at gmail.com>
Date:   Sun Feb 5 17:04:49 2012 +0000

    Revamp debian/rules, create the file mostly from scracth to follow the style of the rest of SDL-related packages, and simplifying the file overall by taking advantage of newer debhelper compat levels.  Using newer dh compat levels also includes Multi-Arch, build-hardening and other goodies.

diff --git a/debian/rules b/debian/rules
index 120d48b..cb41513 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,117 +1,28 @@
 #!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
 
-# Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
 
-# These are used for cross-compiling and for saving the configure script
-# from having to guess our platform (since we know it already)
-DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+export DEB_CFLAGS_MAINT_APPEND = -pipe -Wall
+export DEB_LDFLAGS_MAINT_APPEND = -Wl,--no-undefined -Wl,--as-needed
 
 
-CFLAGS = -Wall -g
-CPPFLAGS = -I/usr/include/speex -I/usr/include/smpeg -I/usr/include/SDL
+# according to help: speeds up one-time build
+confflags  = --disable-dependency-tracking
+confflags += --disable-smpegtest
 
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-	CFLAGS += -O0
-else
-	CFLAGS += -O2
-endif
-ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
-	INSTALL_PROGRAM += -s
-endif
 
-# shared library versions, option 1
-#version=2.0.5
-#major=2
-# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
-#version=`ls .libs/lib*.so.* | \
-# awk '/[0-9]+\.[0-9]+\.[0-9]+$$/ { print substr($$0,RSTART) }'`
-#major=`ls .libs/lib*.so.* | \
-# awk '/\.so\.[0-9]+$$/ { print substr($$0,RSTART+4) }'`
+%:
+	dh $@ --with autoreconf --parallel
 
-config.status: configure
-	dh_testdir
-	# Add here commands to configure the package.
-	CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --disable-smpegtest
+override_dh_autoreconf:
+	dh_autoreconf ./autogen.sh
 
+override_dh_auto_configure:
+	dh_auto_configure -- $(confflags)
 
-build: build-stamp
-build-stamp:  config.status
-	dh_testdir
+override_dh_install:
+	dh_install --fail-missing -XlibSDL_sound.la
 
-	# Add here commands to compile the package.
-	$(MAKE)
-
-	touch build-stamp
-
-clean:
-	dh_testdir
-	dh_testroot
-	rm -f build-stamp 
-
-	rm -f config.log
-
-	# Add here commands to clean up after the build process.
-	-$(MAKE) distclean
-ifneq "$(wildcard /usr/share/misc/config.sub)" ""
-	cp -f /usr/share/misc/config.sub config.sub
-endif
-ifneq "$(wildcard /usr/share/misc/config.guess)" ""
-	cp -f /usr/share/misc/config.guess config.guess
-endif
-
-
-	dh_clean 
-
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs
-
-	# Add here commands to install the package into debian/tmp
-	$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs CHANGELOG
-	dh_installdocs
-	dh_installexamples
-	dh_install --sourcedir=debian/tmp
-#	dh_installmenu
-#	dh_installdebconf	
-#	dh_installlogrotate
-#	dh_installemacsen
-#	dh_installpam
-#	dh_installmime
-#	dh_installinit
-#	dh_installcron
-#	dh_installinfo
-	dh_installman
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-#	dh_perl
-#	dh_python
-	dh_makeshlibs
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install 
+override_dh_auto_installchangelogs:
+	dh_auto_installchangelogs -- CHANGELOG

-- 
Packaging of SDL_sound



More information about the pkg-sdl-commits mailing list