blob: 7e6f9b7dcf6e3b50bf0cf0497b633b524f30b300 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
MY_P="Par${PV/./}"
DESCRIPTION="a paragraph reformatter, vaguely similar to fmt, but better"
HOMEPAGE="http://www.nicemice.net/par/"
SRC_URI="http://www.nicemice.net/par/${MY_P/./}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="~amd64 ~mips ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE=""
DEPEND="!dev-util/par
!app-arch/par"
S="${WORKDIR}/${MY_P}"
src_compile() {
make -f protoMakefile CC="$(tc-getCC) -c $CFLAGS" \
LINK1="$(tc-getCC) $LDFLAGS" || die 'make failed'
}
src_install() {
newbin par par-format
doman par.1
dodoc releasenotes par.doc
}
|