blob: e4705f41b8e8b345bb71695a3e4af97194121b18 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/videocut/videocut-0.2.0.ebuild,v 1.1 2009/11/05 13:34:48 ssuominen Exp $
EAPI=2
inherit eutils qt4
DESCRIPTION="A program to create compositions from video files"
HOMEPAGE="http://code.google.com/p/videocut/"
SRC_URI="http://videocut.googlecode.com/files/${PN}_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/qt-gui:4
media-libs/xine-lib"
S=${WORKDIR}/${P}.orig
src_configure() {
eqmake4
}
src_compile() {
emake || die
lrelease i18n/*.ts
}
src_install() {
exeinto /usr/libexec
doexe build/result/${PN} || die
dobin "${FILESDIR}"/${PN} || die
insinto /usr/share/${PN}/i18n
doins -r i18n/*.qm || die
domenu ${PN}.desktop
doicon videocut.svg
dodoc ABOUT AUTHORS THANKSTO
}
|