blob: 48ebfb40fb42e025a9c3bfb9515ce538ef0dc024 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/nco/nco-2.2.0.ebuild,v 1.3 2003/02/13 09:23:47 vapier Exp $
IUSE=""
DESCRIPTION="Command line utilities for operating on netCDF files"
SRC_URI="http://telia.dl.sourceforge.net/sourceforge/nco/${P}.tar.gz"
HOMEPAGE="http://nco.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="app-sci/netcdf"
src_compile() {
mkdir -p obj
cd bld
emake || die
}
src_install() {
dobin bin/*
dolib lib/*
dodoc doc/*
}
|