summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-04-19 12:57:53 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-04-19 12:57:53 +0000
commitd8ad27f9c3793ad6c41eb7681ecb4e8485ea4f54 (patch)
tree2c61355c50642bfb8c0f1f8529342a64312843de /app-sci
parentAdding IUSE, moving patch -> epatch (Manifest recommit) (diff)
downloadgentoo-2-d8ad27f9c3793ad6c41eb7681ecb4e8485ea4f54.tar.gz
gentoo-2-d8ad27f9c3793ad6c41eb7681ecb4e8485ea4f54.tar.bz2
gentoo-2-d8ad27f9c3793ad6c41eb7681ecb4e8485ea4f54.zip
Adding IUSE, removing S=... with no effect
Diffstat (limited to 'app-sci')
-rw-r--r--app-sci/xephem/ChangeLog7
-rw-r--r--app-sci/xephem/xephem-3.5.2.ebuild15
2 files changed, 11 insertions, 11 deletions
diff --git a/app-sci/xephem/ChangeLog b/app-sci/xephem/ChangeLog
index caa9dcec5f3d..5636b4f136ec 100644
--- a/app-sci/xephem/ChangeLog
+++ b/app-sci/xephem/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-sci/xephem
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/xephem/ChangeLog,v 1.7 2003/02/12 05:20:31 vapier Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/xephem/ChangeLog,v 1.8 2004/04/19 12:57:53 phosphan Exp $
+
+ 19 Apr 2004; Patrick Kursawe <phosphan@gentoo.org> xephem-3.5.2.ebuild:
+ Adding IUSE, removing S=... with no effect
03 Sep 2002; Daniel Robbins <drobbins@gentoo.org> xephem-3.5.2.ebuild:
moved rphillips' 'download later' stuff into pkg_setup so it doesn't
diff --git a/app-sci/xephem/xephem-3.5.2.ebuild b/app-sci/xephem/xephem-3.5.2.ebuild
index c6869c813337..61c8158f0cad 100644
--- a/app-sci/xephem/xephem-3.5.2.ebuild
+++ b/app-sci/xephem/xephem-3.5.2.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/xephem/xephem-3.5.2.ebuild,v 1.10 2003/09/06 22:23:06 msterret Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/xephem/xephem-3.5.2.ebuild,v 1.11 2004/04/19 12:57:53 phosphan Exp $
-S=${WORKDIR}/${P}
DESCRIPTION="XEphem is the X Windows Ephemeris, and provides a scientific-grade solar system model, star charts, sky views, plus a whole lot more."
SRC_URI="${PN}-${PV}.tar.gz"
HOMEPAGE="http://www.clearskyinstitute.com/xephem"
KEYWORDS="x86 ppc"
+IUSE=""
SLOT="0"
LICENSE="as-is"
DEPEND="x11-libs/openmotif"
@@ -22,20 +22,17 @@ pkg_setup() {
src_compile() {
cd libastro
- mv Makefile Makefile.orig
sed -e "s:CFLAGS=.*:CFLAGS=${CFLAGS} -ffast-math -Wall:" \
- Makefile.orig > Makefile
+ -i Makefile
emake || die
cd ../libip
- mv Makefile Makefile.orig
sed -e "s:CFLAGS=*:CFLAGS=${CFLAGS} -I../libastro -ffast-math -Wall:" \
- Makefile.orig > Makefile
+ -i Makefile
emake || die
cd ../GUI/xephem
xmkmf
- mv Makefile Makefile.orig
sed -e "s:CDEBUGFLAGS = .*:CDEBUGFLAGS = ${CFLAGS} -fno-strength-reduce:" \
- Makefile.orig > Makefile
+ -i Makefile
emake || die
}