diff options
author | Paul Healy <lmiphay@gmail.com> | 2017-04-23 20:12:10 +0100 |
---|---|---|
committer | Paul Healy <lmiphay@gmail.com> | 2017-04-23 20:12:10 +0100 |
commit | 9b667eb9ee455133e13af1b1a0507bc1cd9f7a6a (patch) | |
tree | d066f02908c90489c15a1e53b3c731d56adf8b42 /media-sound/logitechmediaserver-bin | |
parent | add ebuild for lms 7.9.0 (diff) | |
download | lmiphay-9b667eb9ee455133e13af1b1a0507bc1cd9f7a6a.tar.gz lmiphay-9b667eb9ee455133e13af1b1a0507bc1cd9f7a6a.tar.bz2 lmiphay-9b667eb9ee455133e13af1b1a0507bc1cd9f7a6a.zip |
rework inherit dance
Diffstat (limited to 'media-sound/logitechmediaserver-bin')
-rw-r--r-- | media-sound/logitechmediaserver-bin/logitechmediaserver-bin-7.9.0.ebuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/media-sound/logitechmediaserver-bin/logitechmediaserver-bin-7.9.0.ebuild b/media-sound/logitechmediaserver-bin/logitechmediaserver-bin-7.9.0.ebuild index 7c21ad4..36aba3d 100644 --- a/media-sound/logitechmediaserver-bin/logitechmediaserver-bin-7.9.0.ebuild +++ b/media-sound/logitechmediaserver-bin/logitechmediaserver-bin-7.9.0.ebuild @@ -3,28 +3,26 @@ EAPI="6" +inherit eutils user systemd + MY_PN="${PN/-bin}" if [[ ${PV} == *_pre* ]] ; then GIT_COMMIT="a321b3b3bb6183eca27e4a509522cbbffbaa3087" SRC_URI="https://github.com/Logitech/slimserver/archive/${GIT_COMMIT}.zip" S="${WORKDIR}/slimserver-${GIT_COMMIT}" - INHERIT_VCS="" KEYWORDS="~amd64 ~x86" elif [[ ${PV} == "9999" ]] ; then EGIT_BRANCH="public/7.9" EGIT_REPO_URI="https://github.com/Logitech/slimserver.git" S="${WORKDIR}/slimserver" - INHERIT_VCS="git-3" + inherit git-3 else SRC_URI="http://downloads.slimdevices.com/LogitechMediaServer_v${PV}/${MY_PN}-${PV}.tgz" S="${WORKDIR}/${MY_PN}-${PV}" - INHERIT_VCS="" KEYWORDS="~amd64" fi -inherit ${INHERIT_VCS} eutils user systemd - DESCRIPTION="Logitech Media Server (streaming audio server)" HOMEPAGE="http://github.com/Logitech/slimserver" LICENSE="${PN}" |