diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-12-27 21:20:23 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-12-27 21:20:23 +0000 |
commit | 82414379c59609425c1f38bc483ebd48fe41541c (patch) | |
tree | fa6715324ba7c25c0288609ca15f3f8fa00ea1c5 /sci-misc/nco/nco-2.9.1.ebuild | |
parent | Moving to sci-misc/nco (diff) | |
download | gentoo-2-82414379c59609425c1f38bc483ebd48fe41541c.tar.gz gentoo-2-82414379c59609425c1f38bc483ebd48fe41541c.tar.bz2 gentoo-2-82414379c59609425c1f38bc483ebd48fe41541c.zip |
Moved from app-sci/nco to sci-misc/nco.
Diffstat (limited to 'sci-misc/nco/nco-2.9.1.ebuild')
-rw-r--r-- | sci-misc/nco/nco-2.9.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sci-misc/nco/nco-2.9.1.ebuild b/sci-misc/nco/nco-2.9.1.ebuild new file mode 100644 index 000000000000..a107624a2fb7 --- /dev/null +++ b/sci-misc/nco/nco-2.9.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/nco/nco-2.9.1.ebuild,v 1.1 2004/12/27 21:20:23 ribosome Exp $ + +IUSE="" + +DESCRIPTION="Command line utilities for operating on netCDF files" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +HOMEPAGE="http://nco.sourceforge.net/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="app-sci/netcdf" + +src_compile() { + econf || die "econf failed" + emake + + #need to make info + cd doc + make +} + +src_install() { + DESTDIR=${D} make install + + cd doc + dodoc ANNOUNCE ChangeLog LICENSE MANIFEST NEWS README TAG TODO VERSION *.txt + dohtml *.shtml + doinfo *.info* +} |