blob: 8b33f5895434aef7b843e506301e4364742a1002 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qastools/qastools-0.17.1.ebuild,v 1.2 2013/03/02 21:59:41 hwoarang Exp $
EAPI=4
inherit cmake-utils
MY_P=${PN}_${PV}
DESCRIPTION="Qt4 GUI ALSA tools: mixer, configuration browser"
HOMEPAGE="http://xwmw.org/qastools/"
SRC_URI="mirror://sourceforge/${PN}/${PV}/${MY_P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="media-libs/alsa-lib
>=dev-qt/qtcore-4.6:4
>=dev-qt/qtgui-4.6:4
>=dev-qt/qtsvg-4.6:4"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS="CHANGELOG README TODO"
# TODO: translation handling (currently auto-installs all l10ns)
|