# 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="vstsdk2.3.zip" LICENSE="STEINBERG SOFT- UND HARDWARE GMBH" SLOT="0" KEYWORDS="~x86" DEPEND="" VST_BASE="/opt/vstsdk2.3" 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 ${VST_BASE} chmod -R g-w,o-w ${WORKDIR}/vstsdk2.3 cp -R ${WORKDIR}/vstsdk2.3/* ${D}/${VST_BASE} } pkg_postinst() { echo einfo "Finished installing Steinberg VST Plug-Ins SDK 2.3 into" einfo "${VST_BASE}" einfo "" einfo "PLEASE READ THE LICENSE IN" einfo "${VST_BASE}/VST Licensing Agreement.html" einfo "${VST_BASE}/VST Licensing Agreement.rtf" }