+ initial versions

This commit is contained in:
peter 1998-11-10 16:14:30 +00:00
parent 2ce832e18e
commit 2e5018c91d
5 changed files with 120 additions and 0 deletions

View File

@ -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 <pfv@cooldown.demon.nl>, Tue, 10 Nov 1998 12:00:00 +0200

10
install/debian/changelog Normal file
View File

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

15
install/debian/control Normal file
View File

@ -0,0 +1,15 @@
Source: fpc
Section: devel
Priority: optional
Maintainer: root <root@cooldown.demon.nl>
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
install/debian/copyright Normal file
View File

@ -0,0 +1,22 @@
The package was originally put together by:
Peter Vreman <pfv@cooldown.demon.nl>
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
install/debian/rules Normal file
View File

@ -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