blob: 936b0388bfce07be42b0e0f63b9beb6c505ab6d9 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
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_configure() {
econf || die 'econf failed'
}
src_compile() {
emake || die 'emake failed'
}
src_install() {
emake DESTDIR="${D}" install || die 'installation failed'
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
}
|