blob: c0b58e2bd779de8a2670492e258fcec4b60bc0ec (
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
|
# Copyright 1999-2004 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.7 2004/10/05 13:34:51 pvdabeel Exp $
HOMEPAGE="http://sourceforge.net/projects/hilite"
SRC_URI="mirror://gentoo/${PN}-${PV}.c"
DESCRIPTION="A utility which highlights stderr text in red"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="sparc mips ~amd64 x86 ~hppa ppc"
S=${WORKDIR}
IUSE=""
DEPEND=""
src_unpack() {
cp ${DISTDIR}/${A} ${WORKDIR}/
}
src_compile() {
${CC:-gcc} ${CFLAGS} -o ${PN} ${PN}-${PV}.c \
|| die "compile failed"
}
src_install() {
dobin ${WORKDIR}/hilite
}
|