blob: 23055306c1192f71bc656c1466cd1c6af8d417bc (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/transkode/transkode-0.6_beta2.ebuild,v 1.5 2006/12/30 20:17:36 ticho Exp $
ARTS_REQUIRED="never"
inherit kde
MY_P="${P/_beta/b}"
S="${WORKDIR}/${PN}"
DESCRIPTION="KDE frontend for various audio transcoding tools"
HOMEPAGE="http://kde-apps.org/content/show.php?content=37669"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE="amarok shorten wavpack"
RDEPEND="media-libs/taglib
amarok? ( media-sound/amarok )"
DEPEND="${RDEPEND}"
RDEPEND="${RDEPEND}
shorten? ( media-sound/shorten )
wavpack? ( media-sound/wavpack )
media-video/mplayer"
need-kde 3.5
src_compile() {
local myconf="$(use_enable amarok amarokscript)"
kde_src_compile
}
pkg_postinst() {
if use amarok; then
elog "If you want to use TransKode to encode audio files on the fly"
elog "when transferring music to a portable media device, remember"
elog "to start the TransKode script through the Script Manager"
elog "on the Tools menu."
fi
}
|