debian/0000755000000000000000000000000012231530425007163 5ustar debian/dirs0000644000000000000000000000003712136542364010060 0ustar usr/bin usr/share/applications debian/source/0000755000000000000000000000000012136542364010474 5ustar debian/source/format0000644000000000000000000000001412136542364011702 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000234712136542364011135 0ustar This package was debianized by: Gürkan Sengün on Tue, 05 Jun 2007 20:03:41 +0200. It was downloaded from: http://www.bottlenose.demon.co.uk/share/fracplanet/ Upstream Author: Tim Day Copyright: Copyright (C) 2003-2009 Tim Day License: Fracplanet 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. Fracplanet 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 Fracplanet. 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) 2010, Gürkan Sengün and is licensed under the GPL version 3, see `/usr/share/common-licenses/GPL-3'. debian/manpages0000644000000000000000000000002612136542364010710 0ustar man/man1/fracplanet.1 debian/changelog0000644000000000000000000000264212231530424011040 0ustar fracplanet (0.4.0-3build2) trusty; urgency=low * No change rebuild for Boost 1.54 transition. -- Dmitrijs Ledkovs Tue, 22 Oct 2013 18:08:36 +0100 fracplanet (0.4.0-3build1) saucy; urgency=low * No change rebuild for Boost 1.53 transition. -- Dmitrijs Ledkovs Fri, 26 Apr 2013 19:18:41 +0100 fracplanet (0.4.0-3) unstable; urgency=low * QA upload. * fix configure calling - use proper stamp file, avoiding recompilation (Closes: 653584) - use dpkg-buildflags - use correct variables to pass flags (thus respecting DEB_BUILD_OPTIONS) -- Bernhard R. Link Sun, 01 Jul 2012 16:36:55 +0200 fracplanet (0.4.0-2) unstable; urgency=low * QA upload. * Orphaned package, see #661455, set maintainer to Debian QA Group * Add missing include to fix FTBFS with Qt 4.8 (Closes: #662712) - Thanks to Andreas Moog from Ubuntu for the patch and to Felix Geyer for forwarding it -- Scott Kitterman Tue, 08 May 2012 22:38:42 -0400 fracplanet (0.4.0-1.1) unstable; urgency=low * Non-maintainer upload. * control: Switch to non-versioned boost build-dependencies. (Closes: #630439). -- Steve M. Robbins Sat, 23 Jul 2011 00:17:17 -0500 fracplanet (0.4.0-1) unstable; urgency=low * Initial release. (Closes: #577085) -- Gürkan Sengün Fri, 20 Aug 2010 16:10:30 +0200 debian/control0000644000000000000000000000137612136542403010600 0ustar Source: fracplanet Section: graphics Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian QA Group Build-Depends: debhelper (>= 7), libqt4-dev, qt4-qmake, libboost-program-options-dev, xsltproc, libqt4-opengl-dev Standards-Version: 3.9.1 Homepage: http://www.bottlenose.demon.co.uk/share/fracplanet/ Package: fracplanet Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Suggests: blender Description: Fractal planet generator This is an interactive tool for creating random fractal planets and terrain areas with oceans, rivers, lakes and icecaps. The results can be exported as models to POV-Ray and to Blender, or as texture maps for more general usage. debian/menu0000644000000000000000000000016512136542364010065 0ustar ?package(fracplanet):needs="X11" section="Applications/Graphics"\ title="Fracplanet" command="/usr/bin/fracplanet" debian/rules0000755000000000000000000000406712136542364010263 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CFLAGS := $(shell dpkg-buildflags --get CFLAGS) CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS) CPPFLAGS := $(shell dpkg-buildflags --get CPPFLAGS) LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) # options needed for qmake (called by ./configure) # (set _RELEASE and _DEBUG empty to avoid those overriding what we give, # pass CPPFLAGS and CFLAGS and CXXFLAGS, # pass CXXFLAGS and LDFLAGS in LFLAGS (it's LFLAGS, not LDFLAGS!)): QMAKEOPTIONS := QMAKE_CXXFLAGS_RELEASE='' QMAKE_CXXFLAGS_DEBUG='' \ QMAKE_CFLAGS_RELEASE='' QMAKE_CFLAGS_DEBUG='' \ QMAKE_CFLAGS='-Wall $(CFLAGS) $(CPPFLAGS)' \ QMAKE_CXXFLAGS='-Wall $(CFLAGS) $(CPPFLAGS)' \ QMAKE_LFLAGS='$(CXXFLAGS) $(LDFLAGS)' ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) MAKEFLAGS += -j$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) endif configure-stamp: configure dh_testdir QTDIR=/usr/lib/qt4 ./configure $(QMAKEOPTIONS) touch $@ build build-arch: build-stamp build-indep: build-stamp: configure-stamp dh_testdir $(MAKE) touch $@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp [ ! -f Makefile ] || $(MAKE) distclean rm -f Makefile usage_text.h dh_clean install: build-stamp dh_testdir dh_testroot dh_prep dh_installdirs $(MAKE) prefix=$(CURDIR)/debian/fracplanet/usr install cp $(shell find fracplanet -perm /u+x -type f) $(CURDIR)/debian/fracplanet/usr/bin cp debian/fracplanet.desktop debian/fracplanet/usr/share/applications/ # Build architecture-independent files here. binary-indep: # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installmenu dh_installman dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build build-indep build-arch clean binary-indep binary-arch binary install debian/patches/0000755000000000000000000000000012136542364010623 5ustar debian/patches/qt4.8_headers.patch0000644000000000000000000000155412136542364014222 0ustar Description: Import glu.h to build against qt4.8 Author: Andreas Moog Bug-Ubuntu: https://launchpad.net/bugs/935091 --- fracplanet-0.4.0.orig/triangle_mesh_viewer_display.cpp +++ fracplanet-0.4.0/triangle_mesh_viewer_display.cpp @@ -24,6 +24,8 @@ #include "matrix33.h" #include "triangle_mesh_viewer.h" +#include + TriangleMeshViewerDisplay::TriangleMeshViewerDisplay(TriangleMeshViewer* parent,const QGLFormat& format,const ParametersRender* param,const std::vector& m,bool verbose) :QGLWidget(format,parent) ,_notify(*parent) --- fracplanet-0.4.0.orig/fracplanet.pro +++ fracplanet-0.4.0/fracplanet.pro @@ -8,7 +8,7 @@ PRECOMPILED_HEADER = precompiled.h HEADERS += $$system(ls *.h) SOURCES += $$system(ls *.cpp) -LIBS += -lboost_program_options +LIBS += -lboost_program_options -lGLU DEFINES += QT_DLL debian/patches/series0000644000000000000000000000002412136542364012034 0ustar qt4.8_headers.patch debian/fracplanet.desktop0000644000000000000000000000025312136542364012706 0ustar [Desktop Entry] Type=Application Version=0.4.0 Name=Fracplanet Exec=fracplanet Terminal=false Categories=Graphics;2DGraphics; Comment=Interactive fractal planet generator debian/docs0000644000000000000000000000003012136542364010040 0ustar BUGS README TODO THANKS debian/compat0000644000000000000000000000000212136542364010372 0ustar 7