summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Eden <sven.eden@prydeworx.com>2021-08-20 09:52:33 +0200
committerSven Eden <sven.eden@prydeworx.com>2021-08-20 09:52:33 +0200
commitba8f3a2fb8926bcd932c777316eabcb4a47619c8 (patch)
tree27f9093e5ad1634431aa583d78909591252487d8 /media-video
parentnet-mail/davmail-bin: Bump to version 6.0.0 (diff)
downloadseden-ba8f3a2fb8926bcd932c777316eabcb4a47619c8.tar.gz
seden-ba8f3a2fb8926bcd932c777316eabcb4a47619c8.tar.bz2
seden-ba8f3a2fb8926bcd932c777316eabcb4a47619c8.zip
media-libs/mlt and media-video/shotcut removed, they are both inm the tree now! :-)
Signed-off-by: Sven Eden <sven.eden@prydeworx.com>
Diffstat (limited to 'media-video')
-rw-r--r--media-video/shotcut/Manifest1
-rw-r--r--media-video/shotcut/metadata.xml15
-rw-r--r--media-video/shotcut/shotcut-21.06.29.ebuild66
3 files changed, 0 insertions, 82 deletions
diff --git a/media-video/shotcut/Manifest b/media-video/shotcut/Manifest
deleted file mode 100644
index abb82c4..0000000
--- a/media-video/shotcut/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST shotcut-21.06.29.tar.gz 4234142 SHA256 115876b68749c8fb119b664668f9d17e9af2f4a42c49ec588b35eca00a2002e4 SHA512 b6256b2d6b6f5040321a227e60c447455b9026fc5315ddc0d16fcf76930162552fd883029536de201cb2b58e2544dd58203a4dbc9e27144c4ef399fb53fdb996 WHIRLPOOL c00ad97847194460df348a843fae16b0453f338d0893493777cd5cf021595ca0127286f7ab8e8d0e9e6b056197de984eb45d14694d4996e3c60752b80eca6106
diff --git a/media-video/shotcut/metadata.xml b/media-video/shotcut/metadata.xml
deleted file mode 100644
index 83c7ace..0000000
--- a/media-video/shotcut/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>xdch47@posteo.de</email>
- <name>Felix Neumärker</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <upstream>
- <remote-id type="github">mltframework/shotcut</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-video/shotcut/shotcut-21.06.29.ebuild b/media-video/shotcut/shotcut-21.06.29.ebuild
deleted file mode 100644
index 8bca6e6..0000000
--- a/media-video/shotcut/shotcut-21.06.29.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils xdg
-
-DESCRIPTION="A free, open source, cross-platform video editor"
-HOMEPAGE="https://www.shotcut.org/ https://github.com/mltframework/shotcut/"
-if [[ ${PV} != 9999* ]] ; then
- SRC_URI="https://github.com/mltframework/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-else
- inherit git-r3
- EGIT_REPO_URI="https://github.com/mltframework/shotcut/"
-fi
-
-IUSE="debug"
-
-LICENSE="GPL-3+"
-SLOT="0"
-
-BDEPEND="
- dev-qt/linguist-tools:5
-"
-COMMON_DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtdeclarative:5[widgets]
- dev-qt/qtgui:5
- dev-qt/qtmultimedia:5
- dev-qt/qtnetwork:5
- dev-qt/qtopengl:5
- dev-qt/qtprintsupport:5
- dev-qt/qtquickcontrols2:5
- dev-qt/qtsql:5
- dev-qt/qtwebsockets:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- >=media-libs/mlt-7.0.1[ffmpeg,frei0r,fftw,jack,melt(+),opengl,qt5,sdl,xml]
- media-video/ffmpeg
-"
-DEPEND="${COMMON_DEPEND}
- dev-qt/qtconcurrent:5
- dev-qt/qtx11extras:5
-"
-RDEPEND="${COMMON_DEPEND}
- dev-qt/qtgraphicaleffects:5
- dev-qt/qtquickcontrols:5
- virtual/jack
-"
-
-src_configure() {
- local myqmakeargs=(
- PREFIX="${EPREFIX}/usr"
- SHOTCUT_VERSION="${PV}"
- DEFINES+=SHOTCUT_NOUPGRADE
- )
- use debug || myqmakeargs+=(DEFINES+=NDEBUG)
-
- eqmake5 "${myqmakeargs[@]}"
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
- einstalldocs
-}