# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ MY_PN="OpenSceneGraph-Data" DESCRIPTION="3d gfx data files for OpenSceneGraph" SRC_URI="http://www.openscenegraph.org/downloads/data/${MY_PN}-${PV}.zip" HOMEPAGE="http://www.openscenegraph.org/" SLOT=0 LICENSE="LGPL-2.1" KEYWORDS="~x86" IUSE="" DEPEND="" RDEPEND="" S=${WORKDIR}/${MY_PN} src_install() { insinto /usr/share/OpenSceneGraph/data #installes files in main directory doins * #installs files in subdirectories for dir in *; do if [ -d $dir ]; then insinto /usr/share/OpenSceneGraph/data/${dir} doins ${dir}/* fi done } pkg_postinst() { has_version dev-libs/OpenSceneGraph || einfo "OpenSceneGraph-Data is normally used with OpenSceneGraph (although this is not required)" }