Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/mtools/
Date: Fri, 18 Jun 2021 10:18:34
Message-Id: 1624011505.f927f49fd8ade781abb25993944750672212872d.polynomial-c@gentoo
1 commit: f927f49fd8ade781abb25993944750672212872d
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 18 10:18:11 2021 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 18 10:18:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f927f49f
7
8 sys-fs/mtools: Bump to version 4.0.30
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11
12 sys-fs/mtools/Manifest | 1 +
13 sys-fs/mtools/mtools-4.0.30.ebuild | 46 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/sys-fs/mtools/Manifest b/sys-fs/mtools/Manifest
17 index 630e8d86e3e..e7f1eed1ef5 100644
18 --- a/sys-fs/mtools/Manifest
19 +++ b/sys-fs/mtools/Manifest
20 @@ -1,2 +1,3 @@
21 DIST mtools-4.0.27.tar.bz2 420579 BLAKE2B 3044fff1896427227e4585df81c208f7580302155cf119db426cfc7a24b3d5195b560b8810613f571eed77584d47bb5125007cdcb8551b303db62ce264853776 SHA512 21072e1b6d22ea00913dbc856c5fbe1ecfbfc0207432c7632f0026ae2d9555743eb0710c86e8939a6b3183a03693b8d1297121df9d5702dd5bf6121ad240572c
22 DIST mtools-4.0.29.tar.bz2 440446 BLAKE2B b448fad8f5669230dc4fe32442c3a8b0ee570e1b084ac6b99b3239fa16fa97ba0ac5263aee34fefcb8726999178829a9ad6ed0444f41361518e5d24cfb3de083 SHA512 3671fa835bf7b410b33acbe0e4694da1609f284a99268e7c64ebdbf3ce9fc9e78cc5594d06eae5487e380b983ead190098d01a9fc1bc88b4eda324046172e62e
23 +DIST mtools-4.0.30.tar.bz2 442886 BLAKE2B dd66897c814c2afd842d6cb2a0865b4559a38c0c99468f6d96f16c869ed088f4a136c4ce798af39ca3115076dff9f303bd79145f17d502bc25d4b5b0a81f11e2 SHA512 9871dd2237c595286334d162bf9f494bc389cfc2cf098012484994212eff2c522fce357567b3fa5a7b314cc7336f7329fd9d71a2e1a0be2fdb3293dcbc4d98f5
24
25 diff --git a/sys-fs/mtools/mtools-4.0.30.ebuild b/sys-fs/mtools/mtools-4.0.30.ebuild
26 new file mode 100644
27 index 00000000000..3ebdd3b6df9
28 --- /dev/null
29 +++ b/sys-fs/mtools/mtools-4.0.30.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +
36 +inherit flag-o-matic
37 +
38 +DESCRIPTION="utilities to access MS-DOS disks from Unix without mounting them"
39 +HOMEPAGE="https://www.gnu.org/software/mtools/ https://savannah.gnu.org/projects/mtools"
40 +SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x64-solaris"
45 +IUSE="X elibc_glibc"
46 +
47 +RDEPEND="
48 + !elibc_glibc? ( virtual/libiconv )
49 + X? (
50 + x11-libs/libICE
51 + x11-libs/libXau
52 + x11-libs/libSM
53 + x11-libs/libX11
54 + x11-libs/libXt
55 + )"
56 +DEPEND="${RDEPEND}"
57 +
58 +src_configure() {
59 + use !elibc_glibc && use !elibc_musl && append-libs "-liconv" #447688
60 + local myeconfargs=(
61 + --sysconfdir="${EPREFIX}"/etc/mtools
62 + $(use_with X x)
63 + )
64 + econf "${myeconfargs[@]}"
65 +}
66 +
67 +src_install() {
68 + local -a DOCS=( README* Release.notes )
69 + default
70 +
71 + insinto /etc/mtools
72 + doins mtools.conf
73 +
74 + # default is fine
75 + sed -i -e '/^SAMPLE FILE$/s:^:#:' "${ED}"/etc/mtools/mtools.conf || die
76 +}