blob: b9d4b4b98ae95ad33a2688ac7fe79fa78a7cda34 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/par/par-1.52.ebuild,v 1.8 2005/10/29 13:13:25 grobian Exp $
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 ~ppc-macos ~sparc ~x86"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}/${MY_P}
src_compile() {
make -f protoMakefile CC="$(tc-getCC) -c $CFLAGS"
}
src_install() {
newbin par par-format || die
doman par.1
dodoc releasenotes par.doc
}
|