31 lines
817 B
Bash
31 lines
817 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/karlyriceditor/karlyriceditor-1.3.ebuild,v 1.3 2013/03/02 21:56:03 hwoarang Exp $
|
|
|
|
EAPI=4
|
|
inherit eutils qt4-r2
|
|
|
|
DESCRIPTION="A program which lets you edit and synchronize lyrics with karaoke songs in varions formats"
|
|
HOMEPAGE="http://www.karlyriceditor.com/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-libs/openssl:0
|
|
media-libs/libsdl
|
|
>=virtual/ffmpeg-0.9
|
|
dev-qt/qtcore:4
|
|
dev-qt/qtgui:4"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-libav.patch" )
|
|
|
|
src_install() {
|
|
dodoc Changelog
|
|
dobin bin/${PN}
|
|
doicon packages/${PN}.png
|
|
make_desktop_entry ${PN} 'Karaoke Lyrics Editor'
|
|
}
|