mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
media-sound/lms: drop 3.50.1, 3.51.1
Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
parent
e7df2e8b28
commit
c263a3ca6d
@ -1,3 +1,2 @@
|
|||||||
DIST lms-3.50.1.tar.gz 419715 BLAKE2B 80a8c08268d48e4fe8b64f66063cbe925b71288d0604c1395b54fdd35cfe7e815f9f67861cd52ba1934debc04291d96fe85c16ef99108fb9491015cea7562396 SHA512 8787d9a26bddb93d55e42f9b5f5c0295d8c67404e7648c3be620e03ae1e1ed243d87ff978a7c687dd349db4309e858807956bfa804207809c3b2fe3eed87977b
|
|
||||||
DIST lms-3.51.1.tar.gz 427958 BLAKE2B 88e7afc4fa3c28761d0ce6fa9c5d98ab9c9525f2138ef0523e9bae45511c74c9417b8717de56b054f5ec15c444fcbc00336795f3bdcbbb906ddde97bc54ad6cd SHA512 f53907e0bbf9f6a26d9231e7eca01fd92f981e1271879bcbb960829b1416d1d73e980f50b4a5a12d1b0e48b7b9d1680b53fedce8e015eee33edc3c890625c34b
|
DIST lms-3.51.1.tar.gz 427958 BLAKE2B 88e7afc4fa3c28761d0ce6fa9c5d98ab9c9525f2138ef0523e9bae45511c74c9417b8717de56b054f5ec15c444fcbc00336795f3bdcbbb906ddde97bc54ad6cd SHA512 f53907e0bbf9f6a26d9231e7eca01fd92f981e1271879bcbb960829b1416d1d73e980f50b4a5a12d1b0e48b7b9d1680b53fedce8e015eee33edc3c890625c34b
|
||||||
DIST lms-3.52.0.tar.gz 422542 BLAKE2B 6da2ce9f3ad1be103acaf694498a422be41690a2f0976081d1bde41b4a5860f4e33b604be3879d2d0cd3c24d9a41da185a990255035af322cc8c0bd2f87071f3 SHA512 f9ad2a6011960c7db74e2a9df2e1a48d7f14886165fea5b37d20b467c69effda5ad8c61d59c6d74b7a08b5862efb1c73ddb3be7743e905350e78127f7681da38
|
DIST lms-3.52.0.tar.gz 422542 BLAKE2B 6da2ce9f3ad1be103acaf694498a422be41690a2f0976081d1bde41b4a5860f4e33b604be3879d2d0cd3c24d9a41da185a990255035af322cc8c0bd2f87071f3 SHA512 f9ad2a6011960c7db74e2a9df2e1a48d7f14886165fea5b37d20b467c69effda5ad8c61d59c6d74b7a08b5862efb1c73ddb3be7743e905350e78127f7681da38
|
||||||
|
@ -1,74 +0,0 @@
|
|||||||
# Copyright 2024 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
inherit cmake flag-o-matic pam systemd
|
|
||||||
|
|
||||||
DESCRIPTION="Lightweight Music Server."
|
|
||||||
HOMEPAGE="http://lms-demo.poupon.dev/ https://github.com/epoupon/lms"
|
|
||||||
SRC_URI="https://github.com/epoupon/lms/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-3"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64"
|
|
||||||
IUSE="test stb"
|
|
||||||
RESTRICT="!test? ( test )"
|
|
||||||
|
|
||||||
RDEPEND="
|
|
||||||
acct-user/lms
|
|
||||||
dev-cpp/wt
|
|
||||||
dev-libs/boost
|
|
||||||
dev-libs/libconfig[cxx]
|
|
||||||
media-libs/taglib
|
|
||||||
media-video/ffmpeg
|
|
||||||
|
|
||||||
!stb? ( media-gfx/graphicsmagick )
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
DEPEND="
|
|
||||||
${RDEPEND}
|
|
||||||
|
|
||||||
stb? ( dev-libs/stb )
|
|
||||||
"
|
|
||||||
|
|
||||||
BDEPEND="
|
|
||||||
test? ( dev-cpp/gtest )
|
|
||||||
"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}/${PN}-fix-lib-dir.patch"
|
|
||||||
"${FILESDIR}/${PN}-optional-tests.patch"
|
|
||||||
"${FILESDIR}/${PN}-respect-ldflags.patch"
|
|
||||||
)
|
|
||||||
|
|
||||||
src_configure() {
|
|
||||||
append-flags -I/usr/include/stb/deprecated
|
|
||||||
|
|
||||||
local mycmakeargs=(
|
|
||||||
-DIMAGE_LIBRARY=$(usex stb STB GraphicsMagick++)
|
|
||||||
-DENABLE_TESTS=$(usex test)
|
|
||||||
)
|
|
||||||
|
|
||||||
cmake_src_configure
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
cmake_src_install
|
|
||||||
|
|
||||||
systemd_newunit conf/systemd/default.service lms.service
|
|
||||||
newinitd "${FILESDIR}/lms.init" lms
|
|
||||||
dopamd conf/pam/lms
|
|
||||||
mv "${ED}/usr/share/lms/lms.conf" "${ED}/etc/lms.conf" || die
|
|
||||||
|
|
||||||
# Already installed in the proper directory
|
|
||||||
rm "${ED}/usr/share/lms/default.service" || die
|
|
||||||
rm "${ED}/usr/share/lms/lms" || die
|
|
||||||
|
|
||||||
keepdir /var/log/lms
|
|
||||||
fowners -R lms:lms /var/log/lms
|
|
||||||
|
|
||||||
keepdir /var/lms
|
|
||||||
fowners lms:lms /var/lms
|
|
||||||
}
|
|
@ -1,72 +0,0 @@
|
|||||||
# Copyright 2024 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
inherit cmake flag-o-matic pam systemd
|
|
||||||
|
|
||||||
DESCRIPTION="Lightweight Music Server."
|
|
||||||
HOMEPAGE="http://lms-demo.poupon.dev/ https://github.com/epoupon/lms"
|
|
||||||
SRC_URI="https://github.com/epoupon/lms/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-3"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64"
|
|
||||||
IUSE="test stb"
|
|
||||||
RESTRICT="!test? ( test )"
|
|
||||||
|
|
||||||
RDEPEND="
|
|
||||||
acct-user/lms
|
|
||||||
dev-cpp/wt
|
|
||||||
dev-libs/boost
|
|
||||||
dev-libs/libconfig[cxx]
|
|
||||||
media-libs/taglib
|
|
||||||
media-video/ffmpeg
|
|
||||||
|
|
||||||
!stb? ( media-gfx/graphicsmagick )
|
|
||||||
|
|
||||||
"
|
|
||||||
|
|
||||||
DEPEND="
|
|
||||||
${RDEPEND}
|
|
||||||
|
|
||||||
stb? ( dev-libs/stb )
|
|
||||||
"
|
|
||||||
|
|
||||||
BDEPEND="
|
|
||||||
test? ( dev-cpp/gtest )
|
|
||||||
"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}/${PN}-respect-ldflags.patch"
|
|
||||||
)
|
|
||||||
|
|
||||||
src_configure() {
|
|
||||||
append-flags -I/usr/include/stb/deprecated
|
|
||||||
|
|
||||||
local mycmakeargs=(
|
|
||||||
-DIMAGE_LIBRARY=$(usex stb STB GraphicsMagick++)
|
|
||||||
-DENABLE_TESTS=$(usex test)
|
|
||||||
)
|
|
||||||
|
|
||||||
cmake_src_configure
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
cmake_src_install
|
|
||||||
|
|
||||||
systemd_newunit conf/systemd/default.service lms.service
|
|
||||||
newinitd "${FILESDIR}/lms.init" lms
|
|
||||||
dopamd conf/pam/lms
|
|
||||||
mv "${ED}/usr/share/lms/lms.conf" "${ED}/etc/lms.conf" || die
|
|
||||||
|
|
||||||
# Already installed in the proper directory
|
|
||||||
rm "${ED}/usr/share/lms/default.service" || die
|
|
||||||
rm "${ED}/usr/share/lms/lms" || die
|
|
||||||
|
|
||||||
keepdir /var/log/lms
|
|
||||||
fowners -R lms:lms /var/log/lms
|
|
||||||
|
|
||||||
keepdir /var/lms
|
|
||||||
fowners lms:lms /var/lms
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user