forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cssc-1.4.0.ebuild
51 lines (40 loc) · 1007 Bytes
/
cssc-1.4.0.ebuild
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools eutils
# Switch to ^^ when we switch to EAPI=6.
#MY_PN="${PN^^}"
MY_PN="CSSC"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="The GNU Project's replacement for SCCS"
SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
HOMEPAGE="https://www.gnu.org/software/cssc/"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="test valgrind"
DEPEND="
test? ( valgrind? ( dev-util/valgrind ) )
"
DOCS=( AUTHORS ChangeLog NEWS README )
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-1.3.0-gcc47.patch \
"${FILESDIR}"/${P}-config.patch \
"${FILESDIR}"/${P}-m4.patch \
"${FILESDIR}"/${P}-test-large.patch
eautoreconf
}
src_configure() {
econf \
$(use test && use_with valgrind) \
--enable-binary
}
src_test() {
if [[ ${froobUID} = 0 ]]; then
einfo "The test suite can not be run as root"
else
emake check
fi
}