blob: a8003622276ec0730635dce40722581cd22827d3 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libass/libass-0.9.9.ebuild,v 1.1 2010/03/03 13:32:22 aballier Exp $
EAPI=2
DESCRIPTION="Library for SSA/ASS subtitles rendering"
HOMEPAGE="http://code.google.com/p/libass/"
SRC_URI="http://libass.googlecode.com/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="enca +fontconfig png"
RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.4.2 )
>=media-libs/freetype-2.2.1
png? ( >=media-libs/libpng-1.2.15 )
virtual/libiconv
enca? ( app-i18n/enca )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_configure() {
econf \
$(use_enable enca) \
$(use_enable fontconfig) \
$(use_enable png)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc Changelog
}
|