summaryrefslogtreecommitdiff
path: root/media-video/mpeg2vidcodec
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-01-19 17:59:37 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-01-19 17:59:37 +0000
commit150a86a9cb006b4800d6517d58532b8a556fec1e (patch)
tree0cea769c7bef669c4dfe19e7805593f6f34033fb /media-video/mpeg2vidcodec
parent1cb0dd91756f77b25d6cc22318dc85187ed084cb (diff)
gentoo auto-resync : 19:01:2023 - 17:59:37
Diffstat (limited to 'media-video/mpeg2vidcodec')
-rw-r--r--media-video/mpeg2vidcodec/Manifest5
-rw-r--r--media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-Wimplicit-function-declaration.patch54
-rw-r--r--media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-fix-build-system.patch78
-rw-r--r--media-video/mpeg2vidcodec/metadata.xml7
-rw-r--r--media-video/mpeg2vidcodec/mpeg2vidcodec-12-r1.ebuild33
5 files changed, 0 insertions, 177 deletions
diff --git a/media-video/mpeg2vidcodec/Manifest b/media-video/mpeg2vidcodec/Manifest
deleted file mode 100644
index 1c0af845516a..000000000000
--- a/media-video/mpeg2vidcodec/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-AUX mpeg2vidcodec-12-Wimplicit-function-declaration.patch 1020 BLAKE2B b61c8c45a0a3fa499e6f7c153cced71c80a87d6ddeda0283d51c56932393eb994297f7f192fffa342d952547b6857c8ead2d8aa1a99202c4d3c19ef8adf5cc02 SHA512 2741e393adadc6b74408b53dd978b820ed80483eb8c91ce1b50f2e916bdcaef7c25fb8679e4c8fad5686f0da99c42881738f424e72b2a02a2d098f0d2f99b393
-AUX mpeg2vidcodec-12-fix-build-system.patch 2038 BLAKE2B cb5dedb4c2c4a60e85e23cebabe12d6c6ec95ba3ba5b198da99735e515ff78007aa40b67be87e23d3ab2558b40c390f944417dbcf72a3026550683bb8297bf61 SHA512 04d55902b48f68460e5272a5ddacf1f6b9f1dbe2f3fa4b9955e804a1ae36f533998f51eb1cdae7f9babbcd753d3436b71d37af324f2eac3bf02c9df6f64e99d7
-DIST mpeg2vidcodec_v12.tar.gz 259790 BLAKE2B 528a6bc7ffdf25ff97241752d26accf83860f3dcf6a7f8ce9394308c1cb1ece0cad9d79f8a6ce7b59823900e9ff991a1cc0ff9de8c11749736576d847d07545a SHA512 2a46f486102ac2a1ae99a0f75b196c5aa01f8a99a6230723a2000ca8411adbca6c3e07d70f7cb269b17ce5fa4bf318e6dd4bfa83ecf8e137e8efca2bb352735c
-EBUILD mpeg2vidcodec-12-r1.ebuild 735 BLAKE2B d4df59c93ec56fd68a4e25a0d39c0fb5e921e8147d376007e36291e2ff0fc34ba07c2fbc1b281ed7f6331916b3f774ca545c814b715aa36e6a1b6971ba1719c0 SHA512 4c14f23353d2915d953ea7033fd86886ff5ff82049bdccb349e5c79b2d10ab7042f62bdfd8c0146dc43bedb37cb7f900abf9336c6ef1772c83a94b0c0667e547
-MISC metadata.xml 222 BLAKE2B 96fcf0d83a18e2c1f4611d550e7e2123a06fe8b3b2890cb5757284d8fc7d3bebdf1aeb4f82affbc7c51268749cac9fdcbf43888e3bec0e68e1b6548a3f6eca76 SHA512 c3657a6bf2503e6585ee53453bf0ba26b5eed2e894342087358b5f4306a960db915de61036b6c8dc57cdb7a7f3326d57ff3badf7b3ecefaa99291289a73997de
diff --git a/media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-Wimplicit-function-declaration.patch b/media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-Wimplicit-function-declaration.patch
deleted file mode 100644
index 7f618a2e9f8d..000000000000
--- a/media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-Wimplicit-function-declaration.patch
+++ /dev/null
@@ -1,54 +0,0 @@
---- a/src/mpeg2dec/getbits.c
-+++ b/src/mpeg2dec/getbits.c
-@@ -34,6 +34,7 @@
-
- #include <stdio.h>
- #include <stdlib.h>
-+#include <unistd.h>
-
- #include "config.h"
- #include "global.h"
---- a/src/mpeg2dec/mpeg2dec.c
-+++ b/src/mpeg2dec/mpeg2dec.c
-@@ -32,6 +32,8 @@
- #include <stdlib.h>
- #include <ctype.h>
- #include <fcntl.h>
-+#include <sys/types.h>
-+#include <unistd.h>
-
- #define GLOBAL
- #include "config.h"
---- a/src/mpeg2dec/spatscal.c
-+++ b/src/mpeg2dec/spatscal.c
-@@ -1,5 +1,7 @@
-
- #include <stdio.h>
-+#include <stdlib.h>
-+#include <string.h>
- #include "config.h"
- #include "global.h"
-
---- a/src/mpeg2dec/store.c
-+++ b/src/mpeg2dec/store.c
-@@ -28,8 +28,10 @@
- */
-
- #include <stdio.h>
-+#include <string.h>
- #include <stdlib.h>
- #include <fcntl.h>
-+#include <unistd.h>
-
- #include "config.h"
- #include "global.h"
---- a/src/mpeg2dec/subspic.c
-+++ b/src/mpeg2dec/subspic.c
-@@ -31,6 +31,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <fcntl.h>
-+#include <unistd.h>
-
- #include "config.h"
- #include "global.h"
diff --git a/media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-fix-build-system.patch b/media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-fix-build-system.patch
deleted file mode 100644
index e278b3a26d76..000000000000
--- a/media-video/mpeg2vidcodec/files/mpeg2vidcodec-12-fix-build-system.patch
+++ /dev/null
@@ -1,78 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -53,26 +53,23 @@
- #
- # GNU gcc
- #
--CC = gcc
--CFLAGS = -O2
-+CFLAGS += -Wall
-
- all: mpeg2decode mpeg2encode
-
- mpeg2decode:
-- cd src/mpeg2dec; make 'CC=$(CC)' \
-- 'CFLAGS=$(CFLAGS) $(USE_DISP) $(USE_SHMEM) $(INCLUDEDIR)' \
-- 'LIBS=$(LIBS)' 'LIBRARYDIR=$(LIBRARYDIR)'
-+ cd src/mpeg2dec && $(MAKE)
-
- mpeg2encode:
-- cd src/mpeg2enc; make 'CC=$(CC)' 'CFLAGS=$(CFLAGS)'
-+ cd src/mpeg2enc && $(MAKE)
-
- pc:
-- cd src/mpeg2dec; make pc 'CC=$(CC)' 'CFLAGS=$(CFLAGS)'
-- cd src/mpeg2enc; make pc 'CC=$(CC)' 'CFLAGS=$(CFLAGS)'
-+ cd src/mpeg2dec && $(MAKE) pc
-+ cd src/mpeg2enc && $(MAKE) pc
-
- clean:
-- cd src/mpeg2dec; make clean
-- cd src/mpeg2enc; make clean
-+ cd src/mpeg2dec && $(MAKE) clean
-+ cd src/mpeg2enc && $(MAKE) clean
-
- test:
- cd verify; ./verify
---- a/src/mpeg2dec/Makefile
-+++ b/src/mpeg2dec/Makefile
-@@ -60,8 +60,7 @@
- #
- # GNU gcc
- #
--CC = gcc
--CFLAGS = -O2 $(USE_DISP) $(USE_SHMEM) $(INCLUDEDIR) $(TRACE) $(VERBOSE) $(VERIFY) $(WARNINGS)
-+CFLAGS += -Wall
-
- OBJ = mpeg2dec.o getpic.o motion.o getvlc.o gethdr.o getblk.o getbits.o store.o recon.o spatscal.o idct.o idctref.o display.o systems.o subspic.o verify.o
-
-@@ -76,7 +75,7 @@
- coff2exe mpeg2dec
-
- mpeg2decode: $(OBJ)
-- $(CC) $(CFLAGS) $(LIBRARYDIR) -o mpeg2decode $(OBJ) -lm $(LIBS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) $(LIBRARYDIR) -o mpeg2decode $(OBJ) -lm $(LIBS)
-
- display.o : display.c config.h global.h mpeg2dec.h
- getbits.o : getbits.c config.h global.h mpeg2dec.h
---- a/src/mpeg2enc/Makefile
-+++ b/src/mpeg2enc/Makefile
-@@ -32,8 +32,7 @@
- #
- # GNU gcc
- #
--CC = gcc
--CFLAGS = -O2 -Wall
-+CFLAGS += -Wall
-
- OBJ = mpeg2enc.o conform.o putseq.o putpic.o puthdr.o putmpg.o putvlc.o putbits.o motion.o predict.o readpic.o writepic.o transfrm.o fdctref.o idct.o quantize.o ratectl.o stats.o
-
-@@ -48,7 +47,7 @@
- coff2exe mpeg2enc
-
- mpeg2encode: $(OBJ)
-- $(CC) $(CFLAGS) -o mpeg2encode $(OBJ) -lm
-+ $(CC) $(CFLAGS) $(LDFLAGS) -o mpeg2encode $(OBJ) -lm
-
- conform.o : conform.c config.h global.h mpeg2enc.h
- fdctref.o : fdctref.c config.h
diff --git a/media-video/mpeg2vidcodec/metadata.xml b/media-video/mpeg2vidcodec/metadata.xml
deleted file mode 100644
index 2542060f7f5c..000000000000
--- a/media-video/mpeg2vidcodec/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>media-video@gentoo.org</email>
-</maintainer>
-</pkgmetadata>
diff --git a/media-video/mpeg2vidcodec/mpeg2vidcodec-12-r1.ebuild b/media-video/mpeg2vidcodec/mpeg2vidcodec-12-r1.ebuild
deleted file mode 100644
index 0aaba40bef35..000000000000
--- a/media-video/mpeg2vidcodec/mpeg2vidcodec-12-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_P="${PN}_v${PV}"
-
-DESCRIPTION="MPEG Library"
-HOMEPAGE="http://www.mpeg.org/"
-SRC_URI="http://www.mpeg.org/pub_ftp/mpeg/mssg/${MY_P}.tar.gz"
-
-LICENSE="mpeg2enc"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
-RESTRICT="mirror bindist" #465088
-
-S="${WORKDIR}/mpeg2"
-
-PATCHES=(
- "${FILESDIR}"/${P}-fix-build-system.patch
- "${FILESDIR}"/${P}-Wimplicit-function-declaration.patch
-)
-
-src_configure() {
- tc-export CC
-}
-
-src_install() {
- dobin src/mpeg2dec/mpeg2decode src/mpeg2enc/mpeg2encode
- dodoc -r README doc/.
-}