blob: 92ef90211b32bbc2c9e800d9c58ee5bd1b56e552 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Stress-tests programs by giving them random input"
HOMEPAGE="http://fuzz.sourceforge.net/"
DEB_P="${PN}_${PV}"
DEB_PR="7.3"
SRC_URI="
mirror://sourceforge/${PN}/${P}.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${DEB_P}-${DEB_PR}.diff.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="sys-libs/readline:0="
RDEPEND="${DEPEND}"
PATCHES=( "${WORKDIR}"/${DEB_P}-${DEB_PR}.diff )
src_prepare() {
default
tc-export CC
}
src_install() {
emake DESTDIR="${D}" install
dodoc NEWS README ChangeLog AUTHORS
}
|