Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdvbcsa/
Date: Sun, 03 Dec 2017 22:14:36
Message-Id: 1512339230.445189d9c1db0f014dade3c13c1ef1fac9c480ab.chewi@gentoo
1 commit: 445189d9c1db0f014dade3c13c1ef1fac9c480ab
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 30 14:10:57 2017 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 3 22:13:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=445189d9
7
8 media-libs/libdvbcsa: New, imported from vdr-devel overlay
9
10 Needed by tvheadend. Setting myself as maintainer as hd_brummy seems
11 to be MIA. Feel free to take it!
12
13 Package-Manager: Portage-2.3.16, Repoman-2.3.6
14
15 media-libs/libdvbcsa/Manifest | 1 +
16 media-libs/libdvbcsa/libdvbcsa-1.1.0.ebuild | 30 +++++++++++++++++++++++++++++
17 media-libs/libdvbcsa/metadata.xml | 8 ++++++++
18 3 files changed, 39 insertions(+)
19
20 diff --git a/media-libs/libdvbcsa/Manifest b/media-libs/libdvbcsa/Manifest
21 new file mode 100644
22 index 00000000000..d168cfc5c28
23 --- /dev/null
24 +++ b/media-libs/libdvbcsa/Manifest
25 @@ -0,0 +1 @@
26 +DIST libdvbcsa-1.1.0.tar.gz 345487 BLAKE2B ff5d9347f4255ca2c4e62477771715a7d8fcfca6eeb3a2e6cfdfcd903c9927a35d9049d18ec5a9d458328d6a3712d6cf81633e7ddc7c67d1a8099b8d56b2fd68 SHA512 f336bc90711261bb86bb42f897d5207a71da5a384bfb7d641de7e1fb3a43d20aeec250e9a5ceaf0b20f1e4335ccda70055675256c6889873bf1bfff55005a015
27
28 diff --git a/media-libs/libdvbcsa/libdvbcsa-1.1.0.ebuild b/media-libs/libdvbcsa/libdvbcsa-1.1.0.ebuild
29 new file mode 100644
30 index 00000000000..8c96eb334aa
31 --- /dev/null
32 +++ b/media-libs/libdvbcsa/libdvbcsa-1.1.0.ebuild
33 @@ -0,0 +1,30 @@
34 +# Copyright 1999-2017 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +DESCRIPTION="Free implementation of the DVB Common Scrambling Algorithm - DVB/CSA"
40 +HOMEPAGE="https://www.videolan.org/developers/libdvbcsa.html"
41 +SRC_URI="https://download.videolan.org/pub/videolan/${PN}/${PV}/${P}.tar.gz"
42 +
43 +KEYWORDS="~amd64 ~arm ~x86"
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +IUSE="debug cpu_flags_x86_mmx cpu_flags_x86_sse2 static-libs"
47 +
48 +src_configure() {
49 + econf \
50 + $(use_enable ppc altivec) \
51 + $(use_enable debug) \
52 + $(use_enable cpu_flags_x86_mmx mmx) \
53 + $(use_enable cpu_flags_x86_sse2 sse2) \
54 + $(use_enable static-libs static) \
55 + $(use_enable x86 uint32) \
56 + $(use_enable amd64 uint64) \
57 + --enable-shared
58 +}
59 +
60 +src_install() {
61 + default
62 + find "${D}" -name '*.la' -delete || die
63 +}
64
65 diff --git a/media-libs/libdvbcsa/metadata.xml b/media-libs/libdvbcsa/metadata.xml
66 new file mode 100644
67 index 00000000000..54be7ff7e5d
68 --- /dev/null
69 +++ b/media-libs/libdvbcsa/metadata.xml
70 @@ -0,0 +1,8 @@
71 +<?xml version="1.0" encoding="UTF-8"?>
72 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
73 +<pkgmetadata>
74 + <maintainer type="person">
75 + <email>chewi@g.o</email>
76 + <name>James Le Cuirot</name>
77 + </maintainer>
78 +</pkgmetadata>