summaryrefslogtreecommitdiff
path: root/dev-lang/execline/execline-2.9.7.0.ebuild
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2025-05-05 15:33:07 +0200
committerPetr Vaněk <arkamar@gentoo.org>2025-05-05 17:23:28 +0200
commitcf59feeb8985d87c47356f96ef42dfd174f2ba88 (patch)
tree768cbf01f335668574401dc0430f899a3df59bf6 /dev-lang/execline/execline-2.9.7.0.ebuild
parent1954b43bcb4b50de400faac7812a4b13e7ae1f7b (diff)
downloadgentoo-cf59feeb8985d87c47356f96ef42dfd174f2ba88.tar.gz
gentoo-cf59feeb8985d87c47356f96ef42dfd174f2ba88.tar.bz2
gentoo-cf59feeb8985d87c47356f96ef42dfd174f2ba88.zip
dev-lang/execline: add 2.9.7.0
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'dev-lang/execline/execline-2.9.7.0.ebuild')
-rw-r--r--dev-lang/execline/execline-2.9.7.0.ebuild59
1 files changed, 59 insertions, 0 deletions
diff --git a/dev-lang/execline/execline-2.9.7.0.ebuild b/dev-lang/execline/execline-2.9.7.0.ebuild
new file mode 100644
index 000000000000..5c0ab6ee3604
--- /dev/null
+++ b/dev-lang/execline/execline-2.9.7.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature toolchain-funcs
+
+DESCRIPTION="A non-interactive scripting language"
+HOMEPAGE="https://www.skarnet.org/software/execline/"
+SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0/$(ver_cut 1-2).4"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND=">=dev-libs/skalibs-2.14.0.0:="
+DEPEND="${RDEPEND}"
+
+HTML_DOCS=( doc/. )
+
+PATCHES=(
+ "${FILESDIR}/${P}-pkgconfdir-configure.patch"
+)
+
+src_prepare() {
+ default
+
+ # Avoid QA warning for LDFLAGS addition
+ sed -i -e 's/.*-Wl,--hash-style=both$/:/' configure || die
+
+ sed -i -e '/AR := /d' -e '/RANLIB := /d' Makefile || die
+}
+
+src_configure() {
+ tc-export AR CC RANLIB
+
+ local myconf=(
+ --bindir=/bin
+ --dynlibdir="/$(get_libdir)"
+ --libdir="/usr/$(get_libdir)/${PN}"
+ --with-dynlib="/$(get_libdir)"
+ --with-lib="/usr/$(get_libdir)/skalibs"
+ --with-sysdeps="/usr/$(get_libdir)/skalibs"
+
+ --enable-pkgconfig
+ --pkgconfdir="/usr/$(get_libdir)/pkgconfig"
+
+ --enable-shared
+ --disable-allstatic
+ --disable-static
+ --disable-static-libc
+ )
+
+ econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+ optfeature "man pages" app-doc/execline-man-pages
+}