blob: 1a4240141bc38f9ccb5dca997ca87974a3870207 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/psiconv/psiconv-0.8.3.ebuild,v 1.2 2003/09/15 00:19:44 seemant Exp $
IUSE="doc"
S=${WORKDIR}/${P}
DESCRIPTION="An interpreter for Psion 5(MX) file formats"
HOMEPAGE="http://huizen.dds.nl/~frodol/psiconv"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~arm"
DEPEND="virtual/glibc"
src_compile() {
local myconf
use doc \
&& myconf="${myconf} enable-html4-docs \
--enable-ascii-docs \
--enable-rtf-docs"
econf || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|