blob: c36925e18cf7a0f962026f47c26d3d5c519c2429 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/gperiodic/gperiodic-1.3.2.ebuild,v 1.14 2004/06/16 04:52:32 mr_bones_ Exp $
inherit eutils
DESCRIPTION="periodic table application for Linux"
SRC_URI="ftp://ftp.seul.org/pub/gperiodic/${P}.tar.gz"
HOMEPAGE="http://gperiodic.seul.org/"
KEYWORDS="x86 amd64"
SLOT="0"
LICENSE="GPL-2"
IUSE="nls"
DEPEND=">=sys-libs/ncurses-5.2
=x11-libs/gtk+-1.2*
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
econf `use_enable nls` || die
emake || die
}
src_install() {
einstall || die
doman man/gperiodic.1
dodoc ABOUT-NLS AUTHORS ChangeLog NEWS README
}
|