[med-svn] r5838 - trunk/packages/vienna-rna/trunk/debian
Andreas Tille
tille at alioth.debian.org
Mon Jan 31 00:25:56 UTC 2011
Author: tille
Date: 2011-01-31 00:25:54 +0000 (Mon, 31 Jan 2011)
New Revision: 5838
Modified:
trunk/packages/vienna-rna/trunk/debian/rules
Log:
Hi Alex, I tried to make the debian/rules file with the short debhelper notation doing the same as the current debian/rules file. Just roll back the commit in case you think this is a bad idea (and hit me with a stick about this :-)) I was not able to verify whether the package finally compiles because of further source code problems with wrong / missing includes. Hope this helps.
Modified: trunk/packages/vienna-rna/trunk/debian/rules
===================================================================
--- trunk/packages/vienna-rna/trunk/debian/rules 2011-01-30 22:15:47 UTC (rev 5837)
+++ trunk/packages/vienna-rna/trunk/debian/rules 2011-01-31 00:25:54 UTC (rev 5838)
@@ -1,146 +1,27 @@
#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-#
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
-#
-# Modified to make a template file for a multi-binary package with separated
-# build-arch and build-indep targets by Bill Allombert 2001
+# debian/rules for vienna-rna
+# Andreas Tille <tille at debian.org>
+# GPL
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
-# This has to be exported to make some magic below work.
-export DH_OPTIONS
+%:
+ dh $@
-# 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)
-ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
-CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
-else
-CROSS= --build $(DEB_BUILD_GNU_TYPE)
-endif
-
-
-
-
-
-config.status: configure
- dh_testdir
- # Add here commands to configure the package.
-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
- ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
-
-
-#Architecture
-build: build-arch build-indep
-
-build-arch: build-arch-stamp
-build-arch-stamp: config.status
-
- # Add here commands to compile the arch part of the package.
- #$(MAKE)
- touch $@
-
-build-indep: build-indep-stamp
-build-indep-stamp: config.status
-
- # Add here commands to compile the indep part of the package.
- #$(MAKE) doc
- touch $@
-
- dh_quilt_patch
-clean:
- dh_testdir
- dh_testroot
- rm -f build-arch-stamp build-indep-stamp
+override_dh_auto_clean:
+ # rm -f build-arch-stamp build-indep-stamp
# libg2-dev is standalone package
rm -rf RNAforester/g2-0.70
# readseq is standalone package
rm -rf Readseq
- # Add here commands to clean up after the build process.
- [ ! -f Makefile ] || $(MAKE) distclean
- rm -f config.sub config.guess
+ ### (at) hmmmm, these files are in the upstream tarball and removing them doese not seem to be a good idea
+ # rm -f config.sub config.guess
dh_clean --exclude ./Readseq/ureadseq.c.orig --exclude ./Readseq/readseq.c.orig --exclude ./Readseq/ureadseq.h.orig
- dh_quilt_unpatch
-install: install-indep install-arch
-install-indep:
- dh_testdir
- dh_testroot
- dh_clean -k -i --exclude ./Readseq/ureadseq.c.orig --exclude ./Readseq/readseq.c.orig --exclude ./Readseq/ureadseq.h.orig
- dh_installdirs -i
-
- # Add here commands to install the indep part of the package into
- # debian/<package>-doc.
- #INSTALLDOC#
-
- dh_install -i
-
-install-arch:
-
- dh_testdir
- dh_testroot
- dh_clean -k -s --exclude ./Readseq/ureadseq.c.orig --exclude ./Readseq/readseq.c.orig --exclude ./Readseq/ureadseq.h.orig
- dh_installdirs -s
-
- # Add here commands to install the arch part of the package into
- # debian/tmp.
- $(MAKE) DESTDIR=$(CURDIR)/debian/vienna-rna install
-
+override_dh_auto_install:
ls Utils/*.pl |while read line ; do cp $(CURDIR)/$$line $(CURDIR)/debian/vienna-rna/usr/bin/`echo $$line |awk -F "/" '{print $$2}'|tr -d '\.pl'` ; done
rm $(CURDIR)/debian/vienna-rna/usr/share/info/dir
- dh_install -s
-# Must not depend on anything. This is to be called by
-# binary-arch/binary-indep
-# in another 'make' thread.
-binary-common:
- dh_testdir
- dh_testroot
- dh_installchangelogs ChangeLog
- dh_installdocs
- dh_installexamples
-# dh_installmenu
-# dh_installdebconf
-# dh_installlogrotate
-# dh_installemacsen
-# dh_installpam
-# dh_installmime
-# dh_python
-# dh_installinit
-# dh_installcron
-# dh_installinfo
- dh_installman
- dh_link
- dh_strip
- dh_compress
- dh_fixperms
- dh_perl
- dh_makeshlibs
- dh_installdeb
- dh_shlibdeps
- dh_gencontrol
- dh_md5sums
- dh_builddeb
-# Build architecture independant packages using the common target.
-binary-indep: build-indep install-indep
- $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
-# Build architecture dependant packages using the common target.
-binary-arch: build-arch install-arch
- $(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
-
-binary: binary-arch binary-indep
-.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch
More information about the debian-med-commit
mailing list