blob: 850ac769f053a02b253a9c8bd9f6add95a991153 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/snac/snac-0.3.ebuild,v 1.4 2003/02/13 09:25:44 vapier Exp $
DESCRIPTION="SNAC's a Neat Algebraic Calculator."
SRC_URI="http://snac.seul.org/${P}.tar.gz"
HOMEPAGE="http://snac.seul.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND=">=x11-libs/gtk+-1.2.0
gnome-base/libgnomeui"
src_unpack() {
unpack ${A}
cd ${S}/po
mv Makefile.in.in Makefile.in-orig
sed -e "s:gnulocaledir = :gnulocaledir = ${D}:" Makefile.in-orig > Makefile.in.in
}
src_compile() {
econf
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README THANKS
}
|