# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # # install proprietary Steinberg VST SDK 2.3 to "/opt/vstsdk2.3" # bug #61290 inherit eutils RESTRICT="nostrip fetch" DESCRIPTION="Steinberg VST Plug-Ins SDK 2.3" HOMEPAGE="http://www.steinberg.de/331+M54a708de802.html" SRC_URI="x86? ( vstsdk2.3.zip )" LICENSE="STEINBERG SOFT-UND HARDWARE GMBH" SLOT="0" KEYWORDS="~x86" DEPEND="${DEPEND}" BASE="/opt" S=${WORKDIR} pkg_nofetch() { einfo "Please go to ${HOMEPAGE}," einfo "download the appropriate sdk zip archive for win32" einfo "(${A})" einfo "and place it in ${DISTDIR}" einfo " " ewarn "YOU MUST AGREE TO THE LICENSE TERMS LISTED AT THE" ewarn "STEINBERG HOMEPAGE" } src_compile() { return } src_install() { dodir "${BASE}" chmod -R g-w,o-w "${S}/vstsdk2.3" mv "${S}/vstsdk2.3" "${D}/${BASE}" } pkg_postinst() { echo einfo "Finished installing Steinberg VST Plug-Ins SDK 2.3 into" einfo "${BASE}/vstsdk2.3" einfo " " einfo "PLEASE READ THE LICENSE IN" einfo "${BASE}/vstsdk2.3/VST Licensing Agreement.html" einfo "${BASE}/vstsdk2.3/VST Licensing Agreement.rtf" }