blob: fced9a86bc77e9b9330c166949d96874cb839b57 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mlt++/mlt++-0.3.4.ebuild,v 1.1 2009/01/12 22:09:12 aballier Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Various bindings for mlt"
HOMEPAGE="http://mlt.sourceforge.net/"
SRC_URI="mirror://sourceforge/mlt/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND=">=media-libs/mlt-0.3.4"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-0.3.4-asneeded.patch"
}
src_compile() {
tc-export CXX
econf
emake CC="$(tc-getCXX)" || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README CUSTOMISING HOWTO
}
|