diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2021-03-30 11:23:51 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-03-30 11:23:51 +0200 |
commit | c24344b6d652a33ab0689a7d960b260cb20e807b (patch) | |
tree | 3770f773c03f2f1fbb35b55442f089193da50acb /media-gfx | |
parent | x11-misc/unclutter-xfixes: drop 1.5 (diff) | |
download | gentoo-c24344b6d652a33ab0689a7d960b260cb20e807b.tar.gz gentoo-c24344b6d652a33ab0689a7d960b260cb20e807b.tar.bz2 gentoo-c24344b6d652a33ab0689a7d960b260cb20e807b.zip |
media-gfx/videorbits: Remove last-rited pkg
Closes: https://bugs.gentoo.org/772812
Closes: https://bugs.gentoo.org/731038
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-gfx')
7 files changed, 0 insertions, 153 deletions
diff --git a/media-gfx/videorbits/Manifest b/media-gfx/videorbits/Manifest deleted file mode 100644 index 71e2e4464262..000000000000 --- a/media-gfx/videorbits/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST videorbits-2.205.tgz 672377 BLAKE2B e111d48c3a7e8c3fc1bf878249a07c799879fa3c68e8555c539fd4089800fd7695f1758188295f65aa62fababfc6cc3c534abae384eb820f80bb1bbe0eb4b92d SHA512 faad5a7ab98167d67b7748b4b9aca1ced0e802ed85cba55ba9966d08c48045daa8fef8d387c576dcfa50ace8c4962bb0043bb83e3ba741844ede67d331e4fbf8 diff --git a/media-gfx/videorbits/files/videorbits-2.201-libpng15.patch b/media-gfx/videorbits/files/videorbits-2.201-libpng15.patch deleted file mode 100644 index f87132b0be44..000000000000 --- a/media-gfx/videorbits/files/videorbits-2.201-libpng15.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- videorbits-2.205/src/simple_png_read.c -+++ videorbits-2.205/src/simple_png_read.c -@@ -92,7 +92,7 @@ - return -1; - } - -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - fprintf(stderr, "simple_png_read: error (internal)\n"); - png_destroy_read_struct(&png_ptr, &info_ptr, &end_info); - fclose(fp); -@@ -226,7 +226,7 @@ - return -1; - } - -- if (setjmp(png_ptr->jmpbuf)) { -+ if (setjmp(png_jmpbuf(png_ptr))) { - fprintf(stderr, "simple_png_read_header: error\n"); - png_destroy_read_struct(&png_ptr, &info_ptr, &end_info); - fclose(fp); ---- videorbits-2.205/src/simple_png_write.c -+++ videorbits-2.205/src/simple_png_write.c -@@ -18,6 +18,7 @@ - #include <stdio.h> - #include <stdlib.h> - #include <png.h> -+#include <zlib.h> - - int simple_png_write_rgba( - char *filename, diff --git a/media-gfx/videorbits/files/videorbits-2.205-fix-buildsystem.patch b/media-gfx/videorbits/files/videorbits-2.205-fix-buildsystem.patch deleted file mode 100644 index 8d2359232bc2..000000000000 --- a/media-gfx/videorbits/files/videorbits-2.205-fix-buildsystem.patch +++ /dev/null @@ -1,19 +0,0 @@ -Fix installation paths. - ---- videorbits-2.205/images/Makefile.am -+++ videorbits-2.205/images/Makefile.am -@@ -1,4 +1,4 @@ --imagesdir = $(prefix)/images --images_DATA= v04.pgm v06.pgm -+images_dir = $(datadir)/videorbits/images -+images__DATA= v04.pgm v06.pgm - - ---- videorbits-2.205/lookuptables/Makefile.am -+++ videorbits-2.205/lookuptables/Makefile.am -@@ -1,3 +1,3 @@ --lookuptablesdir = $(prefix)/lookuptables --lookuptables_DATA=powLookup22.txt powLookup47.txt Kodak_DCS260_response_function -+lookuptables_dir = $(datadir)/videorbits/lookuptables -+lookuptables__DATA=powLookup22.txt powLookup47.txt Kodak_DCS260_response_function - diff --git a/media-gfx/videorbits/files/videorbits-2.205-qa-implicit-declarations.patch b/media-gfx/videorbits/files/videorbits-2.205-qa-implicit-declarations.patch deleted file mode 100644 index 1e46ccf5651e..000000000000 --- a/media-gfx/videorbits/files/videorbits-2.205-qa-implicit-declarations.patch +++ /dev/null @@ -1,23 +0,0 @@ -Fix implicit declarations caused by missing headers and -failures caused by -Werror=format-security checks - ---- videorbits-2.205/src/pchirp2nocrop.c -+++ videorbits-2.205/src/pchirp2nocrop.c -@@ -1,5 +1,6 @@ - #include <stdlib.h> - #include <math.h> -+#include <string.h> - #include "PNMImageOffsetable.h" - #include "mat_util.h" - #include "boundingbox.h" ---- videorbits-2.205/src/par.c -+++ videorbits-2.205/src/par.c -@@ -111,7 +111,7 @@ - - /* - - Write file-type number - - */ - sprintf(magic_number, "P%d\n", data_type); -- fprintf(file_ptr, magic_number); -+ fprintf(file_ptr, "%s", magic_number); - - /* - - put comments - - */ /* !!!!!! break up long comments */ - fprintf(file_ptr, "# %s\n", comments); diff --git a/media-gfx/videorbits/files/videorbits-2.205-remove-bits-nan.patch b/media-gfx/videorbits/files/videorbits-2.205-remove-bits-nan.patch deleted file mode 100644 index 822b8dd8167a..000000000000 --- a/media-gfx/videorbits/files/videorbits-2.205-remove-bits-nan.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 27db38e20d2f1c685c9a4aa01cfbde96b0555d80 Mon Sep 17 00:00:00 2001 -From: Harri Nieminen <moikkis@gmail.com> -Date: Tue, 27 Mar 2018 19:45:19 +0300 -Subject: [PATCH] Don't include bits/nan.h - ---- - src/cement.c | 1 - - src/cementinit.c | 1 - - 2 files changed, 2 deletions(-) - -diff --git a/src/cement.c b/src/cement.c -index 3dfb6f9..23c424c 100644 ---- a/src/cement.c -+++ b/src/cement.c -@@ -1,7 +1,6 @@ - #include <stdlib.h> - #include <stdio.h> - #include <math.h> --#include <bits/nan.h> - #include <limits.h> - #include <string.h> - #include <errno.h> -diff --git a/src/cementinit.c b/src/cementinit.c -index 95850d9..afa160e 100644 ---- a/src/cementinit.c -+++ b/src/cementinit.c -@@ -1,5 +1,4 @@ - #include <math.h> --#include <bits/nan.h> - /* NB: supposedly nan.h is included from math.h when -std=c99 is on the - * gcc compile line but that doesn't work so its included it directly. - * Not having this line makes nan become unreliable, sometime it is --- -2.16.3 - diff --git a/media-gfx/videorbits/metadata.xml b/media-gfx/videorbits/metadata.xml deleted file mode 100644 index e416281791b7..000000000000 --- a/media-gfx/videorbits/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="sourceforge">comparametric</remote-id> - </upstream> -</pkgmetadata> diff --git a/media-gfx/videorbits/videorbits-2.205.ebuild b/media-gfx/videorbits/videorbits-2.205.ebuild deleted file mode 100644 index 6628294ba749..000000000000 --- a/media-gfx/videorbits/videorbits-2.205.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="a collection of programs for creating high dynamic range images" -HOMEPAGE="http://comparametric.sourceforge.net/" -SRC_URI="mirror://sourceforge/comparametric/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - sys-libs/zlib - media-libs/libpng:0= - virtual/jpeg:0 - sci-libs/fftw:2.1 - media-libs/netpbm" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}/${PN}-2.201-libpng15.patch" - "${FILESDIR}/${P}-qa-implicit-declarations.patch" - "${FILESDIR}/${P}-fix-buildsystem.patch" - "${FILESDIR}/${P}-remove-bits-nan.patch" -) -DOCS=( AUTHORS README README.MORE ) - -src_prepare() { - default - mv configure.{in,ac} || die - eautoreconf -} |