blob: bb5594b4250273626da243219d554522967862bb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/hilite/hilite-1.5.ebuild,v 1.12 2005/07/09 03:09:39 swegener Exp $
inherit toolchain-funcs
HOMEPAGE="http://sourceforge.net/projects/hilite"
SRC_URI="mirror://gentoo/${P}.c"
DESCRIPTION="A utility which highlights stderr text in red"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="sparc mips amd64 x86 ~hppa ppc ~ppc-macos"
S=${WORKDIR}
IUSE=""
DEPEND=""
src_unpack() {
cp ${DISTDIR}/${A} ${WORKDIR}/
}
src_compile() {
$(tc-getCC ) ${CFLAGS} -o ${PN} ${P}.c \
|| die "compile failed"
}
src_install() {
dobin ${WORKDIR}/hilite
}
|