summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-09-25 22:33:39 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2024-09-25 22:36:14 +0200
commitacdec150c960cd73b049217b97ce2066cc056b1e (patch)
treec6cd69ff94f4b3eba3c4ae5b21432592ca4b478c /sys-apps/usermode-utilities
parentsys-fs/mp3fs: drop 1.1.1-r4 (diff)
downloadgentoo-acdec150c960cd73b049217b97ce2066cc056b1e.tar.gz
gentoo-acdec150c960cd73b049217b97ce2066cc056b1e.tar.bz2
gentoo-acdec150c960cd73b049217b97ce2066cc056b1e.zip
sys-apps/usermode-utilities: drop 20070815-r4, 20070815-r5
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sys-apps/usermode-utilities')
-rw-r--r--sys-apps/usermode-utilities/usermode-utilities-20070815-r4.ebuild44
-rw-r--r--sys-apps/usermode-utilities/usermode-utilities-20070815-r5.ebuild47
2 files changed, 0 insertions, 91 deletions
diff --git a/sys-apps/usermode-utilities/usermode-utilities-20070815-r4.ebuild b/sys-apps/usermode-utilities/usermode-utilities-20070815-r4.ebuild
deleted file mode 100644
index 1f37ae892809..000000000000
--- a/sys-apps/usermode-utilities/usermode-utilities-20070815-r4.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit toolchain-funcs
-
-DESCRIPTION="Tools for use with Usermode Linux virtual machines"
-HOMEPAGE="http://user-mode-linux.sourceforge.net/"
-SRC_URI="http://user-mode-linux.sourceforge.net/uml_utilities_${PV}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE="fuse"
-
-RDEPEND="
- fuse? ( sys-fs/fuse:0= )
- sys-libs/readline:0=
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/tools-${PV}
-
-src_prepare() {
- default
-
- # Merge previous patches with fix for bug #331099
- eapply "${FILESDIR}"/${P}-rollup.patch
- # Fix owner of humfsify; bug #364531
- eapply "${FILESDIR}"/${P}-humfsify-owner.patch
- eapply "${FILESDIR}"/${P}-headers.patch #580816
-
- sed -i -e 's:-o \$(BIN):$(LDFLAGS) -o $(BIN):' "${S}"/*/Makefile || die "LDFLAGS sed failed"
- sed -i -e 's:-o \$@:$(LDFLAGS) -o $@:' "${S}"/moo/Makefile || die "LDFLAGS sed (moo) failed"
- if ! use fuse; then
- einfo "Skipping build of umlmount to avoid sys-fs/fuse dependency."
- sed -i -e 's/\<umlfs\>//' Makefile || die "sed to remove sys-fs/fuse dependency failed"
- fi
-}
-
-src_compile() {
- tc-export AR CC
- emake CFLAGS="${CFLAGS} ${CPPFLAGS} -DTUNTAP -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -g -Wall" all
-}
diff --git a/sys-apps/usermode-utilities/usermode-utilities-20070815-r5.ebuild b/sys-apps/usermode-utilities/usermode-utilities-20070815-r5.ebuild
deleted file mode 100644
index b162e7d846e7..000000000000
--- a/sys-apps/usermode-utilities/usermode-utilities-20070815-r5.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit toolchain-funcs
-
-DESCRIPTION="Tools for use with Usermode Linux virtual machines"
-HOMEPAGE="http://user-mode-linux.sourceforge.net/"
-SRC_URI="http://user-mode-linux.sourceforge.net/uml_utilities_${PV}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE="fuse"
-
-RDEPEND="
- fuse? ( sys-fs/fuse:0= )
- sys-libs/readline:0=
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}"/tools-${PV}
-
-PATCHES=(
- # Merge previous patches with fix for bug #331099
- "${FILESDIR}"/${P}-rollup.patch
- # Fix owner of humfsify; bug #364531
- "${FILESDIR}"/${P}-humfsify-owner.patch
- "${FILESDIR}"/${P}-headers.patch #580816
- # Fix build /w clang-16, bug #898550
- "${FILESDIR}"/${PN}-fix-memset.patch
-)
-
-src_prepare() {
- default
- sed -i -e 's:-o \$(BIN):$(LDFLAGS) -o $(BIN):' "${S}"/*/Makefile || die "LDFLAGS sed failed"
- sed -i -e 's:-o \$@:$(LDFLAGS) -o $@:' "${S}"/moo/Makefile || die "LDFLAGS sed (moo) failed"
- if ! use fuse; then
- einfo "Skipping build of umlmount to avoid sys-fs/fuse dependency."
- sed -i -e 's/\<umlfs\>//' Makefile || die "sed to remove sys-fs/fuse dependency failed"
- fi
-}
-
-src_compile() {
- tc-export AR CC
- emake CFLAGS="${CFLAGS} ${CPPFLAGS} -DTUNTAP -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -g -Wall" all
-}