diff options
Diffstat (limited to 'media-gfx/librecad/librecad-9999.ebuild')
-rw-r--r-- | media-gfx/librecad/librecad-9999.ebuild | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/media-gfx/librecad/librecad-9999.ebuild b/media-gfx/librecad/librecad-9999.ebuild index ced0341bd..9a5c5d532 100644 --- a/media-gfx/librecad/librecad-9999.ebuild +++ b/media-gfx/librecad/librecad-9999.ebuild @@ -2,41 +2,38 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=4 - -inherit qt4-r2 git-2 +EAPI="4" +inherit qt4-r2 git-2 flag-o-matic DESCRIPTION="An generic 2D CAD program" HOMEPAGE="http://www.librecad.org/" -EGIT_REPO_URI="https://github.com/LibreCAD/LibreCAD.git" - LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug doc" -DEPEND=" +EGIT_REPO_URI="https://github.com/LibreCAD/LibreCAD.git" + +DEPEND="${RDEPEND} x11-libs/qt-assistant:4 dev-libs/boost - " -RDEPEND="${DEPEND}" +" src_prepare() { - # patch to solve an issue caused by gcc-4.6, by mickele, archlinux - sed \ - -e "s|LiteralMask<Value_t, n>::mask;|LiteralMask<Value_t, static_cast<unsigned int>(n)>::mask;|" \ - -e "s|SimpleSpaceMask<n>::mask;|SimpleSpaceMask<static_cast<unsigned int>(n)>::mask;|" \ - -i fparser/fparser.cc || die + #sed -i -e "s:\\\$\+system(git describe --tags):9999:" src/src.pro + #enable C++11 by default + sed -i -e '/HAS_CPP11/ s/^#//' src/src.pro + sed -i -e '/RS_VECTOR2D/ s/^#//' src/src.pro } -src_install() { - qt4-r2_src_install +src_install() +{ dobin unix/librecad insinto /usr/share/"${PN}" doins -r unix/resources/* if use doc ; then - dohtml -r support/doc/* + dohtml -r support/doc/* fi doicon res/main/"${PN}".png - make_desktop_entry "${PN}" LibreCAD "${PN}.png" Graphics + make_desktop_entry "${PN}" LibreCAD "${PN}" Graphics } |