Update of /cvsroot/csp/APPLICATIONS/SimData/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16079/debian
Added Files:
changelog control docs rules
Log Message:
--- NEW FILE: changelog ---
simdata (0.4.0-1) unstable; urgency=low
* Initial Release.
-- Mark Rose <mk...@us...> Sat, 31 Jan 2004 17:59:51 -0800
--- NEW FILE: control ---
Source: simdata
Section: devel
Priority: optional
Maintainer: Mark Rose <mk...@us...>
Build-Depends: debhelper (>= 4.0.0), scons (>= 0.94), g++ (>=3.2.0), python2.3-dev, swig1.3 (>= 1.3.20)
Standards-Version: 3.6.0
Package: simdata-dev
Section: devel
Architecture: any
Depends: simdata
Suggests: simdata-doc
Description: Header and interface files for SimData
SimData is a cross-platform, independent library for data management in
simulations. The library is written in C++, and provides full binding to
Python via SWIG. This package provides high-quality data classes that are
useful in simulation environments (including vectors, matrices, quaternions,
dates, geospacial coordinates, and interpolated lookup tables) and allows
static external data to be quickly and easily loaded into the simulation at
runtime.
Package: simdata
Section: libs
Architecture: any
Depends: ${shlibs:Depends}
Recommends: ${python:Depends}
Description: Data management library for simulations
SimData is a cross-platform, independent library for data management in
simulations. The library is written in C++, and provides full binding to
Python via SWIG. This package provides high-quality data classes that are
useful in simulation environments (including vectors, matrices, quaternions,
dates, geospacial coordinates, and interpolated lookup tables) and allows
static external data to be quickly and easily loaded into the simulation at
runtime.
Package: simdata-doc
Section: doc
Architecture: all
Recommends: simdata, simdata-dev
Description: Documentation for SimData
SimData is a cross-platform, independent library for data management in
simulations. The library is written in C++, and provides full binding to
Python via SWIG. This package provides high-quality data classes that are
useful in simulation environments (including vectors, matrices, quaternions,
dates, geospacial coordinates, and interpolated lookup tables) and allows
static external data to be quickly and easily loaded into the simulation at
runtime.
--- NEW FILE: docs ---
README
TODO
COPYING
--- NEW FILE: rules ---
#!/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
#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=0.4.0
major=0
# 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)}'`
configure: configure-stamp
configure-stamp:
dh_testdir
# Add here commands to configure the package.
touch configure-stamp
build: build-stamp
build-stamp: configure-stamp
dh_testdir
# Add here commands to compile the package.
scons
touch build-stamp
clean:
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
# Add here commands to clean up after the build process.
scons --clean
scons --clean docs
dh_clean
install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/tmp
scons install_package \
PACKAGE_PREFIX=$(CURDIR)/debian/simdata/usr/lib/python2.3/site-packages \
INCLUDE_PREFIX=$(CURDIR)/debian/simdata/usr/include/python2.3
scons install_headers \
PACKAGE_PREFIX=$(CURDIR)/debian/simdata-dev/usr/lib/python2.3/site-packages \
INCLUDE_PREFIX=$(CURDIR)/debian/simdata-dev/usr/include/python2.3
build-docs:
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
scons docs
# Build architecture-independent files here.
binary-indep: build-docs
# Build architecture-dependent files here.
binary-arch: build install
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_installexamples
# dh_install
# dh_installmenu
# dh_installdebconf
# dh_installlogrotate
# dh_installemacsen
# dh_installpam
# dh_installmime
# dh_installinit
# dh_installcron
# dh_installinfo
# dh_installman
dh_link
dh_strip
dh_compress
dh_fixperms
# dh_perl
dh_python
# dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
|