Update of /cvsroot/mpio/mpio/debian
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv2671/debian
Added Files:
README changelog control copyright docs libmpio-dev.install
libmpio.install mpio-tools.install postinst rules
Log Message:
add support for Debian packages
--- NEW FILE: control ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: libmpio.install ---
debian/tmp/usr/lib/libmpio*
debian/tmp/etc/hotplug/usb/*
--- NEW FILE: copyright ---
This is gex, written and maintained by unknown <cr...@bi...>
on Sat, 1 Apr 2006 19:40:10 +0200.
The original source can always be found at:
ftp://ftp.debian.org/dists/unstable/main/source/
Copyright (C) 2005 unknown
License:
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; either version 2 of the License, or
(at your option) any later version.
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 package; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
--- NEW FILE: changelog ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: rules ---
#!/usr/bin/make -f
include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/cdbs/1/rules/debhelper.mk
install/libgmbus-doc::
mkdir -p debian/tmp/usr/share/doc/mpio/
--- NEW FILE: docs ---
NEWS
README
TODO
COPYING
AUTHORS
--- NEW FILE: libmpio-dev.install ---
debian/tmp/usr/include/mpio/*
--- NEW FILE: README ---
The Debian Package mpio
----------------------------
Comments regarding the Package
Andreas Büsching <cr...@bi...>, Sat, 1 Apr 2006 19:40:10 +0200
--- NEW FILE: mpio-tools.install ---
debian/tmp/usr/bin/*
debian/tmp/etc/mpio/*
--- NEW FILE: postinst ---
#! /bin/sh
# postinst script for gex
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
#
case "$1" in
configure)
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0
|