blob: f7869c9080630fda04a67e59ade30eb8c6f5efd3 (
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/x11-plugins/wmMoonClock/wmMoonClock-1.27.ebuild,v 1.1 2002/10/08 13:11:51 raker Exp $
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/glibc
virtual/x11"
RDEPEND="${DEPEND}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
src_unpack() {
unpack ${A}
cd ${S}/Src
mv Makefile Makefile.orig
sed -e "s:-O2:${CFLAGS}:" Makefile.orig > Makefile
}
src_compile() {
emake -C Src || die "parallel make failed"
}
src_install () {
dobin Src/wmMoonClock
doman Src/wmMoonClock.1
dodoc BUGS
}
|