blob: d8efdee13d280bd0d46ae6153b77bf4c5d4f8aad (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/konvertible/konvertible-1.0.1.ebuild,v 1.1 2011/03/27 13:24:38 scarabeus Exp $
EAPI=4
inherit kde4-base
DESCRIPTION="A program to convert audio formats with FFmpeg"
HOMEPAGE="http://www.kde-apps.org/content/show.php/Konvertible?content=116892"
SRC_URI="http://www.kde-apps.org/CONTENT/content-files/116892-${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug +handbook taglib"
DEPEND="taglib? ( media-libs/taglib )"
RDEPEND="${DEPEND}
virtual/ffmpeg
"
DOCS=( ChangeLog README TODO )
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_with taglib)
)
kde4-base_src_configure
}
|