From: "William Breathitt Gray" <vilhelm.gray@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc/
Date: Mon, 28 Dec 2020 23:14:19 +0000 (UTC) [thread overview]
Message-ID: <1609197241.0d80101be5b3d381f41973b0be9436cb43972d0c.vilhelm.gray@gentoo> (raw)
commit: 0d80101be5b3d381f41973b0be9436cb43972d0c
Author: William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
AuthorDate: Mon Dec 28 23:10:57 2020 +0000
Commit: William Breathitt Gray <vilhelm.gray <AT> gmail <DOT> com>
CommitDate: Mon Dec 28 23:14:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0d80101b
dev-lang/fbc: Add fbc-bootstrap as a BDEPEND
This allows bootstrapping logic to move to the dedicated
dev-lang/fbc-bootstrap package thus simplifying the ebuild.
Signed-off-by: William Breathitt Gray <vilhelm.gray <AT> gmail.com>
dev-lang/fbc/fbc-1.07.2-r2.ebuild | 61 +++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/dev-lang/fbc/fbc-1.07.2-r2.ebuild b/dev-lang/fbc/fbc-1.07.2-r2.ebuild
new file mode 100644
index 00000000..2d430eea
--- /dev/null
+++ b/dev-lang/fbc/fbc-1.07.2-r2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A free/open source, multi-platform BASIC compiler."
+HOMEPAGE="https://www.freebasic.net"
+SRC_URI="https://github.com/freebasic/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="FDL-1.2 GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gpm libffi opengl X"
+
+DEPEND="
+ sys-libs/ncurses:=
+ gpm? ( sys-libs/gpm )
+ libffi? ( dev-libs/libffi )
+ opengl? ( virtual/opengl )
+ X? (
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXpm
+ x11-libs/libXrandr
+ x11-libs/libXrender
+ )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="|| (
+ dev-lang/fbc
+ dev-lang/fbc-bootstrap )"
+
+DOCS="${S}/doc/fbc.1"
+
+src_compile() {
+ local xcflags=(
+ $(usex gpm "" "-DDISABLE_GPM")
+ $(usex libffi "" " -DDISABLE_FFI")
+ $(usex opengl "" " -DDISABLE_OPENGL")
+ $(usex X "" " -DDISABLE_X11")
+ )
+
+ local fbc="fbc"
+ local fbcflags=""
+ # fbc requires a space after the -Wl option
+ local fblflags="${LDFLAGS//-Wl,/-Wl }"
+
+ if has_version -b dev-lang/fbc-bootstrap; then
+ fbc="fbc-bootstrap"
+ fbcflags="-prefix ${EPREFIX}/usr/share/freebasic-bootstrap"
+ fblflags+=" -prefix ${EPREFIX}/usr/share/freebasic-bootstrap"
+ fi
+
+ # Build fbc
+ emake CFLAGS="${CFLAGS} ${xcflags[*]} -I/usr/$(get_libdir)/libffi/include" FBC="${fbc}" FBCFLAGS="${fbcflags}" FBLFLAGS="${fblflags}" TARGET="${CHOST}"
+}
+
+src_install() {
+ emake DESTDIR="${D}" prefix="/usr" TARGET="${CHOST}" install
+ einstalldocs
+}
next reply other threads:[~2020-12-28 23:14 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-28 23:14 William Breathitt Gray [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-11 9:09 [gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fbc/ Takuya Wakazono
2024-11-11 9:09 Takuya Wakazono
2021-09-08 2:37 William Breathitt Gray
2021-05-05 7:32 Alessandro Barbieri
2021-04-29 12:07 William Breathitt Gray
2021-04-29 11:58 William Breathitt Gray
2021-04-12 0:58 William Breathitt Gray
2020-12-27 0:03 Alessandro Barbieri
2020-03-09 17:55 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-03-09 17:48 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2019-05-19 3:49 William Breathitt Gray
2019-05-14 12:00 William Breathitt Gray
2019-04-29 3:59 William Breathitt Gray
2019-04-29 3:00 William Breathitt Gray
2019-04-29 2:40 William Breathitt Gray
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=1609197241.0d80101be5b3d381f41973b0be9436cb43972d0c.vilhelm.gray@gentoo \
--to=vilhelm.gray@gmail.com \
--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