[med-svn] r2147 - trunk/packages/treeplot/trunk/debian

tryphon-guest at alioth.debian.org tryphon-guest at alioth.debian.org
Sat Jul 5 10:08:55 UTC 2008


Author: tryphon-guest
Date: 2008-07-05 10:08:54 +0000 (Sat, 05 Jul 2008)
New Revision: 2147

Modified:
   trunk/packages/treeplot/trunk/debian/changelog
   trunk/packages/treeplot/trunk/debian/control
   trunk/packages/treeplot/trunk/debian/copyright
   trunk/packages/treeplot/trunk/debian/rules
   trunk/packages/treeplot/trunk/debian/watch
Log:
new treeplot 0.7.1 package

Modified: trunk/packages/treeplot/trunk/debian/changelog
===================================================================
--- trunk/packages/treeplot/trunk/debian/changelog	2008-07-05 08:39:40 UTC (rev 2146)
+++ trunk/packages/treeplot/trunk/debian/changelog	2008-07-05 10:08:54 UTC (rev 2147)
@@ -1,3 +1,10 @@
+treeplot (0.7.1-1) UNRELEASED; urgency=low
+
+  * compile with current gcc.
+  * using cmake.
+
+ --  Olivier Langella <Olivier.Langella at moulon.inra.fr>  Sat, 05 Jun 2008 12:02:38 +0200
+
 treeplot (0.7-1.3) UNRELEASED; urgency=low
 
   * Initial release for Debian (Closes: #461508).

Modified: trunk/packages/treeplot/trunk/debian/control
===================================================================
--- trunk/packages/treeplot/trunk/debian/control	2008-07-05 08:39:40 UTC (rev 2146)
+++ trunk/packages/treeplot/trunk/debian/control	2008-07-05 10:08:54 UTC (rev 2147)
@@ -4,15 +4,16 @@
 Maintainer: Debian-Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
 DM-Upload-Allowed: yes
 Uploaders: Charles Plessy <plessy at debian.org>,
- Vincent Danjean <vdanjean.ml at free.fr>
+ Vincent Danjean <vdanjean.ml at free.fr>,
+ Olivier Langella <Olivier.Langella at moulon.inra.fr>
 Standards-Version: 3.7.3
-Build-Depends: libplot-dev, quilt, debhelper, cdbs
+Build-Depends: libplot-dev (>= 2.4), quilt, debhelper, cdbs, cmake (>= 2), pkg-config (>= 0.22)
 Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/treeplot/trunk/?rev=0&sc=0
 Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/treeplot
 
 Package: treeplot
 Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, libplot2c2 (>= 2.4)
 Description: Phylogenetic tree file converter (xfig, Phylip, Gif, Postscript, Adobe Illustrator)
  Treeplot is a conversion tool, from "Phylip" phylogenetic tree file to
  Postscript (.ps), Adobe Illustrator (.ai), Scalable Vector Graphic (.svg),

Modified: trunk/packages/treeplot/trunk/debian/copyright
===================================================================
--- trunk/packages/treeplot/trunk/debian/copyright	2008-07-05 08:39:40 UTC (rev 2146)
+++ trunk/packages/treeplot/trunk/debian/copyright	2008-07-05 10:08:54 UTC (rev 2147)
@@ -1,11 +1,11 @@
 X-Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
-X-Debianized-By: Olivier Langella <Olivier.Langella at pge.cnrs-gif.fr> 
+X-Debianized-By: Olivier Langella <Olivier.Langella at moulon.inra.fr> 
 X-Debianized-Date: Wed, 24 Oct 2001 11:18:51 +0200
 X-Source-Downloaded-From:
 X-Upstream-Author:
 
 Files: debian/*
-Copyright: © 2001 Olivier Langella <Olivier.Langella at pge.cnrs-gif.fr>
+Copyright: © 2001 Olivier Langella <Olivier.Langella at moulon.inra.fr>
            © 2005—2006 Vincent Danjean
 License: Unknown	   
 Copyright: © 2008, Charles Plessy <charles-debian-nospam at plessy.org>

Modified: trunk/packages/treeplot/trunk/debian/rules
===================================================================
--- trunk/packages/treeplot/trunk/debian/rules	2008-07-05 08:39:40 UTC (rev 2146)
+++ trunk/packages/treeplot/trunk/debian/rules	2008-07-05 10:08:54 UTC (rev 2147)
@@ -1,12 +1,91 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses cdbs.  Originaly written by Robert Millan.
-# This file is public domain.
-  
-include /usr/share/cdbs/1/class/autotools.mk
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
+# -*- 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.
 
-CXXFLAGS += -fpermissive
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
 
-clean::
-	$(RM) -r autom4te.cache
+
+
+
+configure: configure-stamp
+configure-stamp:
+	cmake .
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#docbook-to-man debian/populations.sgml > populations.1
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp CMakeCache.txt
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/treeplot.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/treeplot install
+
+
+# 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
+#	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
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure

Modified: trunk/packages/treeplot/trunk/debian/watch
===================================================================
--- trunk/packages/treeplot/trunk/debian/watch	2008-07-05 08:39:40 UTC (rev 2146)
+++ trunk/packages/treeplot/trunk/debian/watch	2008-07-05 10:08:54 UTC (rev 2147)
@@ -1,2 +1,2 @@
 version=3
-http://sourcesup.cru.fr/frs/?group_id=428 /frs/download.php/2194/treeplot-(.*)\.tar\.gz
+http://sourcesup.cru.fr/frs/?group_id=428 /frs/download.php/2206/treeplot-(.*)\.tar\.gz




More information about the debian-med-commit mailing list