aboutsummaryrefslogtreecommitdiff
blob: cb8ac2d032553f979f70d1702ca1712fc9537d7b (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

AUTOTOOLS_AUTORECONF=y

inherit autotools-utils flag-o-matic

DESCRIPTION="The USF program suite"
HOMEPAGE="http://xray.bmc.uu.se/usf/"
SRC_URI="
	http://xray.bmc.uu.se/markh/usf/usf_distribution_kit.tar.gz -> ${P}.tar.gz
	http://dev.gentoo.org/~jlec/distfiles/mark-20110912.tgz"

SLOT="0"
LICENSE="all-rights-reserved"
KEYWORDS=""
IUSE=""

RDEPEND=""
DEPEND="${RDEPEND}
"

S="${WORKDIR}"/usf_export

src_unpack() {
	unpack ${P}.tar.gz
	cd "${S}"
	unpack mark-20110912.tgz
}

src_prepare() {
	local src
	append-fflags -ffixed-line-length-132
	for src in \
		ave coma comap comdem dataman essens imp lsqman mama mapfix \
		mapman mave ncs6d o2d prof solex spancsi; do
			mv ${src}/${src}.{f,F} || die
	done
	autotools-utils_src_prepare
}