aboutsummaryrefslogtreecommitdiff
blob: ac8780dbf33a834e27eb93769bbad8b162db1505 (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
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils versionator

MY_PV=$(delete_all_version_separators)

MY_SRC="swmm${MY_PV}_engine.zip"

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/nrmrl/wswrd/wq/models/swmm/${MY_SRC}"

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc"

DEPEND="app-arch/unzip"
RDEPEND=""

S="${WORKDIR}/${PN}"

src_unpack() {
	mkdir "${S}" && cd "${S}"
	unpack "${MY_SRC}"
	# 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;//#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 Roadmap.txt
	fi
}