--- /dev/null
+Source: glite-wms-utils-exception
+Section: libs
+Priority: optional
+Maintainer: WMS group <wms-support@lists.infn.it>
+Build-Depends: debhelper (>= 8.0.0~)
+Standards-Version: 3.9.1
+Homepage: http://glite.cern.ch/
+
+Package: glite-wms-utils-exception
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: C/C++ exception libraries for job management applications
+ C/C++ exception libraries for job management applications
+
+
+
+Package: glite-wms-utils-exception-dev
+Section: libdevel
+Architecture: any
+Depends: glite-wms-utils-exception (= ${binary:Version}), ${misc:Depends}
+Description: Development files for C/C++ jobmanagement exception
+ Development files for C/C++ jobmanagement exception
--- /dev/null
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Name: glite-wms-utils-classad
+Maintainer: WMS group <wms-support@lists.infn.it>
+Source: http://glite.cern.ch/
+
+
+Files: *
+Copyright (c) Members of the EGEE Collaboration. 2004.
+See http://www.eu-egee.org/partners/ for details on the copyright
+holders.
+License: Apache
+ On Debian systems, the full text of the Apache License version 2 can be found
+ in the file `/usr/share/common-licenses/Apache-2.0'.
+
--- /dev/null
+usr/include/glite/wmsutils/exception/*
+usr/lib/lib*.so
+usr/lib/pkgconfig/jobman-exception.pc
+
--- /dev/null
+usr/lib/lib*.so.*
+usr/share/doc/glite-wms-utils-exception-*/*
+
--- /dev/null
+#!/usr/bin/make -f
+export DH_COMPAT=7
+#export DH_VERBOSE=1
+
+INSTALLDIR=$(CURDIR)/debian/tmp
+
+build-stamp:
+ touch build-stamp
+
+build:build-stamp
+ifndef extbuilddir
+ ./configure --prefix=$(INSTALLDIR)/usr --disable-static PVER=$(version)
+ make
+endif
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -rf build-stamp
+ rm -rf configure-stamp
+ rm -rf $(INSTALLDIR)
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ifdef extbuilddir
+ mkdir -p $(INSTALLDIR) && cp -R $(extbuilddir)/* $(INSTALLDIR)
+else
+ make install
+endif
+ sed 's|^prefix=.*|prefix=/usr|g' $(INSTALLDIR)/usr/lib/pkgconfig/jobman-exception.pc > $(INSTALLDIR)/usr/lib/pkgconfig/jobman-exception.pc.new
+ mv $(INSTALLDIR)/usr/lib/pkgconfig/jobman-exception.pc.new $(INSTALLDIR)/usr/lib/pkgconfig/jobman-exception.pc
+ rm $(INSTALLDIR)/usr/lib/*.la
+
+binary-indep: build install
+
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installman
+ dh_installchangelogs
+ dh_install
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_makeshlibs
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb --destdir=debs
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install