summaryrefslogtreecommitdiff
path: root/app-arch/wimlib
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /app-arch/wimlib
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'app-arch/wimlib')
-rw-r--r--app-arch/wimlib/Manifest1
-rw-r--r--app-arch/wimlib/metadata.xml11
-rw-r--r--app-arch/wimlib/wimlib-1.14.4-r1.ebuild52
3 files changed, 0 insertions, 64 deletions
diff --git a/app-arch/wimlib/Manifest b/app-arch/wimlib/Manifest
deleted file mode 100644
index 27bd111626c6..000000000000
--- a/app-arch/wimlib/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST wimlib-1.14.4.tar.gz 1045888 BLAKE2B fa3d8568e777783034d426ff97d542e9db9679486e282667b6f44137a00c658697c0cff2ff065b86e782e9720f36ed050f75bd60aea9ae0bedf71355997b6b27 SHA512 f3c25ee14fe849f452f004ce8137ef040410ea048555ae71180086f010858b6ed593c8881b805bac65f9ee878bf11661a7f17677c6c24e2c77149c35ee0cd853
diff --git a/app-arch/wimlib/metadata.xml b/app-arch/wimlib/metadata.xml
deleted file mode 100644
index 2c160e3ee81d..000000000000
--- a/app-arch/wimlib/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <use>
- <flag name="fuse">Use fuse libraries</flag>
- <flag name="iso">Install <pkg>app-cdr/cdrtools</pkg> in order to prepare iso images</flag>
- <flag name="ntfs">Use libntfs-3g library from <pkg>sys-fs/ntfs3g</pkg></flag>
- <flag name="yasm">Use yasm assembler instead of nasm</flag>
- </use>
-</pkgmetadata>
diff --git a/app-arch/wimlib/wimlib-1.14.4-r1.ebuild b/app-arch/wimlib/wimlib-1.14.4-r1.ebuild
deleted file mode 100644
index ec1a0b94dfb4..000000000000
--- a/app-arch/wimlib/wimlib-1.14.4-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools pax-utils
-
-DESCRIPTION="The open source Windows Imaging (WIM) library"
-HOMEPAGE="https://wimlib.net"
-SRC_URI="https://wimlib.net/downloads/${P}.tar.gz"
-
-LICENSE="|| ( GPL-3+ LGPL-3+ ) MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="fuse iso ntfs test yasm"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- fuse? ( sys-fs/fuse:3= )
- iso? (
- app-arch/cabextract
- app-cdr/cdrtools
- )
- ntfs? ( sys-fs/ntfs3g:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with ntfs ntfs-3g)
- $(use_with fuse)
- $(use_enable test test-support)
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- default
- pax-mark m "${S}"/.libs/wimlib-imagex
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-}