diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-15 22:59:53 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-01-15 23:01:19 +0100 |
commit | 26baf411d8389b060345bd6be4b91003bcd77f8c (patch) | |
tree | c667c93a814338896cfa611df1e99208a1786764 /media-gfx | |
parent | media-gfx/librecad: Drop bogus qt4 and qt5 USE flags (diff) | |
download | gentoo-26baf411d8389b060345bd6be4b91003bcd77f8c.tar.gz gentoo-26baf411d8389b060345bd6be4b91003bcd77f8c.tar.bz2 gentoo-26baf411d8389b060345bd6be4b91003bcd77f8c.zip |
media-gfx/librecad: Drop 2.1.3-r1
Closes: https://bugs.gentoo.org/631808
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/librecad/librecad-2.1.3-r1.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/media-gfx/librecad/librecad-2.1.3-r1.ebuild b/media-gfx/librecad/librecad-2.1.3-r1.ebuild deleted file mode 100644 index 0c5f0aeb2564..000000000000 --- a/media-gfx/librecad/librecad-2.1.3-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils qmake-utils - -DESCRIPTION="Generic 2D CAD program" -HOMEPAGE="http://www.librecad.org/" -SRC_URI="https://github.com/LibreCAD/LibreCAD/archive/${PV/_/}.zip -> ${P}.zip" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" - -IUSE="3d debug doc tools qt4 +qt5" -REQUIRED_USE="|| ( qt4 qt5 )" - -DEPEND=" - qt4? ( - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtsvg:4 - dev-qt/qthelp:4 - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qthelp:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - ) - dev-libs/boost:= - dev-cpp/muParser - media-libs/freetype:2" - -RDEPEND="${DEPEND}" -S="${WORKDIR}/LibreCAD-${PV}" - -src_prepare() { -# epatch "${FILESDIR}/iota-fix-2.1.1.patch" - - # currently RS_VECTOR3D causes an internal compiler error on GCC-4.8 - if ! use 3d; then - sed -i -e '/RS_VECTOR2D/ s/^#//' librecad/src/src.pro || die - fi -} - -src_configure() { - if use qt4; then - eqmake4 -r - else - eqmake5 -r - fi -} - -src_install() { - dobin unix/librecad - use tools && dobin unix/ttf2lff - insinto /usr/share/${PN} - doins -r unix/resources/* - use doc && docinto html && dodoc -r librecad/support/doc/* - insinto /usr/share/appdata - doins unix/appdata/librecad.appdata.xml - doicon librecad/res/main/${PN}.png - make_desktop_entry ${PN} LibreCAD ${PN} Graphics -} |