diff options
author | 2013-11-14 09:48:04 -0500 | |
---|---|---|
committer | 2013-11-14 10:27:57 -0500 | |
commit | 91aa17e863c68f98ae535f1dec0828f2335c0b49 (patch) | |
tree | 3d4caeda3edbf494a25a22900f576c8bd863673a /media-gfx/librecad/librecad-1.0.4.ebuild | |
parent | sci-chemistry/pymol-plugins-psico: bump to git-r3 eclass (diff) | |
download | sci-91aa17e863c68f98ae535f1dec0828f2335c0b49.tar.gz sci-91aa17e863c68f98ae535f1dec0828f2335c0b49.tar.bz2 sci-91aa17e863c68f98ae535f1dec0828f2335c0b49.zip |
media-gfx/librecad: version bump 1.0.4 2.0.0rc3
Diffstat (limited to 'media-gfx/librecad/librecad-1.0.4.ebuild')
-rw-r--r-- | media-gfx/librecad/librecad-1.0.4.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/media-gfx/librecad/librecad-1.0.4.ebuild b/media-gfx/librecad/librecad-1.0.4.ebuild new file mode 100644 index 000000000..3c9374764 --- /dev/null +++ b/media-gfx/librecad/librecad-1.0.4.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3 + +inherit qt4-r2 eutils + +DESCRIPTION="An generic 2D CAD program" +HOMEPAGE="http://www.librecad.org/" +SRC_URI="https://github.com/LibreCAD/LibreCAD/archive/v1.0.3.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc" + +RDEPEND=" + dev-qt/qtgui[qt3support] + dev-qt/qthelp:4 + dev-qt/qt3support:4 + dev-cpp/muParser + " + +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + mv * ${P} +} + +src_prepare() { +sed -i -e "s:\\\$\+system(git describe --tags):1.0.3:" "${PN}.pro" +} + +src_install() { + dobin unix/librecad || die + insinto /usr/share/"${PN}" + doins -r unix/resources/* || die + if use doc ; then + dohtml -r support/doc/* + fi + doicon res/main/"${PN}".png + make_desktop_entry "${PN}" LibreCAD "${PN}.png" Graphics +} |