blob: 5738049957a91c43ada52edc5058cb5bfeb3dca0 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/beaver/beaver-0.2.6.ebuild,v 1.2 2003/06/29 18:24:08 aliz 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_compile() {
cd ${S}/src
emake OPTI="${CFLAGS}" || die
}
src_install() {
cd src
make DESTDIR=${D}/usr \
MANDIR=/share/man \
install || die
}
|