summaryrefslogtreecommitdiff
blob: 0226dfae5370cf638a05299b069726edff27d962 (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/elem/elem-1.0.1.ebuild,v 1.4 2004/03/03 13:28:54 phosphan Exp $

DESCRIPTION="periodic table of the elements"
HOMEPAGE="http://elem.sourceforge.net/"
SRC_URI="mirror://sourceforge/elem/${PN}-src-${PV}.tgz"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
IUSE=""

S=${WORKDIR}/${PN}

RDEPEND="virtual/x11
	virtual/glibc
	x11-libs/xforms"
DEPEND="${RDEPEND}
	>=sys-apps/sed-4"

src_unpack () {
	unpack ${A}
	cd ${S}
	einfo "Modifying Makefile..."
	sed -i -e 's:^LIBS.*:\0 -lXpm:' Makefile
}

src_compile () {
	emake all || die "Build failed."
}

src_install () {
	into /usr
	dobin elem elem-de elem-en
	dohtml -r doc/*
}