blob: 490342c755c5dca30a834c139898ba86e651890a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-editors/beaver/beaver-0.2.4.ebuild,v 1.1 2002/08/13 12:50:22 stroke Exp $
S=${WORKDIR}/${P}
LICENSE="GPL-2"
KEYWORDS="x86 -ppc"
SLOT="0"
DESCRIPTION="An Early AdVanced EditoR"
SRC_URI="http://eturquin.free.fr/beaver/dloads/${P}.tar.gz"
HOMEPAGE="http://eturquin.free.fr/beaver/index.htm"
DEPEND="=x11-libs/gtk+-1.2*"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}/src
cp Makefile Makefile.orig
sed -e "s:DESTDIR = /usr/local:DESTDIR = /usr:" \
-e "s:OPTI = -O3 -funroll-loops -fomit-frame-pointer #-mpentium:OPTI = ${CFLAGS} -funroll-loops -fomit-frame-pointer:" Makefile.orig > Makefile
}
src_compile() {
cd ${S}/src
emake || die
}
src_install() {
cd src
make DESTDIR=${D}/usr \
MANDIR=/share/man \
install || die
}
|