From 2e5018c91d51265b117369dfdaf685cc26635151 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 10 Nov 1998 16:14:30 +0000 Subject: [PATCH] + initial versions --- install/debian/README.debian | 9 +++++ install/debian/changelog | 10 ++++++ install/debian/control | 15 +++++++++ install/debian/copyright | 22 +++++++++++++ install/debian/rules | 64 ++++++++++++++++++++++++++++++++++++ 5 files changed, 120 insertions(+) create mode 100644 install/debian/README.debian create mode 100644 install/debian/changelog create mode 100644 install/debian/control create mode 100644 install/debian/copyright create mode 100644 install/debian/rules diff --git a/install/debian/README.debian b/install/debian/README.debian new file mode 100644 index 0000000000..2b74adb5b4 --- /dev/null +++ b/install/debian/README.debian @@ -0,0 +1,9 @@ +Free Pascal for DEBIAN +---------------------- + +This package is from the Free Pascal CVS: + :pserver:anonymous@tflily.fys.kuleuven.ac.be:/usr/local/CVS + +The home page is http://tfdec1.fys.kuleuven.ac.be/~michael/fpc/ + +Peter Vreman , Tue, 10 Nov 1998 12:00:00 +0200 diff --git a/install/debian/changelog b/install/debian/changelog new file mode 100644 index 0000000000..6516cd6d7a --- /dev/null +++ b/install/debian/changelog @@ -0,0 +1,10 @@ +fpc (0.99.9-1) unstable; urgency=low + + * Initial Release. + + -- Peter Vreman Tue, 10 Nov 1998 12:00:00 +0200 + +Local variables: +mode: debian-changelog +add-log-mailing-address: "pfv@cooldown.demon.nl" +End: diff --git a/install/debian/control b/install/debian/control new file mode 100644 index 0000000000..08d6a2d3d7 --- /dev/null +++ b/install/debian/control @@ -0,0 +1,15 @@ +Source: fpc +Section: devel +Priority: optional +Maintainer: root +Standards-Version: 2.4.1.2 + +Package: fpc +Architecture: i386 +Depends: +Description: Free Pascal Compiler + The Free Pascal Compiler is a Turbo Pascal 7.0 and Delphi II compatible + 32bit Pascal Compiler. It comes with fully TP 7.0 compatible run-time library. + Some extensions are added to the language, like function overloading. Shared + libraries can be linked and created. + diff --git a/install/debian/copyright b/install/debian/copyright new file mode 100644 index 0000000000..77a567bbaf --- /dev/null +++ b/install/debian/copyright @@ -0,0 +1,22 @@ +The package was originally put together by: + Peter Vreman + +From sources obtained from: + tflily.fys.kuleuven.ac.be/pub/fpc/dist/linux/fpc-0.99.9.tar.gz + + + 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; version 2 dated June, 1991. + + 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/doc/copyright/GPL'. diff --git a/install/debian/rules b/install/debian/rules new file mode 100644 index 0000000000..4130397b36 --- /dev/null +++ b/install/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + +# Add here commands to compile the package. + make + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + +# Add here commands to clean up after the build process. + -$(MAKE) distclean + + dh_clean + +# Build architecture-independent files here. +binary-indep: build +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build + dh_testversion + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the files into debian/tmp + $(MAKE) PREFIXINSTALLDIR=`pwd`/debian/tmp/usr install + +# dh_installdocs TODO NEWS AUTHORS KNOWNBUGS README README.guile + dh_installexamples + dh_installmenu +# dh_installinit +# dh_installcron +# dh_installmanpages +# dh_undocumented +# dh_installchangelogs ChangeLog + dh_strip + dh_compress + dh_fixperms + dh_suidregister + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_makeshlibs + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary