blob: 91f3bee03ee118cc7930e64b03475d92cb1d7373 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/gbdfed/gbdfed-1.4.ebuild,v 1.3 2009/08/08 12:55:52 ssuominen Exp $
EAPI=2
inherit eutils
DESCRIPTION="gbdfed Bitmap Font Editor"
HOMEPAGE="http://www.math.nmsu.edu/~mleisher/Software/gbdfed/"
SRC_URI="http://www.math.nmsu.edu/~mleisher/Software/gbdfed/${P}.tbz2"
LICENSE="X11"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2.6:2
>=media-libs/freetype-2
x11-libs/libX11
x11-libs/pango"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
sed "s:-D.*_DISABLE_DEPRECATED::" -i Makefile.in #248562
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README NEWS
}
|