diff options
author | 2024-01-01 17:04:42 +0100 | |
---|---|---|
committer | 2024-01-07 01:19:32 +0100 | |
commit | 4146c86f4b07ce17a9112d0d7a53ad8e12559a35 (patch) | |
tree | bde88a829f19a999c2b34da878670c063d02d892 /app-shells/squirrelsh | |
parent | app-shells/squirrelsh: use https, fix LICENSE, calling ar diretly, bug #722436 (diff) | |
download | gentoo-4146c86f4b07ce17a9112d0d7a53ad8e12559a35.tar.gz gentoo-4146c86f4b07ce17a9112d0d7a53ad8e12559a35.tar.bz2 gentoo-4146c86f4b07ce17a9112d0d7a53ad8e12559a35.zip |
app-shells/squirrelsh: remove old
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/34594
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-shells/squirrelsh')
-rw-r--r-- | app-shells/squirrelsh/squirrelsh-1.2.7.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/app-shells/squirrelsh/squirrelsh-1.2.7.ebuild b/app-shells/squirrelsh/squirrelsh-1.2.7.ebuild deleted file mode 100644 index 967f814b9f74..000000000000 --- a/app-shells/squirrelsh/squirrelsh-1.2.7.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Cross-platform object-oriented scripting shell using the squirrel language" -HOMEPAGE="https://squirrelsh.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.bz2" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="doc" - -RDEPEND="dev-libs/libpcre" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-rename-LDFLAGS.patch - "${FILESDIR}"/${PN}-no-strip.patch - "${FILESDIR}"/${PN}-fix-in_LDFLAGS.patch - "${FILESDIR}"/${PN}-remove-forced-abi.patch - "${FILESDIR}"/${PN}-no-docs.patch - "${FILESDIR}"/${P}-gcc6.patch -) - -src_configure() { - #This package uses a custom written configure script - ./configure --prefix="${D}"/usr \ - --with-librarian="$(tc-getAR) rc" \ - --with-cc="$(tc-getCC)" \ - --with-cpp="$(tc-getCXX)" \ - --with-linker="$(tc-getCXX)" \ - --libdir=/usr/"$(get_libdir)" \ - --with-pcre="system" \ - --with-squirrel="local" \ - --with-mime=no || die "configure failed" -} - -src_install() { - emake DESTDIR="${D}" install - doman doc/${PN}.1 - dodoc HISTORY INSTALL README - use doc && dodoc doc/*.pdf -} |