debian/0000755000000000000000000000000012217611055007166 5ustar debian/libnoise-dev.dirs0000644000000000000000000000027610720777723012452 0ustar usr/lib usr/include/libnoise usr/include/libnoise/module usr/include/libnoise/model usr/share/doc/libnoise-dev/html usr/share/doc/libnoise-dev/examples usr/share/doc/libnoise-dev/noiseutils debian/control0000644000000000000000000000242012217576562010604 0ustar Source: libnoise Section: devel Priority: optional Build-Depends: debhelper (>= 9), libtool Standards-Version: 3.9.4 Maintainer: Federico Di Gregorio Package: libnoise0 Section: libs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Portable, coherent noise-generating library for C++ libnoise is a portable C++ library that is used to generate coherent noise, a type of smoothly-changing noise. libnoise can generate Perlin noise, ridged multifractal noise, and other types of coherent-noise. Coherent noise is often used by graphics programmers to generate natural-looking textures, planetary terrain, and other things. Package: libnoise-dev Section: libdevel Architecture: any Depends: libnoise0 (= ${binary:Version}), ${misc:Depends} Description: Portable, coherent noise-generating library for C++ libnoise is a portable C++ library that is used to generate coherent noise, a type of smoothly-changing noise. libnoise can generate Perlin noise, ridged multifractal noise, and other types of coherent-noise. Coherent noise is often used by graphics programmers to generate natural-looking textures, planetary terrain, and other things. . This package contains the headers and static libraries needed to build programs using libnoise. debian/libnoise0.dirs0000644000000000000000000000004010720777723011743 0ustar usr/lib usr/share/doc/libnoise0 debian/compat0000644000000000000000000000000212217573233010371 0ustar 9 debian/rules0000755000000000000000000000247012217575450010261 0ustar #!/usr/bin/make -f %: dh "$@" BUILD_TREE := build-tree INSTALL := /usr/bin/install FV := 0.3 SV := 0 override_dh_auto_build: mkdir $(BUILD_TREE) cp -al $(CURDIR)/noise $(BUILD_TREE)/noise cd $(BUILD_TREE)/noise && $(MAKE) override_dh_auto_clean: rm -fr $(BUILD_TREE) find . -name "*~" -delete override_dh_auto_install: $(INSTALL) $(BUILD_TREE)/noise/lib/libnoise.so.* \ debian/libnoise0/usr/lib dh_link -p libnoise0 usr/lib/libnoise.so.$(FV) usr/lib/libnoise.so.$(SV) $(INSTALL) $(BUILD_TREE)/noise/lib/libnoise.la \ debian/libnoise-dev/usr/lib $(INSTALL) $(BUILD_TREE)/noise/lib/libnoise.a \ debian/libnoise-dev/usr/lib dh_link -p libnoise-dev usr/lib/libnoise.so.$(FV) usr/lib/libnoise.so $(INSTALL) $(BUILD_TREE)/noise/include/*.h \ debian/libnoise-dev/usr/include/libnoise/ $(INSTALL) $(BUILD_TREE)/noise/include/module/*.h \ debian/libnoise-dev/usr/include/libnoise/module/ $(INSTALL) $(BUILD_TREE)/noise/include/model/*.h \ debian/libnoise-dev/usr/include/libnoise/model/ $(INSTALL) $(BUILD_TREE)/noise/doc/html/* \ debian/libnoise-dev/usr/share/doc/libnoise-dev/html/ $(INSTALL) noiseutils/noiseutils.* \ debian/libnoise-dev/usr/share/doc/libnoise-dev/noiseutils/ $(INSTALL) examples/texture*.cpp examples/worms.cpp \ debian/libnoise-dev/usr/share/doc/libnoise-dev/examples/ debian/changelog0000644000000000000000000000332312217610744011045 0ustar libnoise (1.0.0+repack-0+nmu1) unstable; urgency=low * Non-maintainer upload fo remove build-dependency on dbs (closes: #576065); upload this NMU to DELAYED/10 queue. * Switch to the '3.0 (quilt)' source format. * Repack original tarballs (there are three of them: main, noiseutils, and examples) from zip into tar.bz2. * Use debhelper v9 and its tiny rules format. * Bump Standards-Version to 3.9.4. * Remove an article from short package description (lintian). * Fix binary packages' sections to match override file. -- Robert Luberda Sun, 22 Sep 2013 17:21:09 +0200 libnoise (1.0.0+nmu1) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS: undefined reference to `main'". Applied patch by Nobuhiro Iwamatsu. (Closes: #526547) -- Bastian Venthur Tue, 23 Feb 2010 16:54:00 +0100 libnoise (1.0.0) unstable; urgency=low * New upstream release (fixes: #445765) -- Federico Di Gregorio Wed, 21 Nov 2007 10:56:44 +0100 libnoise (0.9.0+1.0.0-RC1-1) unstable; urgency=low * New upstream release. -- Federico Di Gregorio Sat, 02 Sep 2006 20:57:07 +0200 libnoise (0.9.0-3) unstable; urgency=low * Added to Build-depends: dbs, libtool (Closes: #321979). -- Federico Di Gregorio Mon, 22 Aug 2005 01:49:29 +0200 libnoise (0.9.0-2) unstable; urgency=low * Update debian/copyright to include licensing information for the example code (GPL instead of LGPL.) -- Federico Di Gregorio Fri, 5 Aug 2005 23:31:33 +0200 libnoise (0.9.0-1) unstable; urgency=low * Initial release (Closes: #313610) -- Federico Di Gregorio Mon, 25 Jul 2005 20:22:58 +0200 debian/patches/0000755000000000000000000000000012217575213010622 5ustar debian/patches/series0000644000000000000000000000002012217575134012031 0ustar fix_ftsbs.patch debian/patches/fix_ftsbs.patch0000644000000000000000000000076412217575213013641 0ustar --- a/noise/src/Makefile 2010-02-10 03:28:13.000000000 +0000 +++ b/noise/src/Makefile 2010-02-10 03:28:26.000000000 +0000 @@ -17,7 +17,7 @@ # Real build targets libnoise.so.0.3: $(OBJECTS) - $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -shared -Wl,-soname=libnoise.so.0 -o $@ $(OBJECTS:.o=.lo) + $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -Xcompiler -shared -Wl,-soname=libnoise.so.0 -o $@ $(OBJECTS:.o=.lo) libnoise.a: $(OBJECTS) $(LIBTOOL) --mode=link $(CXX) $(LDFLAGS) -o $@ $(OBJECTS) debian/source/0000755000000000000000000000000012217547250010473 5ustar debian/source/format0000644000000000000000000000001412217547250011701 0ustar 3.0 (quilt) debian/source/options0000644000000000000000000000002712217547250012110 0ustar diff-ignore tar-ignore debian/copyright0000644000000000000000000000130210720777723011131 0ustar This package was debianized by: Federico Di Gregorio on Monday, 25th July 20:19:57 CEST 2005 The original, pristine sources can be obtained from: http://libnoise.sourceforge.net/ Copyright (C) 2003, 2004 Jason Bevins The library and utilities are free software, distributed under the terms of the GNU Lesser General Public License. On a Debian GNU/Linux system the full text of the LGPL can be found in /usr/share/common-licenses/LGPL. The example code located in /usr/share/doc/libnoise-dev/examples is distributed under the terms of the GNU General Public License. On a Debian GNU/Linux system the full text of the LGPL can be found in /usr/share/common-licenses/GPL.