blob: b0b822c166a4953447b2d18169402136875950e8 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic toolchain-funcs
DESCRIPTION="dcetest is a clone of the Windows rpcinfo"
HOMEPAGE="http://www.atstake.com/research/tools/info_gathering/"
SRC_URI="mirror://gentoo/${PN}.tar -> ${P}.tar"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
S="${WORKDIR}/${PN}"
PATCHES=( "${FILESDIR}"/${PN}-2.0-fix-build-system.patch )
src_configure() {
tc-export CC
append-cflags -funsigned-char -Wall
}
src_install() {
dobin dcetest
dodoc CHANGELOG README VERSION nt4sp6adefault.txt out out.txt out2.txt w2ksp0.txt
}
|