diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-02-07 23:47:58 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-02-07 23:48:43 +0100 |
commit | 3d873d090769de6ad0516512589922455c02bd17 (patch) | |
tree | f6d52100fb53908fb61e20bfbbbfafe921329be3 /media-gfx/mandelbulber | |
parent | media-libs/openal: stable 1.18.2-r1 for ia64, bug #644530 (diff) | |
download | gentoo-3d873d090769de6ad0516512589922455c02bd17.tar.gz gentoo-3d873d090769de6ad0516512589922455c02bd17.tar.bz2 gentoo-3d873d090769de6ad0516512589922455c02bd17.zip |
media-gfx/mandelbulber: Drop old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'media-gfx/mandelbulber')
5 files changed, 0 insertions, 152 deletions
diff --git a/media-gfx/mandelbulber/Manifest b/media-gfx/mandelbulber/Manifest index 95a8c017df01..bbd387ba6e9d 100644 --- a/media-gfx/mandelbulber/Manifest +++ b/media-gfx/mandelbulber/Manifest @@ -1,3 +1 @@ -DIST mandelbulber1.11.tar.gz 1176248 BLAKE2B 6a5eb1391aa94630ba2b24e1f811202c2e1b642a6b5122c43dd8352d339286a4f0c894fb83870be5472ed542b510475dca4ba8cad298fb4be7db24c716c3c80e SHA512 fddd351fd235e42899b5dbf26099cb5c315539b1352f1c4dad7a59e39fe34a07aba41140349e1bfd8dddd69ef4f39c39ca017285b3726557e52fb9ec4f82291b -DIST mandelbulber1.12-1.tar.gz 1179684 BLAKE2B 726315b34e0785846e0184fa2702a27329d4f61a9674e08626a2059dd9c6c418a0d9f83c0e225be09ce321fa76e0f957cd7e6c73aabfe53c9c3cdd5d38901778 SHA512 c198c71648ad4d674dac980c77fe2573617e122bdddb7775fccf74e1a929900691a421561f8717e4df741db65421cbdb8e464fd031ff5c38a56f63f5259b5512 DIST mandelbulber1.21-1.orig.tar.gz 1076836 BLAKE2B 6cb17351d8070abb092faa48a2254c76af40cd95942e8ecb46f3fd651423b5e8be8555906c946fb5b28024f23015680abce2f92adc33a742fadea8c0e10c6fac SHA512 caaa27a4aa67e83045e9cfc84593770d26d0b12d44e6f37f1f37e04eb62f7d2038c07d82541eca2ef8c64c787bae2fac9c487f69c98936310946f27c07760ce3 diff --git a/media-gfx/mandelbulber/files/mandelbulber-1.11-qa.patch b/media-gfx/mandelbulber/files/mandelbulber-1.11-qa.patch deleted file mode 100644 index f457c1902c8f..000000000000 --- a/media-gfx/mandelbulber/files/mandelbulber-1.11-qa.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- a/makefiles/makefile -+++ b/makefiles/makefile -@@ -5,6 +5,7 @@ - -include ../makefile.init - - RM := rm -rf -+CXX ?= g++ - - # All of the sources participating in the build are defined here - -include sources.mk -@@ -44,7 +45,7 @@ - mandelbulber: $(OBJS) $(USER_OBJS) - @echo 'Building target: $@' - @echo 'Invoking: GCC C++ Linker' -- g++ -o"mandelbulber" -L/usr/lib/x86_64-linux-gnu/ $(OBJS) $(USER_OBJS) $(LIBS) `pkg-config --libs gtk+-2.0 gthread-2.0` -+ $(CXX) $(LDFLAGS) -o"mandelbulber" -L/usr/lib/x86_64-linux-gnu/ $(OBJS) $(USER_OBJS) $(LIBS) `pkg-config --libs gtk+-2.0 gthread-2.0` - @echo 'Finished building target: $@' - @echo ' ' - ---- a/makefiles/src/subdir.mk -+++ b/makefiles/src/subdir.mk -@@ -63,12 +63,14 @@ - ./src/undo.d \ - ./src/cl_support.d - -+CXX ?= g++ -+CXXFLAGS ?= -O2 -fast-math - - # Each subdirectory must supply rules for building sources it contributes - src/%.o: ../src/%.cpp - @echo 'Building file: $<' - @echo 'Invoking: GCC C++ Compiler' -- g++ -O2 -ffast-math -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" -+ $(CXX) $(CXXFLAGS) -Wall -c -fmessage-length=0 `pkg-config --cflags gtk+-2.0 gthread-2.0;` -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<" - @echo 'Finished building: $<' - @echo ' ' - diff --git a/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch b/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch deleted file mode 100644 index 43fb0b982dbd..000000000000 --- a/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch +++ /dev/null @@ -1,22 +0,0 @@ -http://bugs.gentoo.org/464972 - ---- src/texture.cpp -+++ src/texture.cpp -@@ -5,6 +5,7 @@ - * Author: krzysztof - */ - #include <stdio.h> -+#include <string.h> - #include "texture.hpp" - #include "files.h" - ---- src/timeline.cpp -+++ src/timeline.cpp -@@ -6,6 +6,7 @@ - */ - - #include <cstdlib> -+#include <cstring> - - #include "timeline.hpp" - #include "files.h" diff --git a/media-gfx/mandelbulber/mandelbulber-1.11.ebuild b/media-gfx/mandelbulber/mandelbulber-1.11.ebuild deleted file mode 100644 index e3761ae9b170..000000000000 --- a/media-gfx/mandelbulber/mandelbulber-1.11.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -MY_P=${PN}${PV} - -DESCRIPTION="Tool to render 3D fractals" -HOMEPAGE="https://sites.google.com/site/mandelbulber/home" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - >=media-libs/libsndfile-1 - >=media-libs/libpng-1.4 - virtual/jpeg" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${P}-qa.patch -} - -src_compile() { - emake CXX="$(tc-getCXX)" -C makefiles all -} - -src_install() { - dobin makefiles/${PN} - dodoc README NEWS - insinto /usr/share/${PN} - doins -r usr/share/* -} - -pkg_postinst() { - elog "Before you run ${PN} please copy /usr/share/${PN}/* to \${HOME}/.${PN}" -} diff --git a/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild b/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild deleted file mode 100644 index cfeefff2b52e..000000000000 --- a/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils toolchain-funcs versionator - -MY_P=${PN}$(replace_version_separator 2 '-' ) - -DESCRIPTION="Tool to render 3D fractals" -HOMEPAGE="https://sites.google.com/site/mandelbulber/home" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - >=media-libs/libsndfile-1 - >=media-libs/libpng-1.4:0= - virtual/jpeg" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch \ - "${FILESDIR}"/${PN}-1.11-qa.patch \ - "${FILESDIR}"/${P}-memcpy_and_memset.patch -} - -src_compile() { - emake CXX="$(tc-getCXX)" -C makefiles all -} - -src_install() { - dobin makefiles/${PN} - dodoc README NEWS - insinto /usr/share/${PN} - doins -r usr/share/* -} - -pkg_postinst() { - elog "Before you run ${PN} please copy /usr/share/${PN}/* to \${HOME}/.${PN}" -} |