From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/librecad/
Date: Tue, 13 May 2025 20:48:51 +0000 (UTC) [thread overview]
Message-ID: <1747168949.f8e6153b20808e3c5589d86d3645395b51c8f56b.asturm@gentoo> (raw)
commit: f8e6153b20808e3c5589d86d3645395b51c8f56b
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue May 13 20:38:36 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue May 13 20:42:29 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8e6153b
media-gfx/librecad: add 2.2.2_alpha1_pre20250509, restore KEYWORDS
Go forth and test.
Bug: https://bugs.gentoo.org/955171
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-gfx/librecad/Manifest | 1 +
.../librecad-2.2.2_alpha1_pre20250509.ebuild | 61 ++++++++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/media-gfx/librecad/Manifest b/media-gfx/librecad/Manifest
index aa6d23bbbe59..1b7e24f30ff6 100644
--- a/media-gfx/librecad/Manifest
+++ b/media-gfx/librecad/Manifest
@@ -1,2 +1,3 @@
DIST librecad-2.2.1.1.tar.gz 18597136 BLAKE2B ecb6a2576d606dd56fc1945fc435533beda09f2eb3d187cc348f9a27b23ff0b5cc3173a6ded9661e73baeab82f353478f7b89b445e34bb8202b9060c05f46dce SHA512 7fccbd697d4b48143681a7c0c5f988ff0e30e05453c6d3a8cb61496df01b5dd81ccd6205fe9dd560dd6c7cf92ff106eaf95fc27e897d712902ae7ec65d1a4ead
DIST librecad-2.2.2_alpha1_pre20250501-2f5b68f3.tar.gz 18797706 BLAKE2B 6cd9ed76a9d8a2430c1eaa775d3bcc722fcdac75eca8ada94ba265bce4b2162ac22968b801bcc56f3a58e530e749bad821f29dde5c1cdcc09c65481e0bf89fed SHA512 7bb94ad2ec19cf79b4f669f78b6abcfbd8e41b04b6aaf7fd8d764f18895c87fad113b719665fe7685d70a450e241571faeaf6c4981fd68a8f7810704d02bb944
+DIST librecad-2.2.2_alpha1_pre20250509-aea82bab.tar.gz 18797439 BLAKE2B cc597c9c4e5297abb0be889e685e4a1d55ad27919f3af4a37c053131757c6d6cde150a1c33384a06a7f9e0183f1d0693f53648e0823ecb63cc76aca32f494299 SHA512 995e9bd2fc95bff50b07290596ab85dc4c014f03e0aa843d617853496167a79fb27091018bc6d21c11751e496b12f5972134bedf5cad2d8f081a758035307a36
diff --git a/media-gfx/librecad/librecad-2.2.2_alpha1_pre20250509.ebuild b/media-gfx/librecad/librecad-2.2.2_alpha1_pre20250509.ebuild
new file mode 100644
index 000000000000..970d631bef17
--- /dev/null
+++ b/media-gfx/librecad/librecad-2.2.2_alpha1_pre20250509.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+COMMIT=aea82babdc0e6e9dc8cc4580abe08a579aa52186
+inherit desktop qmake-utils
+
+DESCRIPTION="Generic 2D CAD program"
+HOMEPAGE="https://www.librecad.org/"
+
+if [[ ${PV} == *9999* ]]; then
+ EGIT_REPO_URI="https://github.com/LibreCAD/LibreCAD.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/LibreCAD/LibreCAD/archive/${COMMIT}.tar.gz -> ${P}-${COMMIT:0:8}.tar.gz"
+ S="${WORKDIR}/LibreCAD-${COMMIT}"
+ KEYWORDS="~amd64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc tools"
+
+RDEPEND="
+ dev-cpp/muParser
+ dev-libs/boost:=
+ dev-qt/qtbase:6[gui,network,widgets]
+ dev-qt/qtsvg:6
+ media-libs/freetype:2
+"
+DEPEND="${RDEPEND}
+ dev-qt/qtbase:6[xml]
+ dev-qt/qttools:6[assistant]
+"
+BDEPEND="
+ dev-qt/qttools:6[linguist]
+"
+
+src_prepare() {
+ default
+
+ sed -e "/^LRELEASE/s:lrelease:$(qt6_get_bindir)/lrelease:" \
+ -i scripts/postprocess-unix.sh || die
+}
+
+src_configure() {
+ eqmake6 -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/metainfo
+ doins unix/appdata/org.librecad.librecad.appdata.xml
+ doicon librecad/res/images/${PN}.png
+ make_desktop_entry ${PN} LibreCAD ${PN} Graphics
+}
next reply other threads:[~2025-05-13 20:48 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-13 20:48 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-26 20:17 [gentoo-commits] repo/gentoo:master commit in: media-gfx/librecad/ Andreas Sturmlechner
2025-06-23 0:21 Sam James
2025-06-23 0:21 Sam James
2025-05-13 20:48 Andreas Sturmlechner
2025-05-06 18:17 Andreas Sturmlechner
2025-05-05 23:09 Sam James
2025-05-05 23:09 Sam James
2025-05-04 22:06 Andreas Sturmlechner
2025-05-01 10:05 Andreas Sturmlechner
2025-05-01 10:05 Andreas Sturmlechner
2025-05-01 10:05 Andreas Sturmlechner
2025-03-25 19:15 Andreas Sturmlechner
2025-03-24 19:31 Sam James
2025-03-24 19:31 Sam James
2025-02-13 2:57 Sam James
2025-01-05 11:42 Miroslav Šulc
2024-10-25 7:31 Yixun Lan
2024-09-22 7:20 Sam James
2024-09-22 7:20 Sam James
2024-06-30 0:00 Conrad Kostecki
2023-03-17 18:26 Sam James
2023-03-17 17:22 Sam James
2023-02-05 9:13 Joonas Niilola
2023-01-25 4:29 John Helmert III
2022-11-28 7:05 Joonas Niilola
2022-01-22 8:41 Yixun Lan
2021-05-09 19:12 Andreas Sturmlechner
2020-06-05 9:43 Andreas Sturmlechner
2020-05-29 7:39 Agostino Sarubbo
2020-05-20 12:25 Andreas Sturmlechner
2020-05-20 12:25 Andreas Sturmlechner
2019-08-15 19:47 Slawek Lis
2019-02-02 21:07 Sergei Trofimovich
2018-12-16 23:53 Andreas Sturmlechner
2018-09-09 8:27 Mikle Kolyada
2018-09-02 23:46 Thomas Deutschmann
2018-07-01 0:03 Andreas Sturmlechner
2018-06-03 13:49 Aaron Bauman
2018-01-22 8:40 Jeroen Roovers
2018-01-15 22:01 Andreas Sturmlechner
2018-01-15 22:01 Andreas Sturmlechner
2018-01-15 22:01 Andreas Sturmlechner
2018-01-15 19:03 Tobias Klausmann
2017-11-27 6:50 Slawek Lis
2017-11-18 13:08 Jeroen Roovers
2017-10-31 18:07 Andreas Hüttel
2017-10-26 18:54 Thomas Deutschmann
2016-11-22 6:37 Slawek Lis
2016-11-22 6:37 Slawek Lis
2016-04-07 20:25 Sergei Trofimovich
2016-01-19 8:34 Patrice Clement
2016-01-19 8:34 Patrice Clement
2016-01-19 8:34 Patrice Clement
2015-09-13 20:27 Anthony G. Basile
2015-09-13 19:24 Slawek Lis
2015-09-08 6:30 Slawek Lis
2015-09-02 5:56 Slawek Lis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1747168949.f8e6153b20808e3c5589d86d3645395b51c8f56b.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox