diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-07-19 07:05:46 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-07-19 07:05:46 +0100 |
commit | 765ae0a407f5086e09617087218d3228afec3ce4 (patch) | |
tree | 5f069d872cda13476a7af641044f89ef5c10b4dd /media-tv/sopcast/sopcast-3.2.6-r3.ebuild | |
parent | 3d22ea40d7cb002eb6869039c41059f678d518b9 (diff) |
media-tv/sopcast : EAPI bump
Diffstat (limited to 'media-tv/sopcast/sopcast-3.2.6-r3.ebuild')
-rw-r--r-- | media-tv/sopcast/sopcast-3.2.6-r3.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/media-tv/sopcast/sopcast-3.2.6-r3.ebuild b/media-tv/sopcast/sopcast-3.2.6-r3.ebuild new file mode 100644 index 00000000..04a84a00 --- /dev/null +++ b/media-tv/sopcast/sopcast-3.2.6-r3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=8 + +inherit eutils + +MY_PN="sp-auth" + +DESCRIPTION="SopCast free P2P Internet TV binary" +LICENSE="SopCast-unknown-license" +HOMEPAGE="http://www.sopcast.com/" +SRC_URI="http://download.sopcast.com/download/${MY_PN}.tgz" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="strip" + +# All dependencies might not be listed, since the binary blob's homepage only lists libstdc++ +RDEPEND="amd64? ( sys-libs/libstdc++-v3[multilib] ) + x86? ( >=virtual/libstdc++-3.3 )" + +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_PN} + +src_install() { + exeinto usr/bin/ + doexe sp-sc-auth || die "doexe failed" + dodoc Readme || die "dodoc failed" +} |