blob: 04ae2479ca9cbf0096e17aa3cb611b2a8ef272a0 (
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-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DEB_PR=1
DESCRIPTION="Graphical output functions for Matlab and Octave"
HOMEPAGE="http://www.epstk.de/"
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.bz2
mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}-${DEB_PR}.debian.tar.gz"
S="${WORKDIR}"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~riscv ~x86"
SLOT="0"
IUSE="doc"
RDEPEND="sci-mathematics/octave
app-text/ghostscript-gpl"
src_prepare() {
cd eps* || die
local p
for p in $(cat "${WORKDIR}"/debian/patches/series); do
eapply "${WORKDIR}"/debian/patches/${p}
done
default
}
src_install() {
insinto /usr/share/octave/site/m/${PN}
doins eps*/m/*
if use doc ; then
docinto html
dodoc -r eps*/doc/*
fi
insinto /etc
doins debian/epstk.conf
dodoc debian/README.Debian debian/changelog
}
|