blob: edc5416b6888494fff935a6c4179e8d7373ae0d1 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="A font management application for the GNOME desktop"
HOMEPAGE="http://code.google.com/p/font-manager"
SRC_URI="http://font-manager.googlecode.com/files/${PN}_${PV}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-lang/python-2.6
media-libs/freetype"
RDEPEND="${DEPEND}
dev-python/pygtk
dev-libs/libxml2
x11-apps/fonttosfnt
x11-apps/mkfontscale
x11-apps/bdftopcf
media-fonts/font-util"
src_install() {
emake DESTDIR="${D}" install || die 'installation failed'
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
}
|