blob: 5d7c20b3b7726ec83d0d695c7060509ec3552f1a (
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
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-util/sel/sel-0.08.2.ebuild,v 1.3 2001/05/28 05:24:13 achim Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="A filemanager for shell scripts"
SRC_URI="http://www.rhein-neckar.de/~darkstar/files/${A}"
HOMEPAGE="http://www.rhein-neckar.de/~darkstar/sel.html"
DEPEND="virtual/glibc
>=sys-libs/ncurses-5.1"
src_unpack () {
unpack ${A}
cd ${S}
cp Makefile Makefile.orig
sed -e "s:-m486:${CFLAGS}:" -e "s:-O3::" Makefile.orig > Makefile
cp sel.c sel.c.orig
sed -e "s:/usr/local/share/sel/help\.txt:/usr/share/sel/help\.txt:" \
sel.c.orig > sel.c
}
src_compile() {
make
}
src_install () {
cd ${S}
dobin sel
doman sel.1
insinto /usr/share/sel
doins help.txt
dodoc Changelog LICENSE
}
|