diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-03-12 18:54:51 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2025-03-12 18:54:51 +0000 |
| commit | 3f2a29a383c5af70156ff2431e837cae35435362 (patch) | |
| tree | 82b322eebd41ad4127594a76b250d7eb397e0457 /media-libs/ffmpegsource | |
| parent | 39a45434e4c1f3e22d2f2d2d8d25314eeb141294 (diff) | |
| download | baldeagleos-repo-3f2a29a383c5af70156ff2431e837cae35435362.tar.gz baldeagleos-repo-3f2a29a383c5af70156ff2431e837cae35435362.tar.xz baldeagleos-repo-3f2a29a383c5af70156ff2431e837cae35435362.zip | |
Adding metadata
Diffstat (limited to 'media-libs/ffmpegsource')
| -rw-r--r-- | media-libs/ffmpegsource/ffmpegsource-2.40-r3.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/media-libs/ffmpegsource/ffmpegsource-2.40-r3.ebuild b/media-libs/ffmpegsource/ffmpegsource-2.40-r3.ebuild new file mode 100644 index 000000000000..f598e211ecd3 --- /dev/null +++ b/media-libs/ffmpegsource/ffmpegsource-2.40-r3.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QA_PKGCONFIG_VERSION=$(ver_cut 1-2) +inherit autotools ffmpeg-compat + +DESCRIPTION="A libav/ffmpeg based source library for easy frame accurate access" +HOMEPAGE="https://github.com/FFMS/ffms2" +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="https://github.com/FFMS/ffms2.git" + inherit git-r3 +else + SRC_URI="https://github.com/FFMS/ffms2/archive/${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}"/ffms2-${PV} + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0/4" + +RDEPEND=" + media-video/ffmpeg-compat:6= + sys-libs/zlib +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES="${FILESDIR}/${P}-Fix-build-with-ffmpeg-5.patch" + +src_prepare() { + default + + # Cheesy hack from autogen.sh + mkdir src/config || die + eautoreconf +} + +src_configure() { + # TODO: try using ffmpeg-7 w/o compat in >=ffmpegsource-5 (bug #948162) + ffmpeg_compat_setup 6 + + default + + sed -i -e "s|@FFMS_VERSION@|${PV}|g" \ + "${S}"/ffms2.pc.in || die +} + +src_install() { + default + + find "${ED}" -name '*.la' -delete || die +} |
