--- tclap-1.1.0.orig/debian/changelog +++ tclap-1.1.0/debian/changelog @@ -0,0 +1,6 @@ +tclap (1.1.0-1) unstable; urgency=low + + * Initial Debian upload (Closes: #399958) + + -- Dirk Eddelbuettel Fri, 1 Dec 2006 20:38:34 -0600 + --- tclap-1.1.0.orig/debian/compat +++ tclap-1.1.0/debian/compat @@ -0,0 +1 @@ +5 --- tclap-1.1.0.orig/debian/control +++ tclap-1.1.0/debian/control @@ -0,0 +1,14 @@ +Source: tclap +Section: devel +Priority: optional +Maintainer: Dirk Eddelbuettel +Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 5), autotools-dev + +Package: libtclap-dev +Architecture: any +Description: Templatized command-line argument parser for C++ + This package provides a simple C++ library that facilitates + parsing command-line arguments in a type-independent manner. + The functionality is provided via template header files, so + no actual library is included. --- tclap-1.1.0.orig/debian/copyright +++ tclap-1.1.0/debian/copyright @@ -0,0 +1,34 @@ +This is the Debian GNU/Linux tclap package, a templated command-line +parsing library which was written by Michael Smoot. + +This package was created by Dirk Eddelbuettel . +The sources were downloaded from + http://tclap.sf.net/ + +Tclap is copyright Michael E. Smoot and released under the following +MIT-style license (copied verbatime from the file COPYING, and +indented three spaces): + + Copyright (c) 2003 Michael E. Smoot + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + + --- tclap-1.1.0.orig/debian/rules +++ tclap-1.1.0/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for the Debian/GNU Linux tclap package +# Copyright 2003-2006 by Dirk Eddelbuettel + +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + ./configure + $(MAKE) + $(MAKE) check + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + # 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/ + -$(MAKE) prefix=`pwd`/debian/`dh_listpackages`/usr 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 + (cd tests && make clean) + dh_installdocs docs/ tests/ + (cd examples && make clean) + dh_installexamples examples/* +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installcatalogs +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_undocumented + 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