blob: 556346a7fdaa059e14fb28d61a01f653d9927e1b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmMoonClock/wmMoonClock-1.27.ebuild,v 1.12 2004/11/24 04:43:32 weeve Exp $
IUSE=""
DESCRIPTION="dockapp that shows lunar ephemeris to a high accuracy."
SRC_URI="http://nis-www.lanl.gov/~mgh/WindowMaker/${P}.tar.gz"
HOMEPAGE="http://nis-www.lanl.gov/~mgh/WindowMaker/DockApps.shtml"
DEPEND="virtual/libc
virtual/x11
>=sys-apps/sed-4"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ~mips ppc ~sparc"
src_unpack() {
unpack ${A} ; cd ${S}/Src
sed -i -e "s:-O2:${CFLAGS}:" Makefile
}
src_compile() {
emake -C Src || die "parallel make failed"
}
src_install () {
dobin Src/wmMoonClock
doman Src/wmMoonClock.1
dodoc BUGS
}
|