diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /media-libs/zimg | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'media-libs/zimg')
| -rw-r--r-- | media-libs/zimg/Manifest | 2 | ||||
| -rw-r--r-- | media-libs/zimg/files/zimg-2.9.2-gcc-10.patch | 18 | ||||
| -rw-r--r-- | media-libs/zimg/metadata.xml | 11 | ||||
| -rw-r--r-- | media-libs/zimg/zimg-2.8.ebuild | 32 | ||||
| -rw-r--r-- | media-libs/zimg/zimg-2.9.2.ebuild | 35 | ||||
| -rw-r--r-- | media-libs/zimg/zimg-9999.ebuild | 33 |
6 files changed, 131 insertions, 0 deletions
diff --git a/media-libs/zimg/Manifest b/media-libs/zimg/Manifest new file mode 100644 index 000000000000..33a55d77fd70 --- /dev/null +++ b/media-libs/zimg/Manifest @@ -0,0 +1,2 @@ +DIST zimg-2.8.tar.gz 265363 BLAKE2B a8982c64325e0089617136fcd5d6ee429ab861e3b9445b9cc0292bd3bbd3abb5783e94983e3e802fd9e59c2c7089eeea176d1eda4f3a850379cfc4fb36cbc408 SHA512 1e89087a756798a7ae3bfae3bc8244b29ae8ae7f04f53bdf6c4d4de3cb11412dc1eecd95a4a121bb9077437e633f8fbb665522ff8112ade806d9191ea4b5f7bf +DIST zimg-2.9.2.tar.gz 266049 BLAKE2B 214a6afec061dc7cc7c751f2a57e56951e44b78fea6a0c0dc71235d3dd286fb811303b0a5198ab82165ee78d993caabaf39d7ec17db4c4e5ffca9a3475b49781 SHA512 b688f8e93a2e4549f2c844cd58c6e0714e6494d6fc8c800dc1b0cdf2278fb9925a646fc332350c1b5d77cef2134bf35e18a873c24ea1979c1adce57bfef68ebe diff --git a/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch b/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch new file mode 100644 index 000000000000..ea192f77fcad --- /dev/null +++ b/media-libs/zimg/files/zimg-2.9.2-gcc-10.patch @@ -0,0 +1,18 @@ +https://bugs.gentoo.org/721676 + +From 9ae36d7d5f7420eaacd9644451933512fa13d716 Mon Sep 17 00:00:00 2001 +From: sekrit-twc <sekrit-twc@users.noreply.github.com> +Date: Wed, 4 Dec 2019 12:01:26 -0800 +Subject: [PATCH] Update matrix3.cpp + +--- + src/zimg/colorspace/matrix3.cpp | 1 + + 1 file changed, 1 insertion(+) + +--- a/src/zimg/colorspace/matrix3.cpp ++++ b/src/zimg/colorspace/matrix3.cpp +@@ -1,3 +1,4 @@ ++#include <cstddef> + #include "matrix3.h" + + namespace zimg { diff --git a/media-libs/zimg/metadata.xml b/media-libs/zimg/metadata.xml new file mode 100644 index 000000000000..5210e1805148 --- /dev/null +++ b/media-libs/zimg/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>media-video@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="github">sekrit-twc/zimg</remote-id> + </upstream> + <origin>gentoo-staging</origin> +</pkgmetadata> diff --git a/media-libs/zimg/zimg-2.8.ebuild b/media-libs/zimg/zimg-2.8.ebuild new file mode 100644 index 000000000000..f03e6895713f --- /dev/null +++ b/media-libs/zimg/zimg-2.8.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} = *9999* ]] ; then + EGIT_REPO_URI="https://github.com/sekrit-twc/zimg" + inherit git-r3 +else + SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86" + S="${WORKDIR}/${PN}-release-${PV}/" +fi +inherit autotools multilib-minimal + +DESCRIPTION="Scaling, colorspace conversion, and dithering library" +HOMEPAGE="https://github.com/sekrit-twc/zimg" + +LICENSE="WTFPL-2" +SLOT="0" +IUSE="cpu_flags_x86_sse" + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + --disable-static \ + $(use_enable cpu_flags_x86_sse x86simd) +} diff --git a/media-libs/zimg/zimg-2.9.2.ebuild b/media-libs/zimg/zimg-2.9.2.ebuild new file mode 100644 index 000000000000..e962d7a4b5f7 --- /dev/null +++ b/media-libs/zimg/zimg-2.9.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} = *9999* ]] ; then + EGIT_REPO_URI="https://github.com/sekrit-twc/zimg" + inherit git-r3 +else + SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86" + S="${WORKDIR}/${PN}-release-${PV}/" +fi +inherit autotools multilib-minimal + +DESCRIPTION="Scaling, colorspace conversion, and dithering library" +HOMEPAGE="https://github.com/sekrit-twc/zimg" + +LICENSE="WTFPL-2" +SLOT="0" +IUSE="cpu_flags_x86_sse debug static-libs" + +PATCHES=("${FILESDIR}"/${PN}-2.9.2-gcc-10.patch) + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable debug) \ + $(use_enable cpu_flags_x86_sse x86simd) \ + $(use_enable static-libs static) +} diff --git a/media-libs/zimg/zimg-9999.ebuild b/media-libs/zimg/zimg-9999.ebuild new file mode 100644 index 000000000000..4e92e0eec814 --- /dev/null +++ b/media-libs/zimg/zimg-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} = *9999* ]] ; then + EGIT_REPO_URI="https://github.com/sekrit-twc/zimg" + inherit git-r3 +else + SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + S="${WORKDIR}/${PN}-release-${PV}/" +fi +inherit autotools multilib-minimal + +DESCRIPTION="Scaling, colorspace conversion, and dithering library" +HOMEPAGE="https://github.com/sekrit-twc/zimg" + +LICENSE="WTFPL-2" +SLOT="0" +IUSE="cpu_flags_x86_sse debug static-libs" + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ + $(use_enable debug) \ + $(use_enable cpu_flags_x86_sse x86simd) \ + $(use_enable static-libs static) +} |
