blob: 9ca6d1558009ae60fb4d29b6c5adb4069d0ce290 (
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 Technologies, Inc.
# 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.1 2004/06/20 00:53:27 ciaranm 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"
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
}
|