aboutsummaryrefslogtreecommitdiff
blob: 25af9a12d3dd32cff66d8c2168ccb91c50930700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="4"
inherit qt4-r2 git-2 flag-o-matic

DESCRIPTION="An generic 2D CAD program"
HOMEPAGE="http://www.librecad.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc"

EGIT_REPO_URI="https://github.com/LibreCAD/LibreCAD.git"

DEPEND="${RDEPEND}
	x11-libs/qt-assistant:4
	dev-libs/boost
	dev-cpp/muParser
	media-libs/freetype
"

src_prepare() {
	#sed -i -e "s:\\\$\+system(git describe --tags):9999:" src/src.pro
	#enable C++11 by default
	append-cppflags "-std=c++0x"
	sed -i -e '/RS_VECTOR2D/ s/^#//' librecad/src/src.pro
}

src_install()
{
	dobin unix/librecad
	insinto /usr/share/"${PN}"
	doins -r unix/resources/*
	if use doc ; then
	dohtml -r support/doc/*
	fi
	doicon res/main/"${PN}".png
	make_desktop_entry "${PN}" LibreCAD "${PN}" Graphics
}