aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortimcera <timcera@32389bae-6d03-0410-99cf-db05cde120eb>2008-05-16 23:50:06 +0000
committertimcera <timcera@32389bae-6d03-0410-99cf-db05cde120eb>2008-05-16 23:50:06 +0000
commit7dba497142a38d5b17cb9c19fa9de3796022a7a9 (patch)
treea7b1c948b1dc0b917db8fc3f617c7ea2fed4c43b
parentUtilities for the creation and restoration of Tidal Constituent Database files. (diff)
downloadsci-7dba497142a38d5b17cb9c19fa9de3796022a7a9.tar.gz
sci-7dba497142a38d5b17cb9c19fa9de3796022a7a9.tar.bz2
sci-7dba497142a38d5b17cb9c19fa9de3796022a7a9.zip
Initial import of xtide. A tidal prediction program that has graphical interfaces and a web server.
git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@1069 32389bae-6d03-0410-99cf-db05cde120eb
-rw-r--r--sci-geosciences/xtide/ChangeLog8
-rw-r--r--sci-geosciences/xtide/Manifest4
-rw-r--r--sci-geosciences/xtide/metadata.xml12
-rw-r--r--sci-geosciences/xtide/xtide-2.10.ebuild25
4 files changed, 49 insertions, 0 deletions
diff --git a/sci-geosciences/xtide/ChangeLog b/sci-geosciences/xtide/ChangeLog
new file mode 100644
index 000000000..2acd7c853
--- /dev/null
+++ b/sci-geosciences/xtide/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for sci-geosciences/xtide
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+ 16 May 2008; Tim Cera <timcera@earthlink.net> +xtide-2.10.ebuild,
+ +metadata.xml:
+ Initial import.
+
diff --git a/sci-geosciences/xtide/Manifest b/sci-geosciences/xtide/Manifest
new file mode 100644
index 000000000..9f4b8ad97
--- /dev/null
+++ b/sci-geosciences/xtide/Manifest
@@ -0,0 +1,4 @@
+DIST xtide-2.10.tar.bz2 393882 RMD160 1023239beff2badb73b7ba6642b0f40b09ab72c3 SHA1 f72c1a73e3718656be0a59e16866bf6c83c285a4 SHA256 3b19ae183149c07733580b1ce5e7c2d330efecb4e8817fafed9a74daf4388ab5
+EBUILD xtide-2.10.ebuild 656 RMD160 7045e4115d744ab182e814bd46756e5f6c2b7056 SHA1 c82b874f66ba662ae5a2259241dca4ddf660a2e1 SHA256 3bdca50271a1b6b8d071f66d83fabf47df189b333376627964da3db8bade1507
+MISC ChangeLog 0 RMD160 9c1185a5c5e9fc54612808977ee8f548b2258d31 SHA1 da39a3ee5e6b4b0d3255bfef95601890afd80709 SHA256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
+MISC metadata.xml 156 RMD160 dc078172bfebcb25d69bdf8731714f9cce9d3e36 SHA1 da2b240a255820145b7c83a5c48e45b96b7e9ee6 SHA256 5d22100902db7507a5b5493dd4a66cdb08025faf80a2c0b75e6392315c47f900
diff --git a/sci-geosciences/xtide/metadata.xml b/sci-geosciences/xtide/metadata.xml
new file mode 100644
index 000000000..4e59bc227
--- /dev/null
+++ b/sci-geosciences/xtide/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<maintainer>
+<email>timcera@earthlink.net</email>
+<name>Tim Cera</name>
+</maintainer>
+<longdescription lang="en">
+XTide provides tide and current predictions in a wide variety of formats.
+</longdescription>
+</pkgmetadata>
diff --git a/sci-geosciences/xtide/xtide-2.10.ebuild b/sci-geosciences/xtide/xtide-2.10.ebuild
new file mode 100644
index 000000000..ed907e6a3
--- /dev/null
+++ b/sci-geosciences/xtide/xtide-2.10.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+DESCRIPTION="XTide provides tide and current predictions in a wide variety of formats."
+HOMEPAGE="http://www.flaterco.com/xtide/"
+SRC_URI="ftp://ftp.flaterco.com/xtide/${P}.tar.bz2"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+DEPEND=">=sci-geosciences/libtcd-2.2.3"
+RDEPEND="${DEPEND}"
+
+src_install() {
+ dobin xtide tide xttpd
+ doman *.[18]
+ tcd_paths=`find /usr/share/harmonics-dwf-free* -name '*.tcd'`
+ for t in ${tcd_paths}; do
+ echo -n ${t} >> xtide.conf
+ echo -n ':' >> xtide.conf
+ done
+ insinto /etc
+ doins xtide.conf
+}