diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 00000000..ed5755c6 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +zint (2.1.3) unstable; urgency=low + + * Initial release + + -- BogDan Vatra Sat, 11 Apr 2009 23:45:53 +0300 diff --git a/debian/compat b/debian/compat new file mode 100644 index 00000000..7f8f011e --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 00000000..ed99883d --- /dev/null +++ b/debian/control @@ -0,0 +1,41 @@ +Source: zint +Section: libs +Priority: extra +Maintainer: BogDan Vatra +Build-Depends: cdbs, debhelper (>= 7), cmake +Standards-Version: 3.8.1 +Homepage: http://www.zint.org.uk/ + +Package: libzint +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Zint is an Open Source barcode encoding and image generating library for Linux. + It currently features: + Over 50 symbologies including many not available in any other open source package. + Unicode translation for symbologies which support Latin-1 and Shift-JIS character sets. + Full GS1 support including data verification and automated insertion of FNC1 characters. + Support for encoding binary data including NULL (ASCII 0) characters. + Health Industry Barcode (HIBC) encoding capabilities. + Output in PNG, EPS and SVG formats with user adjustable sizes and colours. + Verification stage for SBN, ISBN and ISBN-13 data. + +Package: libzint-dev +Section: libs +Architecture: any +Depends: libzint (= ${binary:Version}) +Description: Zint development files. + +Package: libqzint +Section: libs +Architecture: any +Depends: libzint (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: Qt wrapper over Zint library + + +Package: libqzint-dev +Section: libs +Architecture: any +Depends: libqzint (= ${binary:Version}), libzint-dev (= ${source:Version}) +Description: QZint development files. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 00000000..3364bf85 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,44 @@ +This package was debianized by: + + BogDan Vatra on Sat, 11 Apr 2009 23:45:53 +0300 + +It was downloaded from: + + + +Upstream Author(s): + + + + +Copyright: + + + + +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 3 of the License, or + (at your option) any later version. + + This package 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 program. If not, see . + +On Debian systems, the complete text of the GNU General +Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +The Debian packaging is: + + Copyright (C) 2009 BogDan Vatra + +and is licensed under the GPL version 3, see above. + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. diff --git a/debian/libqzint-dev.install b/debian/libqzint-dev.install new file mode 100644 index 00000000..63169a18 --- /dev/null +++ b/debian/libqzint-dev.install @@ -0,0 +1,2 @@ +usr/include/qzint.h +usr/lib/libQZint.so diff --git a/debian/libqzint.install b/debian/libqzint.install new file mode 100644 index 00000000..d07ebfb1 --- /dev/null +++ b/debian/libqzint.install @@ -0,0 +1 @@ +usr/lib/libQZint.so.* diff --git a/debian/libzint-dev.install b/debian/libzint-dev.install new file mode 100644 index 00000000..b9ec78ba --- /dev/null +++ b/debian/libzint-dev.install @@ -0,0 +1,3 @@ +usr/include/zint.h +usr/lib/libzint.so +usr/share/cmake-2.6/Modules/FindZint.cmake diff --git a/debian/libzint.install b/debian/libzint.install new file mode 100644 index 00000000..f363cca8 --- /dev/null +++ b/debian/libzint.install @@ -0,0 +1 @@ +usr/lib/libzint.so.* diff --git a/debian/rules b/debian/rules new file mode 100755 index 00000000..fca5ea97 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk + + +# Add here any variable or target overrides you need.