--- libicns-0.7.1.orig/debian/docs +++ libicns-0.7.1/debian/docs @@ -0,0 +1,5 @@ +NEWS +README +TODO +src/apidocs.txt +src/apidocs.html --- libicns-0.7.1.orig/debian/rules +++ libicns-0.7.1/debian/rules @@ -0,0 +1,92 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +#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) +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 + +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 + +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + MAKEFLAGS += -j$(NUMJOBS) +endif + +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 +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + +build: build-stamp +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs -A + dh_install --sourcedir=debian/tmp + dh_link + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs -V 'libicns1 (>= 0.7.0)' + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libicns-0.7.1.orig/debian/icnsutils.copyright +++ libicns-0.7.1/debian/icnsutils.copyright @@ -0,0 +1,56 @@ +This package was debianized by Mathew Eis on +Wed, 28 May 2008 02:34:52 -0700. + +It was downloaded from http://sourceforge.net/projects/icns + +Upstream Author: + + Mathew Eis + +Copyright: + + Copyright 2001-2008 Mathew Eis + Copyright 2008 Julien BLACHE + Copyright 2005 Thomas Lübking + +License: + + icns2png, icontainer2icns, and their respective manpages are + free software; you can redistribute them and/or modify them under + the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + + png2icns 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 program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, 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-2'. + +The Debian packaging is Copyright 2009, Mathew Eis +and is licensed under the GPLv2+, see above. + --- libicns-0.7.1.orig/debian/icnsutils.install +++ libicns-0.7.1/debian/icnsutils.install @@ -0,0 +1,2 @@ +usr/bin/* +usr/share/man/man1/* --- libicns-0.7.1.orig/debian/libicns-dev.copyright +++ libicns-0.7.1/debian/libicns-dev.copyright @@ -0,0 +1,40 @@ +This package was debianized by Mathew Eis on +Wed, 28 May 2008 02:34:52 -0700. + +It was downloaded from http://sourceforge.net/projects/icns + +Upstream Author: + + Mathew Eis + +Copyright: + + Copyright 2001-2009 Mathew Eis + Copyright 2007 Lyonel Vincent + Copyright 2005 Thomas Lübking + Copyright 2004 Brion Vibber + Copyright 2002 Chenxiao Zhao + +License: + + libicns is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + +The Debian packaging is Copyright 2009, Mathew Eis +and is licensed under the GPLv2+, see above. + --- libicns-0.7.1.orig/debian/libicns1.symbols +++ libicns-0.7.1/debian/libicns1.symbols @@ -0,0 +1,35 @@ +libicns.so.1 libicns1 #MINVER# + icns_add_element_in_family@Base 0.5.7 + icns_count_elements_in_family@Base 0.5.7 + icns_create_family@Base 0.5.7 + icns_decode_rle24_data@Base 0.5.7 + icns_encode_rle24_data@Base 0.5.7 + icns_export_family_data@Base 0.5.7 + icns_free_image@Base 0.5.7 + icns_get_element_from_family@Base 0.5.7 + icns_get_image32_with_mask_from_family@Base 0.5.7 + icns_get_image_from_element@Base 0.5.7 + icns_get_image_info_for_type@Base 0.5.7 + icns_get_mask_from_element@Base 0.5.7 + icns_get_mask_type_for_icon_type@Base 0.5.7 + icns_get_type_from_image@Base 0.5.7 + icns_get_type_from_image_info@Base 0.5.7 + icns_get_type_from_mask@Base 0.5.7 + icns_image_to_jp2@Base 0.5.7 + icns_import_family_data@Base 0.5.7 + icns_init_image@Base 0.5.7 + icns_init_image_for_type@Base 0.5.7 + icns_jp2_to_image@Base 0.5.7 + icns_new_element_from_image@Base 0.5.7 + icns_new_element_from_mask@Base 0.5.7 + icns_read_family_from_file@Base 0.5.7 + icns_read_family_from_rsrc@Base 0.5.7 + icns_remove_element_in_family@Base 0.5.7 + icns_set_element_in_family@Base 0.5.7 + icns_type_str@Base 0.7.0 + icns_set_print_errors@Base 0.5.7 + icns_types_equal@Base 0.5.7 + icns_types_not_equal@Base 0.5.7 + icns_update_element_with_image@Base 0.5.7 + icns_update_element_with_mask@Base 0.5.7 + icns_write_family_to_file@Base 0.5.7 --- libicns-0.7.1.orig/debian/copyright +++ libicns-0.7.1/debian/copyright @@ -0,0 +1,59 @@ +This package was debianized by Mathew Eis on +Wed, 28 May 2008 02:34:52 -0700. + +It was downloaded from http://sourceforge.net/projects/icns + +Upstream Author: + + Mathew Eis + +Copyright: + + Copyright 2001-2009 Mathew Eis + Copyright 2008 Julien BLACHE + Copyright 2007 Lyonel Vincent + Copyright 2005 Thomas Lübking + Copyright 2004 Brion Vibber + Copyright 2002 Chenxiao Zhao + +License: + + libicns and its utility programs (with the exception of png2icns) are + free software; you can redistribute them and/or modify them under + the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + + png2icns 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 program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, 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-2'. + +The Debian packaging is Copyright 2008, Mathew Eis +and is licensed under the GPLv2+, see above. + --- libicns-0.7.1.orig/debian/compat +++ libicns-0.7.1/debian/compat @@ -0,0 +1 @@ +6 --- libicns-0.7.1.orig/debian/libicns1.copyright +++ libicns-0.7.1/debian/libicns1.copyright @@ -0,0 +1,40 @@ +This package was debianized by Mathew Eis on +Wed, 28 May 2008 02:34:52 -0700. + +It was downloaded from http://sourceforge.net/projects/icns + +Upstream Author: + + Mathew Eis + +Copyright: + + Copyright 2001-2009 Mathew Eis + Copyright 2007 Lyonel Vincent + Copyright 2005 Thomas Lübking + Copyright 2004 Brion Vibber + Copyright 2002 Chenxiao Zhao + +License: + + libicns is free software; you can redistribute it and/or modify it under + the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + +The Debian packaging is Copyright 2009, Mathew Eis +and is licensed under the GPLv2+, see above. + --- libicns-0.7.1.orig/debian/libicns-dev.install +++ libicns-0.7.1/debian/libicns-dev.install @@ -0,0 +1,4 @@ +usr/include/* +usr/lib/lib*.a +usr/lib/lib*.so +usr/lib/pkgconfig/* --- libicns-0.7.1.orig/debian/doc-base +++ libicns-0.7.1/debian/doc-base @@ -0,0 +1,10 @@ +Document: libicns +Title: libicns Documentation +Author: Mathew Eis +Abstract: This manual documents libicns and it's associated API +Section: Programming + +Format: HTML +Index: /usr/share/doc/libicns-dev/apidocs.html +Files: /usr/share/doc/libicns-dev/apidocs.html + --- libicns-0.7.1.orig/debian/control +++ libicns-0.7.1/debian/control @@ -0,0 +1,40 @@ +Source: libicns +Priority: optional +Maintainer: Mathew Eis +Build-Depends: debhelper (>= 6), autotools-dev, libpng12-dev, libjasper-dev, libjpeg62-dev +Standards-Version: 3.8.3 +Section: libs +Homepage: http://icns.sourceforge.net/ + +Package: libicns-dev +Section: libdevel +Architecture: any +Depends: libicns1 (= ${binary:Version}), ${misc:Depends} +Description: libicns development files + libicns is a library for manipulation of + the Mac OS icns resource format, also known as the IconFamily + resource type. It can read and write files for the Mac OS X icns + format, as well as read from Mac OS resource files and macbinary + encoded Mac OS resource forks. + . + This package contains development files (static libraries and headers) + needed to build software using libicns. + +Package: libicns1 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: library for manipulation of the Mac OS icns format + libicns is a library for manipulation of the Mac OS icns resource + format, also known as the IconFamily resource type. It can read + and write files for the Mac OS X icns format, as well as read from + Mac OS resource files and macbinary encoded Mac OS resource forks. + +Package: icnsutils +Section: graphics +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: utilities for manipulating Mac OS icns files + icnsutils includes icns2png and png2icns, two utilies used to + extract PNG images from icns files, and create icns files from + PNG images. + --- libicns-0.7.1.orig/debian/changelog +++ libicns-0.7.1/debian/changelog @@ -0,0 +1,28 @@ +libicns (0.7.1-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Don't ship .la files (Closes: #621618). + + -- Luk Claes Wed, 22 Jun 2011 08:21:57 +0200 + +libicns (0.7.1-1) unstable; urgency=low + + * New upstream release + * debian/control + - Bump to 3.8.3 Standards-Version (no change needed). + + -- Mathew Eis Thu, 03 Sep 2009 21:28:08 -0700 + +libicns (0.5.9-1) unstable; urgency=low + + * New upstream release + - Fixed configure to link against jasper/openjpeg (Closes: #487463) + + -- Mathew Eis Wed, 25 Jun 2008 19:07:24 -0700 + +libicns (0.5.8-1) unstable; urgency=low + + * Initial release (Closes: #481804) + + -- Mathew Eis Wed, 28 May 2008 02:34:52 -0700 + --- libicns-0.7.1.orig/debian/NEWS.Debian +++ libicns-0.7.1/debian/NEWS.Debian @@ -0,0 +1,11 @@ +icnsutils (0.6.0-1) unstable; urgency=low + + As of the release of libicns 0.6.0, the default behavior of + icns2png when extracting icons is to save the pngs in the + current working directory. Prior to the release of 0.6.0, the + default behavior was to save the pngs in the same directory as + the icns file, NOT the current working directory. PNGs can still + be saved to a directory other than the working directory by + using the -o switch to choose an output directory. + + -- Mathew Eis Thu, 09 Oct 2008 19:36:10 -0700 --- libicns-0.7.1.orig/debian/watch +++ libicns-0.7.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/icns/libicns-(.+)\.tar\.gz --- libicns-0.7.1.orig/debian/libicns1.install +++ libicns-0.7.1/debian/libicns1.install @@ -0,0 +1 @@ +usr/lib/lib*.so.*