summaryrefslogtreecommitdiff
blob: 8772a9cff0d214bf8e05edbab201a33731546313 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
PYTHON_REQ_USE="threads(+)"
inherit git-r3 python-any-r1 waf-utils

DESCRIPTION="read and write subtitles in a few different formats"
HOMEPAGE="http://carlh.net/libsub"
EGIT_REPO_URI="https://github.com/cth103/${PN}.git"
EGIT_BRANCH="1.0"

LICENSE="GPL-2"
SLOT="1.0"
KEYWORDS=""
IUSE=""

RDEPEND="dev-cpp/glibmm:2
	dev-cpp/libxmlpp:2.6
	dev-libs/boost:=
	>=dev-libs/libcxml-0.15.4
	dev-libs/openssl:0
	>=media-libs/libasdcp-cth-0.1.3"
DEPEND="${RDEPEND}
	dev-util/waf
	virtual/pkgconfig
	${PYTHON_DEPS}"

PATCHES=( "${FILESDIR}"/${P}-no-ldconfig.patch
	"${FILESDIR}"/${P}-respect-cxxflags.patch
	"${FILESDIR}"/${P}-iostream.patch
	"${FILESDIR}"/${P}-libcxml-9999.patch
	"${FILESDIR}"/${P}-boost.patch )

src_prepare() {
	rm -v waf || die
	export WAF_BINARY=${EROOT}usr/bin/waf

	ewarn "Some tests failing due missing files/certs are disabled."
	sed -e '/ssa_reader_test.cc/d' \
		-e '/dcp_to_stl_binary_test.cc/d' \
		-i test/wscript || die

	default
}

src_test() {
	./run/tests || die
}