--- ccbuild-1.5.7.orig/debian/copyright +++ ccbuild-1.5.7/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by A. Bram Neijt on +Tue, 3 Jul 2007 14:48:52 +0200. + +It was downloaded from +http://prdownloads.sourceforge.net/ccbuild/ccbuild-1.5.5.tar.gz?download + +Upstream Author: A. Bram Neijt + +Copyright: 2004,2005 A. Bram Neijt + 2005, Jesse van den Kieboom + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public +License can be found in the file '/usr/share/common-licenses/GPL'. + + +The Debian packaging is (C) 2007, A. Bram Neijt and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + --- ccbuild-1.5.7.orig/debian/rules +++ ccbuild-1.5.7/debian/rules @@ -0,0 +1,76 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + cp -f /usr/share/misc/config.sub config.sub + cp -f /usr/share/misc/config.guess config.guess + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + rm -f src/SourceScanner/yylex.cc + rm -f config.sub config.guess + + dh_clean + +install: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/ccbuild. + $(MAKE) DESTDIR=$(CURDIR)/debian/ccbuild 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_installman + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- ccbuild-1.5.7.orig/debian/changelog +++ ccbuild-1.5.7/debian/changelog @@ -0,0 +1,18 @@ +ccbuild (1.5.7-0ubuntu1) jaunty; urgency=low + + * New upstream release (LP: #302775) + + -- A. Bram Neijt Fri, 21 Nov 2008 23:32:38 +0100 + +ccbuild (1.5.6-0ubuntu1) hardy; urgency=low + + * New upstream release + + -- A. Bram Neijt Sat, 01 Dec 2007 14:36:35 +0100 + +ccbuild (1.5.5-0ubuntu1) gutsy; urgency=low + + * Initial release + + -- A. Bram Neijt Mon, 02 Jul 2007 17:43:30 +0200 + --- ccbuild-1.5.7.orig/debian/docs +++ ccbuild-1.5.7/debian/docs @@ -0,0 +1 @@ +README --- ccbuild-1.5.7.orig/debian/compat +++ ccbuild-1.5.7/debian/compat @@ -0,0 +1 @@ +6 --- ccbuild-1.5.7.orig/debian/manpages +++ ccbuild-1.5.7/debian/manpages @@ -0,0 +1 @@ +doc/ccbuild/ccbuild.1 --- ccbuild-1.5.7.orig/debian/control +++ ccbuild-1.5.7/debian/control @@ -0,0 +1,23 @@ +Source: ccbuild +Section: devel +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: A. Bram Neijt +Build-Depends: debhelper (>= 6), autotools-dev, flex, libgcrypt-dev +Standards-Version: 3.8.0 +Homepage: http://ccbuild.sourceforge.net/ + +Package: ccbuild +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: A C++ source scanning build utility + ccbuild will scan the source for main functions + and includes. When the file contains a main function + it will compile all the files next to that file's + includes and link them into a program. + . + This allows you to build entire programs with minimal + configuration. Linker and compiler options can be added + and will be automatically divided over the compiler and + linker. + --- ccbuild-1.5.7.orig/debian/watch +++ ccbuild-1.5.7/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://sf.net/ccbuild/ccbuild-([0-9\.]+)\.tar\.gz