blob: b16d74ba1408b8d028a0610923604731e636a632 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="a collection of tools that nobody thought to write when Unix was young"
HOMEPAGE="https://joeyh.name/code/moreutils/"
#SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.gz"
SRC_URI="https://dev.gentoo.org/~radhermit/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 x86 ~x86-linux"
IUSE="+doc +perl"
RDEPEND="
perl? (
dev-lang/perl
dev-perl/IPC-Run
dev-perl/Time-Duration
dev-perl/TimeDate
)"
DEPEND="
app-admin/eselect
doc? (
dev-lang/perl
>=app-text/docbook2X-0.8.8-r2
app-text/docbook-xml-dtd:4.4
)"
src_prepare() {
# don't build manpages
if ! use doc ; then
sed -i -e '/^all:/s/$(MANS)//' -e '/man1/d' Makefile || die
fi
# don't install perl scripts
if ! use perl ; then
sed -i -e '/PERLSCRIPTS/d' Makefile || die
fi
default
}
src_compile() {
tc-export CC
emake CFLAGS="${CFLAGS}" DOCBOOK2XMAN=docbook2man.pl PREFIX="${EPREFIX}/usr"
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" INSTALL_BIN=install install
# sys-process is more advanced than parallel from moreutils, rename it
if use doc; then
mv "${ED}"usr/share/man/man1/{,${PN}_}parallel.1 || die
fi
mv "${ED}"usr/bin/{,${PN}_}parallel || die
}
pkg_postinst() {
# try to make sure $EDITOR is valid for vipe (bug #604630)
eselect editor update
}
|