blob: 1ce42b932c1c99bdf2812b06b6537dc653e5955c (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
PYTHON_REQ_USE=sqlite
inherit eutils python-single-r1
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="~amd64 ~x86"
IUSE=""
DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}
dev-python/pygtk[${PYTHON_USEDEP}]
dev-python/pygobject[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
dev-libs/libxml2[python,${PYTHON_USEDEP}]
media-libs/fontconfig
>=media-libs/freetype-2.3.11
dev-db/sqlite:3"
src_prepare() {
epatch "${FILESDIR}"/${P}-gcc47.patch
epatch "${FILESDIR}"/${P}-nonexistent-cache.patch
}
src_compile() {
emake STRIP_LIB=
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO || die
}
|