mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-20 00:48:23 +00:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
31 lines
663 B
Bash
31 lines
663 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
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"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
LICENSE="|| ( MIT par )"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~mips ~sparc ~x86 ~x64-macos"
|
|
|
|
src_compile() {
|
|
emake -f protoMakefile CC="$(tc-getCC) ${CFLAGS} -c" \
|
|
LINK1="$(tc-getCC) ${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
newbin par par-format
|
|
doman par.1
|
|
dodoc releasenotes par.doc
|
|
}
|
|
|
|
src_test() {
|
|
emake -f protoMakefile test
|
|
}
|