blob: ecb3cd30908b95bad3b52a8adb1493b4e730a3dc (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DEB_PR=16
DESCRIPTION="X11 Plotting Utility"
HOMEPAGE="http://www.isi.edu/nsnam/xgraph/"
SRC_URI="http://www.isi.edu/nsnam/dist/${P}.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}-${DEB_PR}.debian.tar.gz"
LICENSE="xgraph"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="examples"
RDEPEND="x11-libs/libSM
x11-libs/libX11"
DEPEND="${RDEPEND}"
PATCHES=( "${WORKDIR}"/debian/patches/debian-changes )
src_prepare() {
default
rm -f configure.in Makefile.in || die
eautoreconf
}
src_install() {
default
dodoc "${WORKDIR}"/debian/changelog
if use examples; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
dodir /usr/share/man/man1
mv "${ED%/}"/usr/share/man/manm/xgraph.man \
"${ED%/}"/usr/share/man/man1/xgraph.1 || die
rm -r "${ED%/}"/usr/share/man/manm || die
}
|