--- sigcperl-0.2.0.orig/debian/changelog +++ sigcperl-0.2.0/debian/changelog @@ -0,0 +1,6 @@ +sigcperl (0.2.0-1) unstable; urgency=low + + * Initial Release. + + -- Michael Koch Tue, 20 May 2003 14:59:48 +0000 + --- sigcperl-0.2.0.orig/debian/compat +++ sigcperl-0.2.0/debian/compat @@ -0,0 +1 @@ +4 --- sigcperl-0.2.0.orig/debian/control +++ sigcperl-0.2.0/debian/control @@ -0,0 +1,27 @@ +Source: sigcperl +Section: libs +Priority: optional +Maintainer: Michael Koch +Build-Depends: debhelper (>> 4.0.0), libsigc++-1.2-dev, libperl-dev (>= 5.8.0) +Standards-Version: 3.5.10 + +Package: libsigcperl-dev +Section: libdevel +Architecture: any +Depends: libsigcperl1 (= ${Source-Version}), libsigc++-1.2-dev +Description: Helper library for the libsigc++ Perl bindings - development files + This is a helper library to create Perl bindings to the libsigc++ signal + library possible. It is intended to provide a mechanism for writing Perl + modules which wrap other C++ libraries using libsigc++. + . + This package contains the files needed to build the Perl bindings for sigc++ + and other libraries/applications using sigcperl. + +Package: libsigcperl1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends} +Description: Helper library for the libsigc++ Perl bindings + This is a helper library to create Perl bindings to the libsigc++ signal + library possible. It is intended to provide a mechanism for writing Perl + modules which wrap other C++ libraries using libsigc++. --- sigcperl-0.2.0.orig/debian/rules +++ sigcperl-0.2.0/debian/rules @@ -0,0 +1,77 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +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 + +config.status: configure + dh_testdir + LDFLAGS="-lstdc++" ./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 + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_movefiles +# dh_install + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_perl + 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 --- sigcperl-0.2.0.orig/debian/libsigcperl1.files +++ sigcperl-0.2.0/debian/libsigcperl1.files @@ -0,0 +1 @@ +usr/lib/lib*.so.* --- sigcperl-0.2.0.orig/debian/libsigcperl-dev.files +++ sigcperl-0.2.0/debian/libsigcperl-dev.files @@ -0,0 +1,5 @@ +usr/include/* +usr/lib/lib*.a +usr/lib/lib*.so +usr/lib/pkgconfig/* +/usr/lib/*.la --- sigcperl-0.2.0.orig/debian/copyright +++ sigcperl-0.2.0/debian/copyright @@ -0,0 +1,10 @@ +This package was debianized by Michael Koch on +Tue, 13 May 2003 14:38:38 +0200. + +It was downloaded from http://sigcperl.sourceforge.net/ + +Upstream Author: Ron Steinke + +Copyright: + +/usr/share/common-licenses/LGPL-2.1 --- sigcperl-0.2.0.orig/debian/docs +++ sigcperl-0.2.0/debian/docs @@ -0,0 +1,3 @@ +NEWS +README +TODO