diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-08-12 16:48:14 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-08-12 16:48:14 +0000 |
commit | da53afb4411aa094cbd3e54bc8f81cfe493ef957 (patch) | |
tree | 079aea4e098da1e47cef1a83a73dfcd6dd99ec2c /app-misc | |
parent | Fixed the ChangeLog (diff) | |
download | gentoo-2-da53afb4411aa094cbd3e54bc8f81cfe493ef957.tar.gz gentoo-2-da53afb4411aa094cbd3e54bc8f81cfe493ef957.tar.bz2 gentoo-2-da53afb4411aa094cbd3e54bc8f81cfe493ef957.zip |
New package. Submitted by Bret Towe. Fixes #6073
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/xearth/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/xearth/files/digest-xearth-1.1 | 1 | ||||
-rw-r--r-- | app-misc/xearth/xearth-1.1.ebuild | 30 |
3 files changed, 41 insertions, 0 deletions
diff --git a/app-misc/xearth/ChangeLog b/app-misc/xearth/ChangeLog new file mode 100644 index 000000000000..1f5a317771ea --- /dev/null +++ b/app-misc/xearth/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-misc/xearth +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/xearth/ChangeLog,v 1.1 2002/08/12 16:48:14 rphillips Exp $ + +*xearth-1.1 (12 Aug 2002) + + 12 Aug 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Initial ebuild in portage. Thanks to Bret Towe for the ebuild. + diff --git a/app-misc/xearth/files/digest-xearth-1.1 b/app-misc/xearth/files/digest-xearth-1.1 new file mode 100644 index 000000000000..7422d1404d84 --- /dev/null +++ b/app-misc/xearth/files/digest-xearth-1.1 @@ -0,0 +1 @@ +MD5 6e409dffaa8dc5fae1064e38935ab61f xearth-1.1.tar.gz 157887 diff --git a/app-misc/xearth/xearth-1.1.ebuild b/app-misc/xearth/xearth-1.1.ebuild new file mode 100644 index 000000000000..0575db709175 --- /dev/null +++ b/app-misc/xearth/xearth-1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later + +S=${WORKDIR}/${P} +HOMEPAGE="http://www.cs.colorado.edu/~tuna/xearth/" +DESCRIPTION="Xearth sets the X root window to an image of the Earth" +SRC_URI="ftp://cag.lcs.mit.edu/pub/tuna/xearth-${PV}.tar.gz + ftp://ftp.cs.colorado.edu/users/tuna/xearth-${PV}.tar.gz" + +SLOT="0" +LICENSE="xearth" +KEYWORDS="x86" + +DEPEND="virtual/x11" +RDEPEND="virtual/x11" + +src_compile() { + cd ${S} + xmkmf || die + mv Makefile Makefile.orig + sed -e "s:CDEBUGFLAGS = .*:CDEBUGFLAGS = ${CFLAGS} -fno-strength-reduce:" \ + Makefile.orig > Makefile + emake || die +} + +src_install() { + doman xearth.man + dobin xearth + dodoc BUILT-IN GAMMA-TEST HISTORY INSTALL README +} |