You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1019 B
45 lines
1019 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-admin/ccze/ccze-0.2.1-r3.ebuild,v 1.7 2012/02/16 19:29:19 phajdan.jr Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit fixheadtails autotools eutils toolchain-funcs
|
|
|
|
DESCRIPTION="A flexible and fast logfile colorizer"
|
|
HOMEPAGE="http://dev.gentoo.org/~joker/ccze/ccze.txt"
|
|
SRC_URI="mirror://gentoo/${P}.tar.gz"
|
|
|
|
RESTRICT="test"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~sparc x86 ~x86-fbsd"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-libs/libpcre
|
|
sys-libs/ncurses"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DOCS=( AUTHORS ChangeLog ChangeLog-0.1 NEWS THANKS README FAQ )
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/ccze-fbsd.patch
|
|
epatch "${FILESDIR}"/ccze-segfault.patch
|
|
epatch "${FILESDIR}"/ccze-ldflags.patch
|
|
|
|
# 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
|
|
}
|