blob: ebad0907841762247d106d8e66c254290b8b3d4b (
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
|
# 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/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-lang/python"
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
}
|