blob: 5dc04520072e3132a6f52debeda2c95579f0855d (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/harfbuzz/harfbuzz-0.6.0.ebuild,v 1.2 2011/08/11 09:29:18 scarabeus Exp $
EAPI=4
DESCRIPTION="An OpenType text shaping engine"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/HarfBuzz"
SRC_URI="http://www.freedesktop.org/software/${PN}/release/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE=""
DEPEND="
dev-libs/glib:2
dev-libs/icu
media-libs/freetype:2
x11-libs/cairo
"
RDEPEND="${DEPEND}"
src_configure() {
econf \
--disable-static
}
src_install() {
default
find "${ED}" -name '*.la' -exec rm -f {} +
}
|