diff options
Diffstat (limited to 'sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild')
-rw-r--r-- | sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild b/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild new file mode 100644 index 000000000000..cf4ddee63fd3 --- /dev/null +++ b/sci-electronics/quartus-prime-lite/quartus-prime-lite-15.1.0.185-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils + +DESCRIPTION="Full-featured EDA product for altera devices" +HOMEPAGE="https://www.altera.com/products/design-software/fpga-design/quartus-prime/overview.html" +SRC_URI="Quartus-lite-${PV}-linux.tar + https://github.com/brendanhoran/gentoo-custom/raw/master/files/libfreetype.so.6" +# variable to store the download URLS +DOWNLOADPAGE="http://dl.altera.com/?edition=lite" +DOWNLOADFT="https://raw.githubusercontent.com/brendanhoran/gentoo-custom/master/files/libfreetype.so.6" + +LICENSE="Quartus-prime-megacore" +SLOT="0" + +# No keywords as per bug 575684 +KEYWORDS="" + +RDEPEND="media-libs/libpng:1.2[abi_x86_32] + x11-libs/libXft[abi_x86_32] + app-arch/bzip2[abi_x86_32] + sys-libs/zlib[abi_x86_32] + sys-libs/glibc[multilib]" + +RESTRICT="fetch bindist" + +S=${WORKDIR} + +pkg_nofetch() { + elog "Due to licensing restrictions, and old libary versions." + elog "You need to download the distfiles manually." + elog "-------------------------------------------------------" + elog "For Quartus :" + elog "Please navigate to ${DOWNLOADPAGE}" + elog "Sign in with your Altera account (you need to register)" + elog "Download Quartus-lite-${PV}-linux.tar and place it into ${DISTDIR}" + elog "-------------------------------------------------------" + elog "For Freetype libary :" + elog "Please download the following file :" + elog "${DOWNLOADFT}" + elog "Please place this into ${DISTDIR}" + elog "-------------------------------------------------------" + elog "And restart the installation." +} + +pkg_pretend() { + einfo "The checksum and unpack will take quite some time to run" +} + +src_install() { + einfo "The Quartus install runs in unattended mode" + einfo "you wont see much and it will take a long time" + + ./setup.sh --mode unattended --unattendedmodeui none \ + --installdir "${D}/opt/quartus-lite-${PV}" || die + make_desktop_entry "/opt/quartus-lite-${PV}/quartus/bin/quartus" \ + "Quartus lite ${PV}" "/opt/quartus-lite-${PV}/quartus/adm/quartusii.png" + pushd "${D}" + # Patch qenv to find extra 32bit libs + epatch "${FILESDIR}/${P}-qenv-lib32.patch" + # fix vso launcher for 32bit libs and linux kernel versions + epatch "${FILESDIR}/${P}-vso-launcher.patch" + dodir "opt/quartus-lite-${PV}/modelsim_ase/lib32" + insinto "opt/quartus-lite-${PV}/modelsim_ase/lib32" + # Copy over the old freetype lib + doins "${PORTAGE_BUILDDIR}/distdir/libfreetype.so.6" +} + +pkg_postinst() { + elog "To launch Quartus, run /opt/quartus-lite-${PV}/quartus/bin/quartus" + ewarn "This ebuild bundles a vulnerable and old freetype library" + ewarn "Sadly this is needed for vsim. You have been warned" +} |