1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 09:32:37 +01:00

media-libs/libdvbcsa: removal

This commit is contained in:
2018-03-31 17:30:05 +02:00
parent d17d06bd95
commit 46bd494814
2 changed files with 0 additions and 53 deletions

View File

@@ -1,2 +0,0 @@
DIST libdvbcsa-1.1.0.tar.gz 345487 SHA256 4db78af5cdb2641dfb1136fe3531960a477c9e3e3b6ba19a2754d046af3f456d SHA512 f336bc90711261bb86bb42f897d5207a71da5a384bfb7d641de7e1fb3a43d20aeec250e9a5ceaf0b20f1e4335ccda70055675256c6889873bf1bfff55005a015 WHIRLPOOL d7b46b46558897d307898e088718aa0a43421025ce6ef67ebeb40cc0cb5ffc8b857e4c967d87ab6caf9079330ce65dd5473863d3942bc1572bd9ec1ea40d4b3c
EBUILD libdvbcsa-1.1.0.ebuild 1138 SHA256 3c249ad440d26e860ff2d74592e4a3c519d0a985c05e6c001c017102f348b1ff SHA512 d7f82e0ef5ead661b13353a64f144523a4111e238386f663af76185d23fcabd7be57f4960f5c73c131841ceb68a92bc08f851b420894e7eb84c40ddf7124f903 WHIRLPOOL 946add4125d55af223cbbb2288bda37ea00d9f0f152000e98ba8c1d96c0965f280181366c1082c905b09c9e897ab937cff972935e454860a228ff0dc8cadc32d

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
EAPI="5"
inherit eutils
DESCRIPTION="Free implementation of the DVB Common Scrambling Algorithm - DVB/CSA"
HOMEPAGE="http://www.videolan.org/developers/libdvbcsa.html"
if [ ${PV} == "9999" ]; then
inherit autotools subversion
ESVN_REPO_URI="svn://svn.videolan.org/libdvbcsa/trunk"
KEYWORDS=""
else
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
SRC_URI="http://download.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.gz"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="altivec debug mmx sse2 +static-libs uint32 uint64"
REQUIRED_USE="^^ ( altivec mmx sse2 uint32 uint64 )"
RDEPEND=""
DEPEND="virtual/libc
sys-devel/gcc"
DOCS=( AUTHORS ChangeLog INSTALL NEWS README )
src_prepare() {
epatch_user
if [ ${PV} == "9999" ]; then
eautoreconf || die
fi
}
src_configure() {
econf \
$(use_enable altivec) \
$(use_enable debug) \
$(use_enable mmx) \
$(use_enable sse2) \
$(use_enable static-libs static) \
$(use_enable uint32) \
$(use_enable uint64) \
--enable-shared
}