gentoo/dev-libs/boron/boron-2.1.0.ebuild
Michał Górny bd0ee727e0
dev-*/*: update for virtual/zlib
Update done using:

```
git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error
```

Followed by manual revert in dev-python/zlib-ng where it accidentally
caught sys-libs/zlib-ng dependencies.

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 09:07:26 +01:00

38 lines
712 B
Bash

# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo toolchain-funcs
DESCRIPTION="A scripting language similar to REBOL"
HOMEPAGE="https://urlan.sourceforge.net/boron/"
SRC_URI="https://downloads.sourceforge.net/urlan/${P}.tar.gz"
LICENSE="LGPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bzip2 readline"
DEPEND="
bzip2? ( app-arch/bzip2:= )
!bzip2? ( virtual/zlib:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-2.1.0_makefile.patch"
)
src_configure() {
tc-export CC
# Non-standard configure
edo ./configure \
$(usex bzip2 "--bzip2" "")
}
src_install() {
emake DESTDIR="${D}/usr" install install-dev
dodoc README.md
}