blob: aa0b4c64034f14e7c14bb9c9a78994f088c1846b (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit qmake-utils
MY_PN="BDSup2SubPlusPlus"
DESCRIPTION="C++ port of BDSup2Sub"
HOMEPAGE="https://github.com/amichaelt/BDSup2SubPlusPlus"
SRC_URI="https://github.com/amichaelt/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
x11-libs/libqxt
dev-qt/qtcore:4
dev-qt/qtgui:4
"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_PN}-${PV}/src"
PATCHES=( "${FILESDIR}/${P}-hidden-config.patch" )
src_configure() {
eqmake4 ${PN}.pro
}
src_install() {
dobin ${PN}
}
|