--- faucc-20090220.orig/debian/rules +++ faucc-20090220/debian/rules @@ -0,0 +1,85 @@ +#!/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. + +# 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) + +config.status: configure + dh_testdir + ./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" + + +configure: configure.ac autogen.sh + ./autogen.sh + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/faucc.sgml > faucc.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + if [ -e Makefile ]; then $(MAKE) mrproper; fi + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + # Add here commands to install the package into debian/faucc. + $(MAKE) prefix=$(CURDIR)/debian/faucc/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 + dh_installdocs + dh_installexamples + dh_installman + dh_link + 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 --- faucc-20090220.orig/debian/watch +++ faucc-20090220/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://www3.informatik.uni-erlangen.de/Research/FAUcc/downloads/faucc-(.*)\.tar\.gz --- faucc-20090220.orig/debian/changelog +++ faucc-20090220/debian/changelog @@ -0,0 +1,12 @@ +faucc (20090220-1) unstable; urgency=low + + * New upstream bugfix release: + + Fix gcc arguments on i386. + + -- Stefan Potyra Fri, 20 Feb 2009 15:59:04 +0100 + +faucc (20090130-1) unstable; urgency=low + + * Initial release (Closes: #512551). + + -- Stefan Potyra Fri, 30 Jan 2009 15:45:34 +0100 --- faucc-20090220.orig/debian/copyright +++ faucc-20090220/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Volkmar Sieh + on +Tue, 13 Jan 2009 14:01:41 +0100. + +It was downloaded from +. + +Upstream Author: + Volkmar Sieh + +Copyright: + All files, including packaging: + + Copyright (C) 2007-2009 FAUcc Team, see AUTHORS. + Copyright (C) 2007-2009 Department of Computer Science 3, + Friedrich Alexander University Erlangen-Nuremberg, + Germany + +License: + 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 2 of the License, 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. + +On debian systems, you can find the full text of the GNU General Public +License at "/usr/share/common-licenses/GPL-2". --- faucc-20090220.orig/debian/control +++ faucc-20090220/debian/control @@ -0,0 +1,24 @@ +Source: faucc +Section: devel +Priority: optional +Maintainer: FAUcc Team +Uploaders: Volkmar Sieh , + Stefan Potyra +Build-Depends: automake, + autotools-dev, + bison, + debhelper (>= 5), + flex, + xmlto +Standards-Version: 3.8.0 +Homepage: http://www.faumachine.org + +Package: faucc +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, gcc +Description: C compiler generating Intel code for 16bit/32bit CPUs + FAUcc is a optimizing C compiler, that can generate Intel code for + 16bit/32bit CPUS. It is useful, if you are in need to compile real + mode code, like a BIOS. + . + FAUcc uses the GNU binutils for assembling/linking. --- faucc-20090220.orig/debian/compat +++ faucc-20090220/debian/compat @@ -0,0 +1 @@ +5