# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="toolbox for simulation of neural network algorithms" HOMEPAGE="http://www.ncrg.aston.ac.uk/netlab/" SRC_URI="http://www.ncrg.aston.ac.uk/netlab/netlab.zip http://www.ncrg.aston.ac.uk/netlab/nethelp.zip" LICENSE="BSD" SLOT="0" KEYWORDS="~x86" USE="" DEPEND=">=app-sci/octave-2.1.49" src_unpack() { mkdir lib mkdir doc cd lib unpack netlab.zip cd ../doc unpack nethelp.zip } src_install() { dodir /usr/share/octave/site/m/netlab insinto /usr/share/octave/site/m/netlab doins ${WORKDIR}/lib/* dohtml ${WORKDIR}/doc/* } pkg_postinst() { cd /usr/share/octave ls -R > ls-R } pkg_postrm() { cd /usr/share/octave ls -R > ls-R }