Browse Source

+ initial versions

peter 27 years ago
parent
commit
2e5018c91d
5 changed files with 120 additions and 0 deletions
  1. 9 0
      install/debian/README.debian
  2. 10 0
      install/debian/changelog
  3. 15 0
      install/debian/control
  4. 22 0
      install/debian/copyright
  5. 64 0
      install/debian/rules

+ 9 - 0
install/debian/README.debian

@@ -0,0 +1,9 @@
+Free Pascal for DEBIAN
+----------------------
+
+This package is from the Free Pascal CVS:
+  :pserver:[email protected]:/usr/local/CVS
+
+The home page is http://tfdec1.fys.kuleuven.ac.be/~michael/fpc/
+
+Peter Vreman <[email protected]>, Tue, 10 Nov 1998 12:00:00 +0200

+ 10 - 0
install/debian/changelog

@@ -0,0 +1,10 @@
+fpc (0.99.9-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Peter Vreman <[email protected]>  Tue, 10 Nov 1998 12:00:00 +0200
+
+Local variables:
+mode: debian-changelog
+add-log-mailing-address: "[email protected]"
+End:

+ 15 - 0
install/debian/control

@@ -0,0 +1,15 @@
+Source: fpc
+Section: devel
+Priority: optional
+Maintainer: root <[email protected]>
+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.
+

+ 22 - 0
install/debian/copyright

@@ -0,0 +1,22 @@
+The package was originally put together by:
+  Peter Vreman <[email protected]>
+
+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'.

+ 64 - 0
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