summaryrefslogtreecommitdiff
path: root/dev-db/m17n-db/m17n-db-1.8.0.ebuild
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2024-09-15 15:49:42 +0900
committerAkinori Hattori <hattya@gentoo.org>2024-09-15 15:49:42 +0900
commit555986d65898c5fb51cde1b5e8deb66f383ae7cc (patch)
tree446d8b404667dd658776d44f4287478264c0c5ab /dev-db/m17n-db/m17n-db-1.8.0.ebuild
parenta6b1d4ad065d28f4d169167cfce96997ef94cae9 (diff)
downloadgentoo-555986d65898c5fb51cde1b5e8deb66f383ae7cc.tar.gz
gentoo-555986d65898c5fb51cde1b5e8deb66f383ae7cc.tar.bz2
gentoo-555986d65898c5fb51cde1b5e8deb66f383ae7cc.zip
dev-db/m17n-db: drop old
Signed-off-by: Akinori Hattori <hattya@gentoo.org>
Diffstat (limited to 'dev-db/m17n-db/m17n-db-1.8.0.ebuild')
-rw-r--r--dev-db/m17n-db/m17n-db-1.8.0.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-db/m17n-db/m17n-db-1.8.0.ebuild b/dev-db/m17n-db/m17n-db-1.8.0.ebuild
deleted file mode 100644
index 39c5f7fb429d..000000000000
--- a/dev-db/m17n-db/m17n-db-1.8.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-GLIBC_PV="2.39"
-GLIBC_P="glibc-${GLIBC_PV}"
-
-DESCRIPTION="Database for the m17n library"
-HOMEPAGE="https://www.nongnu.org/m17n/"
-SRC_URI="mirror://nongnu/m17n/${P}.tar.gz
- elibc_musl? ( mirror://gnu/glibc/${GLIBC_P}.tar.xz )"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86"
-IUSE=""
-
-RDEPEND="virtual/libintl"
-BDEPEND="sys-devel/gettext"
-
-CHARMAPS="${GLIBC_P}/localedata/charmaps"
-
-src_unpack() {
- unpack ${P}.tar.gz
-
- if use elibc_musl; then
- tar xf "${DISTDIR}"/${GLIBC_P}.tar.xz ${CHARMAPS} || die
- fi
-}
-
-src_configure() {
- econf $(usex elibc_musl "--with-charmaps=${WORKDIR}/${CHARMAPS}" "")
-}
-
-src_install() {
- default
-
- docinto FORMATS
- dodoc FORMATS/*
-
- docinto UNIDATA
- dodoc UNIDATA/*
-}