added debian packaging files (NOT included in .tar.gz produced by make dist;

this is normal)
This commit is contained in:
Frédéric Péters 2004-07-24 14:55:48 +00:00
commit e7f88217e4
12 changed files with 180 additions and 0 deletions

6
changelog Normal file
View File

@ -0,0 +1,6 @@
lasso (0.2.0-1) unstable; urgency=low
* Initial Release.
-- Frederic Peters <fpeters@debian.org> Fri, 16 Jul 2004 14:50:19 +0200

1
compat Normal file
View File

@ -0,0 +1 @@
4

45
control Normal file
View File

@ -0,0 +1,45 @@
Source: lasso
Priority: optional
Maintainer: Frederic Peters <fpeters@debian.org>
Build-Depends: debhelper (>= 4.0.0), libxml2-dev, libxslt1-dev, libxmlsec1-dev, libxmlsec1-openssl, libglib2.0-dev
Standards-Version: 3.6.0
Package: liblasso-dev
Section: devel
Architecture: any
Depends: liblasso0 (= ${Source-Version}), libxml2-dev, libxmlsec1-dev
Description: Liberty Alliance library - development kit
Lasso is an implementation of the Liberty Alliance standard; it defines
processes for federated identities, single signon and related protocols.
.
This package contains the development files for Lasso.
.
Homepage: http://lasso.entrouvert.org
Package: liblasso0
Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Liberty Alliance library - runtime library
Lasso is an implementation of the Liberty Alliance standard; it defines
processes for federated identities, single signon and related protocols.
.
This package contains liblasso library used by applications to gain Library
Alliance support.
.
Homepage: http://lasso.entrouvert.org
Package: liblasso0-python2.3
Section: python
Architecture: any
Depends: python2.3, ${shlibs:Depends}, ${misc:depends}, ${python:Depends}
Description: Liberty Alliance library - Python 2.3 bindings
Lasso is an implementation of the Liberty Alliance standard; it defines
processes for federated identities, single signon and related protocols.
.
This package contains Python 2.3 bindings for liblasso, needed to use lasso
in Python programs.
.
Homepage: http://lasso.entrouvert.org

10
copyright Normal file
View File

@ -0,0 +1,10 @@
This package was debianized by Frederic Peters <fpeters@debian.org> on
Fri, 16 Jul 2004 14:50:19 +0200.
It was downloaded from <fill in ftp site>
Upstream Author(s): <put author(s) name and email here>
Copyright:
<Must follow here>

2
dirs Normal file
View File

@ -0,0 +1,2 @@
usr/bin
usr/sbin

1
docs Normal file
View File

@ -0,0 +1 @@
README

2
liblasso-dev.dirs Normal file
View File

@ -0,0 +1,2 @@
usr/lib
usr/include

5
liblasso-dev.files Normal file
View File

@ -0,0 +1,5 @@
usr/include/*
usr/lib/lib*.a
usr/lib/lib*.so
usr/lib/pkgconfig/*
/usr/lib/*.la

View File

@ -0,0 +1,3 @@
usr/lib/python2.3/lib-dynload/lassomod.so
usr/lib/python2.3/site-packages/*

1
liblasso0.dirs Normal file
View File

@ -0,0 +1 @@
usr/lib

1
liblasso0.files Normal file
View File

@ -0,0 +1 @@
usr/lib/lib*.so.*

103
rules Executable file
View File

@ -0,0 +1,103 @@
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.
# 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)
CFLAGS = -Wall -g
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
INSTALL_PROGRAM += -s
endif
# shared library versions, option 1
version=2.0.5
major=2
# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
#version=`ls src/.libs/lib*.so.* | \
# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
#major=`ls src/.libs/lib*.so.* | \
# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
config.status: configure
dh_testdir
# Add here commands to configure the package.
CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
build: build-stamp
build-stamp: config.status
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
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
cp -f /usr/share/misc/config.sub config.sub
endif
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
cp -f /usr/share/misc/config.guess config.guess
endif
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/tmp
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
# 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_installexamples
dh_installman
dh_movefiles
dh_link
dh_strip
dh_compress
dh_fixperms
dh_makeshlibs -a -V
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install