blob: cdc50d0c3dea2f260f01610c290de08825fc8ea2 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools eutils
DESCRIPTION="Unicode-aware text to PostScript converter"
HOMEPAGE="http://paps.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="x11-libs/pango"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch \
"${FILESDIR}"/${P}-fix-as-needed-build.patch \
"${FILESDIR}"/${P}-fix-doxygen-acinclude.patch \
"${FILESDIR}"/${P}-fix-freetype-include.patch \
"${FILESDIR}"/${P}-fix-empty-file.patch
mv configure.in configure.ac || die
eautoreconf
}
src_install() {
dobin src/paps
doman src/paps.1
dodoc AUTHORS ChangeLog NEWS README TODO
}
|