blob: c053cba2cd14beb4bb36e59285e8264374fc2ec5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils git-2 autotools-utils
DESCRIPTION="Library for handling the BD+ protection scheme on bluray discs"
HOMEPAGE="http://www.videolan.org/developers/libbdplus.html"
EGIT_REPO_URI="git://git.videolan.org/libbdplus.git"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS=""
IUSE="doc"
DEPEND=">=media-libs/libaacs-0.7.0"
RDEPEND="${DEPEND}"
AUTOTOOLS_IN_SOURCE_BUILD=1
AUTOTOOLS_AUTORECONF=1
DOCS=(COPYING README.txt ChangeLog)
src_unpack () {
git-2_src_unpack
}
|