blob: 089b415be045b91648e66753b79c9da6cef0690f (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.7.0_pre20110904.ebuild,v 1.4 2012/05/05 08:02:40 jdhore Exp $
EAPI=4
DESCRIPTION="An OpenType text shaping engine"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="
dev-libs/glib:2
dev-libs/icu
media-gfx/graphite2
media-libs/freetype:2
x11-libs/cairo
"
DEPEND="${RDEPEND}
dev-util/ragel
virtual/pkgconfig
"
src_configure() {
# this packge needs build system update because
# all the deps are automagic
econf \
--disable-static
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}
|