blob: 105872fd30671d75f08793cb24a7d8aa728d6781 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/grpn/grpn-1.1.2.ebuild,v 1.1 2003/06/19 01:46:36 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GRPN is a Reverse Polish Notation calculator for X"
HOMEPAGE="http://lashwhip.com/grpn.html"
SRC_URI="http://lashwhip.com/grpn/${P}.tar.gz"
DEPEND="virtual/x11
=x11-libs/gtk+-1.2*"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm"
src_compile() {
emake || die
}
src_install () {
dobin grpn
doman grpn.1
dodoc CHANGES README
}
|