summaryrefslogtreecommitdiff
blob: f1c07eade5d6a646373686ff1a788dae0c7f64ae (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
41
42
43
44
45
46
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libotf/libotf-0.9.3.ebuild,v 1.8 2006/02/13 02:53:55 halcy0n Exp $

DESCRIPTION="Library for handling OpenType fonts (OTF)"
HOMEPAGE="http://www.m17n.org/libotf/"
SRC_URI="http://www.m17n.org/libotf/${P}.tar.gz"

LICENSE="LGPL-2.1"

SLOT="0"
KEYWORDS="x86 ppc alpha amd64 ppc64 sparc hppa"
IUSE="X"
RDEPEND="|| ( ( x11-libs/libXaw
				x11-libs/libICE
			  )
			  virtual/x11 )
	>=media-libs/freetype-2.1"

DEPEND="${RDEPEND}
	>=sys-apps/sed-4"

src_unpack() {
	unpack ${A}
	cd ${S}
	use X || sed -i -e '/^bin_PROGRAMS/s/otfview//' example/Makefile.in || die
}

src_install() {

	make DESTDIR=${D} install || die

	dodoc AUTHORS INSTALL NEWS README ChangeLog
}

pkg_postinst() {
	if has_version '<dev-libs/libotf-0.9.3' ; then

	ewarn
	ewarn "Shared library extension has been changed. You may need to recompile"
	ewarn "everything depending on this library (in short, please remerge m17n-lib"
	ewarn " if you are upgrading)."
	ewarn

	fi
}