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: insinto -> docinto (bug #637950).
Package-Manager: Portage-2.3.20, Repoman-2.3.6
- Loading branch information
Jeroen Roovers
committed
Jan 22, 2018
1 parent
d35578d
commit a2e6741
Showing
2 changed files
with
57 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Copyright 1999-2018 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" | ||
|
||
DEPEND=" | ||
dev-cpp/muParser | ||
dev-libs/boost:= | ||
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 | ||
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() { | ||
eqmake5 -r | ||
} | ||
|
||
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 | ||
} |
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