aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2009-12-14 13:45:18 +0300
committerAlexey Shvetsov <alexxy@gentoo.org>2009-12-14 13:45:18 +0300
commit814f78476987bae1c1ccb5d20d4df2ef40516a5b (patch)
treea821dd56d8acfd91606db52b66fd6b9d70c79868 /sci-geosciences
parentVersion bump. Removed documentation since upstream changes without (diff)
downloadsci-814f78476987bae1c1ccb5d20d4df2ef40516a5b.tar.gz
sci-814f78476987bae1c1ccb5d20d4df2ef40516a5b.tar.bz2
sci-814f78476987bae1c1ccb5d20d4df2ef40516a5b.zip
[sci-geosciences/swmm] Update manifest and remove stale ebuild
Diffstat (limited to 'sci-geosciences')
-rw-r--r--sci-geosciences/swmm/swmm-5.0.015.ebuild54
1 files changed, 0 insertions, 54 deletions
diff --git a/sci-geosciences/swmm/swmm-5.0.015.ebuild b/sci-geosciences/swmm/swmm-5.0.015.ebuild
deleted file mode 100644
index a24711e64..000000000
--- a/sci-geosciences/swmm/swmm-5.0.015.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit eutils
-
-DESCRIPTION="Storm Water Management Model - SWMM, hydrology, hydraulics, and
-water quality model."
-HOMEPAGE="http://www.epa.gov/ednnrmrl/models/swmm/index.htm"
-SRC_URI="http://www.epa.gov/ednnrmrl/models/swmm/epaswmm5_engine.zip
- doc? ( http://www.epa.gov/ednnrmrl/models/swmm/epaswmm5_user_manual.pdf
- http://www.epa.gov/ednnrmrl/models/swmm/epaswmm5_updates.txt )"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc"
-
-DEPEND=""
-RDEPEND=""
-
-S="${WORKDIR}/${PN}"
-
-src_unpack() {
- mkdir "${S}" && cd "${S}"
- unpack epaswmm5_engine.zip
- # Need to delete Readme.txt, because it is in makefiles.zip
- rm Readme.txt
- unpack ./makefiles.zip
- unpack ./GNU_CON.zip
- unpack ./source.ZIP
-}
-
-
-src_compile(){
- # 'sed' command has to accomodate DOS formatted file.
- sed -i \
- -e 's;^#define DLL.*$;;' \
- -e 's;^//#define CLE;#define CLE;' \
- swmm5.c
- emake || die "compile failed"
-}
-
-
-src_install(){
- # Don't like the version number in the name.
- mv swmm5 swmm
- dobin swmm
- if use doc ; then
- dodoc "${DISTDIR}"/epaswmm5_manual.pdf
- dodoc "${DISTDIR}"/epaswmm5_updates.txt
- dodoc Roadmap.txt
- fi
-}