summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conikost@gentoo.org>2020-09-24 22:20:08 +0200
committerConrad Kostecki <conikost@gentoo.org>2020-09-24 22:20:08 +0200
commit912abc766edede6a7114f5d3a9cf0c60dd853eff (patch)
tree4727e81c4d9d7d281293731dd10319f04708b3ef /dev-util/statifier
parentsys-power/powertop: Drop old versions (diff)
downloadgentoo-912abc766edede6a7114f5d3a9cf0c60dd853eff.tar.gz
gentoo-912abc766edede6a7114f5d3a9cf0c60dd853eff.tar.bz2
gentoo-912abc766edede6a7114f5d3a9cf0c60dd853eff.zip
dev-util/statifier: drop old version
Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-util/statifier')
-rw-r--r--dev-util/statifier/statifier-1.7.4.ebuild58
1 files changed, 0 insertions, 58 deletions
diff --git a/dev-util/statifier/statifier-1.7.4.ebuild b/dev-util/statifier/statifier-1.7.4.ebuild
deleted file mode 100644
index 7ade05bbc42a..000000000000
--- a/dev-util/statifier/statifier-1.7.4.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MULTILIB_COMPAT=( abi_x86_{32,64} )
-
-inherit multilib-build toolchain-funcs
-
-DESCRIPTION="Statifier is a tool for creating portable, self-containing Linux executables"
-HOMEPAGE="http://statifier.sourceforge.net"
-SRC_URI="https://sourceforge.net/projects/${PN}/files/${PN}/${PV}/${P}.tar.gz"
-
-KEYWORDS="amd64 x86"
-SLOT="0"
-LICENSE="GPL-2"
-
-RDEPEND="
- app-shells/bash
- sys-apps/coreutils
- virtual/awk
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.7.4-clang.patch
- "${FILESDIR}"/${PN}-1.7.4-fix-build-system.patch
- "${FILESDIR}"/${PN}-1.7.4-musl.patch
-)
-
-src_prepare() {
- default
-
- # Don't compile 32-bit on amd64 no-multilib profile
- if ! use abi_x86_32; then
- sed -i -e 's/ELF32 .*/ELF32 := no/g' configs/config.x86_64 || die
- fi
-}
-
-src_configure() {
- tc-export CC
-
- # Fix permissions, as configure is not marked executable
- chmod +x configure || die
- econf
-}
-
-src_compile() {
- # Package complains with MAKEOPTS > -j1
- emake -j1
-}
-
-src_install() {
- # Package complains with MAKEOPTS > -j1
- emake -j1 DESTDIR="${D}" install
-
- # Install docs
- einstalldocs
-}