forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-apps/audiocd-kio: 20.12.0 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST audiocd-kio-20.08.3.tar.xz 498660 BLAKE2B 60fc9d06505b7ad03d8cb8eec78d4f3893ca54859d1a18f6ea3ac28060ba74780af64baf3ba6499b16d3fc6388837b111eb6a3cc602c5adf55de0b96eb0a71a4 SHA512 77d03d9aed910329a70dcb6c1825de34caeb5d9d215959c772d98e972e92fafb94a5245df0b14c65f1e5d08f5cf565b9bba00e9637320eca156837890b6dd87b | ||
DIST audiocd-kio-20.12.0.tar.xz 500504 BLAKE2B d642baee02a6c07e805315bd9c51160d6ae6828bdd920d779202879ae6e0d3fbe0802e85c4ce7e315158f415f3b3d8227a8e8ef3827eb114ea91236a4ab5d6ee SHA512 d352f28fb71d2bc8e006b17169ec0426d1523fbd2e61973bb8eccea1d50cbf59bdfa6d0d13ad76c955dd420d40182b021908b7ff322e6978d0c55e4f3987ca95 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
ECM_HANDBOOK="forceoptional" | ||
PVCUT=$(ver_cut 1-3) | ||
KFMIN=5.75.0 | ||
QTMIN=5.15.1 | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="kioslave for accessing audio CDs" | ||
|
||
LICENSE="GPL-2+ handbook? ( FDL-1.2 )" | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" | ||
IUSE="flac vorbis" | ||
|
||
DEPEND=" | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
>=kde-apps/libkcddb-${PVCUT}:5 | ||
>=kde-apps/libkcompactdisc-${PVCUT}:5 | ||
>=kde-frameworks/kcompletion-${KFMIN}:5 | ||
>=kde-frameworks/kconfig-${KFMIN}:5 | ||
>=kde-frameworks/kconfigwidgets-${KFMIN}:5 | ||
>=kde-frameworks/kcoreaddons-${KFMIN}:5 | ||
>=kde-frameworks/kcmutils-${KFMIN}:5 | ||
>=kde-frameworks/ki18n-${KFMIN}:5 | ||
>=kde-frameworks/kio-${KFMIN}:5 | ||
media-sound/cdparanoia | ||
flac? ( >=media-libs/flac-1.1.2 ) | ||
vorbis? ( | ||
media-libs/libogg | ||
media-libs/libvorbis | ||
) | ||
" | ||
RDEPEND="${DEPEND}" | ||
|
||
PATCHES=( "${FILESDIR}/${PN}-19.04.0-handbook.patch" ) | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package flac FLAC) | ||
$(cmake_use_find_package vorbis OggVorbis) | ||
) | ||
|
||
ecm_src_configure | ||
} |