debian/0000755000000000000000000000000012163134733007171 5ustar debian/gimp-dds.install0000644000000000000000000000003711001722075012255 0ustar dds /usr/lib/gimp/2.0/plug-ins/debian/watch0000644000000000000000000000016111420671560010217 0ustar # Compulsory line, this is a version 3 file version=3 http://code.google.com/p/gimp-dds .*gimp-dds-(.*).tar.bz2 debian/rules0000755000000000000000000000003712163133736010253 0ustar #!/usr/bin/make -f %: dh $@ debian/gimp-dds.docs0000644000000000000000000000003111031261505011530 0ustar README* doc/gimp-dds.pdfdebian/control0000644000000000000000000000141312163133757010600 0ustar Source: gimp-dds Section: graphics Priority: optional Maintainer: Debian Games Team Uploaders: Vincent Fourmond Build-Depends: debhelper (>= 8), libgimp2.0-dev (>=2.6), pkg-config, libgtk2.0-dev Standards-Version: 3.9.4 Homepage: http://code.google.com/p/gimp-dds/ Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/gimp-dds Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/gimp-dds/?op=log Package: gimp-dds Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: DDS (DirectDraw Surface) plugin for GIMP gimp-dds is a plugin for GIMP that lets you manipulate Microsoft DirectDraw surfaces. These kind of files are widely used in 3D games for textures and the like. debian/patches/0000755000000000000000000000000012163134733010620 5ustar debian/patches/series0000644000000000000000000000001611001722075012022 0ustar makefile.diff debian/patches/makefile.diff0000644000000000000000000000133212163134550013223 0ustar Add the --as-needed flag to take down the number of libraries linked against this package Index: gimp-dds-2.2.1/Makefile =================================================================== --- gimp-dds-2.2.1.orig/Makefile 2012-07-26 09:25:36.000000000 +0200 +++ gimp-dds-2.2.1/Makefile 2013-06-28 00:15:00.137132290 +0200 @@ -2,7 +2,7 @@ GIMPTOOL=gimptool-2.0 CC=gcc -CFLAGS=-pipe -g -O2 -Wall $(shell pkg-config --cflags gtk+-2.0 gimp-2.0) +CFLAGS+=-pipe -g -O2 -Wall $(shell pkg-config --cflags gtk+-2.0 gimp-2.0) OS=$(shell uname -s) ifeq (,$(findstring Windows,$(OS))) @@ -11,6 +11,8 @@ EXT=.exe endif +LDFLAGS+=-Wl,--as-needed + TARGET=dds$(EXT) SRCS=color.c dds.c ddsread.c ddswrite.c dxt.c mipmap.c misc.c debian/copyright0000644000000000000000000000225011001722075011113 0ustar This package was debianized by Vincent Fourmond on Thu Apr 17 20:23:44 CEST 2008. It was downloaded from http://nifelheim.dyndns.org/~cocidius/dds/ Files: * Copyright: Copyright: 2004-2008 Shawn Kirst License: GPL-2+ 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 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. Files: debian/* Copyright: 2008 Vincent Fourmond License: GPL-2+ On Debian systems, the complete text of the GNU General Public License version 2 (GPL-2+) can be found in `/usr/share/common-licenses/GPL-2.' debian/changelog0000644000000000000000000000503512163134731011044 0ustar gimp-dds (2.2.1-1) unstable; urgency=low * New upstream release, which fixes a FTBS (closes: #713553) * Fix small typo in package description, thanks to Erik Esterer (closes: #626917) * Switch to dh debian/rules * Refresh the patch on upstream makefile to make sure that debian global flags are used -- Vincent Fourmond Fri, 28 Jun 2013 00:15:15 +0200 gimp-dds (2.0.9-3) unstable; urgency=low * Update to the new home for gimp-dds * Added a watchfile now it is possible * Already conforms to standards 3.9.0 -- Vincent Fourmond Sun, 18 Jul 2010 23:30:51 +0200 gimp-dds (2.0.9-2) unstable; urgency=low * Modify debian/rules to use Makefile.linux on all arches, to avoid FTBSes on the non-linux arches (closes: 573773) -- Vincent Fourmond Sun, 14 Mar 2010 01:46:45 +0100 gimp-dds (2.0.9-1) unstable; urgency=low * Drop dependency on quilt, unneeded for 3.0 (quilt) * New upstream release: - fix the off-by-one mistake in mipmap generation (closes: #564111, #564113). Thanks to Michalis Kamburelis for spotting and Shawn Kirst for fixing ! -- Vincent Fourmond Thu, 11 Mar 2010 20:25:24 +0100 gimp-dds (2.0.7-2) unstable; urgency=medium * Converted to source format 3.0 (quilt) * Refreshed makefile.diff * Removed debian/README.source, obsoleted by the use of format 3.0 (quilt) * Add build-depend on libgtk2.0-dev, now necessary (closes: #569383) * Urgency medium to fix RC bug in testing * Conforms to standards 3.8.4 -- Vincent Fourmond Tue, 16 Feb 2010 00:47:59 +0100 gimp-dds (2.0.7-1) unstable; urgency=low * New upstream release. * Build-depends on gimp 2.6 development files * Add a debian/README.source file to document the patching system. * Now conforms to standards 3.8.1 -- Vincent Fourmond Tue, 05 May 2009 20:43:12 +0200 gimp-dds (2.0.6-1) unstable; urgency=low * New upstream release (closes: #488083) * Adding provided PDF documentation -- Vincent Fourmond Fri, 27 Jun 2008 23:35:29 +0200 gimp-dds (2.0.3-1) unstable; urgency=low * Initial release (Closes: #476189) * No watch file, as it does not seem easy to guess the upstream version number from the download link (well, impossible, that is) * makefile.diff to pass the -Wl,--as-needed flag to gcc to drastically reduce the number of dependencies -- Vincent Fourmond Thu, 17 Apr 2008 21:22:59 +0200 debian/compat0000644000000000000000000000000211001712356010360 0ustar 5 debian/source/0000755000000000000000000000000012163134733010471 5ustar debian/source/format0000644000000000000000000000001411336356526011706 0ustar 3.0 (quilt)