diff options
author | 2012-10-21 21:37:29 -0400 | |
---|---|---|
committer | 2012-10-21 21:37:29 -0400 | |
commit | 01f0c78471d0519bbfe455e78141a1144ae2303e (patch) | |
tree | 253261c5605e4a5a1fc911ed1ffe6aa86c9801d3 /app-admin/ccze/ccze-0.2.1-r4.ebuild | |
parent | app-text/tree: build on ~x64-macos (diff) | |
download | logan-01f0c78471d0519bbfe455e78141a1144ae2303e.tar.gz logan-01f0c78471d0519bbfe455e78141a1144ae2303e.tar.bz2 logan-01f0c78471d0519bbfe455e78141a1144ae2303e.zip |
Signed-off-by: Jason Cooper <gentoo@lakedaemon.net>
Diffstat (limited to 'app-admin/ccze/ccze-0.2.1-r4.ebuild')
-rw-r--r-- | app-admin/ccze/ccze-0.2.1-r4.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-admin/ccze/ccze-0.2.1-r4.ebuild b/app-admin/ccze/ccze-0.2.1-r4.ebuild new file mode 100644 index 0000000..761e867 --- /dev/null +++ b/app-admin/ccze/ccze-0.2.1-r4.ebuild @@ -0,0 +1,44 @@ +# 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.8 2012/03/18 15:51:16 armin76 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="~x64-macos" +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 +} |