blob: c9a958e02d8d3304da149f4afc7afe4a4c5cf7ff (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/pariguide/pariguide-0.43a.ebuild,v 1.1 2002/12/15 23:07:28 george Exp $
IUSE=""
DESCRIPTION="PariGUIde, a GUI for the math. program Pari-GP"
HOMEPAGE="http://www.skalatan.de/pariguide/"
SRC_URI="ftp://ftp.sourceforge.net/pub/sourceforge/pariguide/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND=">=qt-2.2.0
virtual/x11"
RDEPEND=">=pari-2.1.0"
S="${WORKDIR}/${P}"
src_compile() {
#./configure \
# --host=${CHOST} \
econf || die "configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
#weiderly make install does not make the main binary executable
chmod a+x ${D}/usr/bin/pariguide
#make install does not honor docdir seting, have to move things manually
dodoc AUTHORS COPYING README TODO
mv ${D}/usr/doc/${PN}/html ${D}/usr/share/doc/${PF}
rm -rf ${D}/usr/doc/
}
|