blob: dd2cbe565456192201ec2d41a2edb9afac8d9949 (
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
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools fixheadtails toolchain-funcs
DESCRIPTION="A flexible and fast logfile colorizer"
HOMEPAGE="https://git.madhouse-project.org/archive/ccze"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
RESTRICT="test" # bug 913965
DEPEND="dev-libs/libpcre
sys-libs/ncurses:0="
RDEPEND="${DEPEND}"
DOCS=( AUTHORS ChangeLog ChangeLog-0.1 NEWS THANKS README FAQ )
PATCHES=(
"${FILESDIR}"/ccze-fbsd.patch
"${FILESDIR}"/ccze-segfault.patch
"${FILESDIR}"/ccze-ldflags.patch
"${FILESDIR}"/${P}-tinfo.patch
)
src_prepare() {
default
# GCC 4.x fixes
sed -e 's/-Wswitch -Wmulticharacter/-Wswitch/' \
-i src/Makefile.in || die
sed -e '/AC_CHECK_TYPE(error_t, int)/d' \
-i configure.ac || die
eautoreconf
ht_fix_file Rules.mk.in
tc-export CC
}
|