forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-gfx/librecad: version bump to 2.1.1
Reported in bug 592234 Reported-by: [email protected] Package-Manager: portage-2.3.0
- Loading branch information
Slawomir Lis
committed
Sep 5, 2016
1 parent
48d6b83
commit 54efa11
Showing
3 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- librecad/src/lib/engine/rs_spline.cpp.old 2016-06-20 20:43:27.000000000 +0200 | ||
+++ librecad/src/lib/engine/rs_spline.cpp 2016-09-05 13:23:25.459841304 +0200 | ||
@@ -26,6 +26,7 @@ | ||
|
||
#include<iostream> | ||
#include<cmath> | ||
+#include<numeric> | ||
#include "rs_spline.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
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 && insinto 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 | ||
} |