Updated ebuilds
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
EBUILD xdms-9999.ebuild 773 BLAKE2B b006d21fec5d5eee31a88b6dd6c69a8e06b431080b9abb61d36594588da9fa722cf0b3839c2e1ac69390ee8eba2e4507f22cfb5501eca26d60b9fcfa9c3deed2 SHA512 159b0fbe5280f8778496c35f2e40eb8ad1a03f60a041b7e95d4002cd8e9828b11b16a9df06e5ab75aa2dedb5ff757b92a3f6a0dde5f3cf95332d09a4f6a52892
|
||||
MISC metadata.xml 864 BLAKE2B 209b2fd1290a35b6d372b5725bd9d297a2d9b86a56bc45bdfd725e81399f004ac6d4de87386d883e921bc6a34d2e45797d029d71ec317f7c3930a4d7faf991f6 SHA512 a535abd221a7ea350cfeb4fbb84585cc4f4d6ee83f607ae5d0eee73a709b8df5ed3cf9b3056dbd6b8a68ff06353c5c8b407f322a06a3bbeb5fe3d6d0cea4cdba
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<longdescription>
|
||||
Supports decompression of files compressed using all known DMS compression modes, including old and obsolete ones, and also encrypted files, for 100% compatibility.
|
||||
Can test DMS files integrity, view file informations and show attached Banners and FILEID.DIZ .
|
||||
Can generate standard disk images and compressed disk images, using gzip, if you want to store your files in ADF or ADZ formats.
|
||||
Can extract the files contained inside the DMS archives, if the compressed disk is an AmigaDOS disk, using readdisk made by Bernd Schmidt.
|
||||
Can process multiple files in batch with a single command, and also use stdin and stdout for input and output of data.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,37 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
if [[ ${PV} == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://gitlab.com/heikkiorsila/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://zakalwe.fi/~shd/foss/xdms/${P}.tar.bz2"
|
||||
KEYWORDS="amd64 ~hppa ppc x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="xDMS - Amiga DMS disk image decompressor"
|
||||
HOMEPAGE="https://zakalwe.fi/~shd/foss/xdms"
|
||||
|
||||
LICENSE="public-domain"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
pkg_setup() {
|
||||
tc-export CC
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
sed -i Makefile.in \
|
||||
-e "s:COPYING::" \
|
||||
-e "s:share/doc/xdms-{VERSION}:share/doc/xdms-${PF}:" || die
|
||||
sed -i -e "s:-O2::" src/Makefile.in || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
./configure --prefix=/usr --package-prefix="${D}" || die
|
||||
}
|
||||
Reference in New Issue
Block a user