blob: 6ab60421dd8f7b1dbeea4f2ffd87c7e24dad3099 (
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
44
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Many to one page printing utility"
HOMEPAGE="http://www.mesa.nl/"
SRC_URI="
http://www.mesa.nl/pub/${PN}/${P}.tgz
https://dev.gentoo.org/~mgorny/dist/${P}-gentoo-patchset.tar.bz2"
LICENSE="freedist"
SLOT="0"
KEYWORDS="amd64 ppc x86"
PATCHES=(
"${FILESDIR}"/${P}-fix-buildsystem.patch
"${WORKDIR}"/${P}-gentoo-patchset/01_previous_changes.patch
"${WORKDIR}"/${P}-gentoo-patchset/10_bts354935_fix_fontdefs.patch
"${WORKDIR}"/${P}-gentoo-patchset/20_bts416573_manpage_fixes.patch
"${WORKDIR}"/${P}-gentoo-patchset/30_bts443280_libdir_manpage.patch
)
src_configure() {
tc-export CC
}
src_compile() {
emake \
PREFIX="${EPREFIX}"/usr \
MANDIR="${EPREFIX}"/usr/share/man/man1
}
src_install () {
emake \
PREFIX="${ED}"/usr \
MANDIR="${ED}"/usr/share/man/man1 install
rm README.{amiga,OS2} || die
einstalldocs
dodoc Encoding.format
}
|