--- libsdp-1.1.99.orig/debian/copyright +++ libsdp-1.1.99/debian/copyright @@ -0,0 +1,46 @@ +This package was debianized by Guy Coates on +Tue, 16 Dec 2008 13:17:04 +0000. + +It was downloaded from http://www.openfabrics.org/downloads/OFED/ofed-1.4/OFED-1.4.tgz + +Upstream Authors: +Amir Vadai amirv@mellanox.co.il + +Copyright: + +Copyright (c) 2004 Topspin Communications. All rights reserved. +Copyright (c) 2005-2006 Mellanox Technologies Ltd. All rights reserved. + +License: + + +This software is licensed under a choice of one of two licenses. +You may choose to be licensed under the terms of the GNU General +Public License (GPL) Version 2, available in the file +/usr/share/common-licenses/GPL-2 on your Debian system, or the +OpenIB.org BSD license below: + + Redistribution and use in source and binary forms, with or + without modification, are permitted provided that the following + conditions are met: + + - Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + - Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +The Debian packaging is Copyright (C) 2008, Genome Research Ltd and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- libsdp-1.1.99.orig/debian/lintian.overrides +++ libsdp-1.1.99/debian/lintian.overrides @@ -0,0 +1,2 @@ +libsdp1: non-dev-pkg-with-shlib-symlink usr/lib/libsdp.so.1.0.0 usr/lib/libsdp.so +libsdp1: non-dev-pkg-with-shlib-symlink usr/lib/libsdp_sys.so.1.0.0 usr/lib/libsdp_sys.so --- libsdp-1.1.99.orig/debian/compat +++ libsdp-1.1.99/debian/compat @@ -0,0 +1 @@ +7 --- libsdp-1.1.99.orig/debian/libsdp1.install +++ libsdp-1.1.99/debian/libsdp1.install @@ -0,0 +1,3 @@ +usr/ +etc/ +usr/share/lintian/overrides/ --- libsdp-1.1.99.orig/debian/changelog +++ libsdp-1.1.99/debian/changelog @@ -0,0 +1,13 @@ +libsdp (1.1.99-2) unstable; urgency=low + + * FTBFS on kfreebsd-i386 (Closes: #554715) + * (libsdp_1.1.99-1/avr32): FTBFS: Outdated config.{sub,guess} (Closes: + #552379) + + -- Benoit Mortier Sat, 19 Dec 2009 19:20:34 +0100 + +libsdp (1.1.99-1) unstable; urgency=low + + * Initial release (Closes: #539826) + + -- Benoit Mortier Wed, 21 Oct 2009 11:27:00 +0100 --- libsdp-1.1.99.orig/debian/rules +++ libsdp-1.1.99/debian/rules @@ -0,0 +1,110 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# 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) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +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. + ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" \ + --sysconfdir=/etc + +build: build-stamp +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + -find $(CURDIR) -type d -name ".svn" -exec rm -rf {} \; + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + # Add here commands to install the package into debian/tmp + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + + install -D -m 644 debian/lintian.overrides $(CURDIR)/debian/tmp/usr/share/lintian/overrides/libsdp1 + +# Build architecture-independent files here. +binary-indep: install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_install --fail-missing +# 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 --- libsdp-1.1.99.orig/debian/control +++ libsdp-1.1.99/debian/control @@ -0,0 +1,19 @@ +Source: libsdp +Priority: extra +Maintainer: OFED and Debian Developement and Discussion +Uploaders: Benoit Mortier , Guy Coates , Mario Lang +Build-Depends: debhelper (>= 7), autotools-dev, bison, flex +Standards-Version: 3.8.3 +Section: libs +Homepage: http://www.openfabrics.org + + +Package: libsdp1 +Section: libs +Architecture: i386 ia64 amd64 powerpc +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Library to allow use of Infiniband Sockets Direct Protocol (SDP) + libsdp is a LD_PRELOAD-able library which can be used to make an application + use the Infiniband Sockets Direct Protocol (SDP) rather than TCP. The change + in protocol is transparent and does not require the application to be + recompiled. --- libsdp-1.1.99.orig/debian/docs +++ libsdp-1.1.99/debian/docs @@ -0,0 +1,2 @@ +NEWS +README