dev-libs/m17n-lib: Delete old versions (<1.7.0).

This commit is contained in:
Arfrever Frehtes Taifersar Arahesis
2018-04-16 19:14:52 +02:00
committed by Mike Gilbert
parent 922d5f8267
commit e8d305bd61
3 changed files with 0 additions and 138 deletions

View File

@@ -1,3 +1 @@
DIST m17n-lib-1.6.3.tar.gz 1033048 BLAKE2B 869fac61545ecb94d063282cd257732b0d46cab01dd3a7b49901315f1f81f65fa5e7b782429766e8f8248c83c355d57f0d40251bbdfb35ee065f4c6d165aacaf SHA512 66177e5be17e330230d31bfff8a3cc7415ad79f9bfaf8f4c4baea02f1f19bf2d3628210c697a9b14d07dcb9bac8ca256e6c5102cbaae65876bf49aa2150cfd80
DIST m17n-lib-1.6.4.tar.gz 1034422 BLAKE2B ccb991dddd55e8f149b37f2e9ee6e84c5f8a9600494c16cba7ee55ab0a96c56b338383bfd88de5c81f2dc3609a40b4e3c645b8eaa6905bfe08aba56dbedc91ae SHA512 751f22efdaf4fb3e23d17ca07e20c65c59d60ff4f90a384bd9a8e9e8b01503d87c76cfc4c3c9717d8549a08c705b1c444939816a7eb07ca77b029b4f457f58c3
DIST m17n-lib-1.7.0.tar.gz 1063169 BLAKE2B 61192d26dec8a8bdb55b6a819c5b1aa5503e4320d57864889065c9490ee6720f5b258fbef10d5944f69f5a9ccbe49ea5494c8b0a10d536592c301f46df6826c5 SHA512 26fc1be02a5e487a2fa5f2f63d991f3c745aa1b78e20d931fe4b265125266501cc8d402aa3cb5c1b71a7d4c0f7a0bf5b2c3b17ec5f4f8e0f5ee3052ad4e205b7

View File

@@ -1,63 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils autotools
DESCRIPTION="Multilingual Library for Unix/Linux"
HOMEPAGE="https://savannah.nongnu.org/projects/m17n"
SRC_URI="http://www.m17n.org/m17n-lib-download/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
#IUSE="anthy gd ispell"
IUSE="gd X"
RDEPEND="
X? (
x11-libs/libXaw
x11-libs/libXft
x11-libs/libX11
gd? ( media-libs/gd[png] )
dev-libs/fribidi
>=media-libs/freetype-2.1
media-libs/fontconfig
>=dev-libs/libotf-0.9.4
)
dev-libs/libxml2
~dev-db/m17n-db-${PV}"
# linguas_th? ( || ( app-i18n/libthai app-i18n/wordcut ) )
# anthy? ( app-i18n/anthy )
# ispell? ( app-text/ispell )
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-gui.patch \
"${FILESDIR}"/${PN}-parallel-make.patch
eautoreconf
}
src_configure() {
local myconf=
if use X; then
myconf+=" --with-gui $(use_with gd)"
else
myconf+=" --without-gui --without-gd"
fi
econf ${myconf} || die
}
src_install() {
# bug #363239
emake -j1 DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}

View File

@@ -1,73 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils autotools
DESCRIPTION="Multilingual Library for Unix/Linux"
HOMEPAGE="https://savannah.nongnu.org/projects/m17n"
SRC_URI="http://download.savannah.gnu.org/releases/m17n/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
IUSE="anthy athena anthy bidi fontconfig gd spell libotf libxml2 X xft"
RDEPEND="
anthy? ( app-i18n/anthy )
spell? ( app-text/aspell )
libxml2? ( dev-libs/libxml2 )
X? (
athena? ( x11-libs/libXaw )
bidi? ( dev-libs/fribidi )
fontconfig? ( media-libs/fontconfig )
gd? ( media-libs/gd[png] )
libotf? ( >=dev-libs/libotf-0.9.4 )
xft? (
>=media-libs/freetype-2.1
x11-libs/libXft )
x11-libs/libX11
)
~dev-db/m17n-db-${PV}"
# athena? ( x11-libs/libXaw )
# athena shoud be enabled to build m17n-edit properly when X is enabled.
# linguas_th? ( || ( app-i18n/libthai app-i18n/wordcut ) )
#
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-gui.patch \
"${FILESDIR}"/${PN}-parallel-make.patch \
"${FILESDIR}"/${PN}-configure.patch \
"${FILESDIR}"/${PN}-ispell.patch
eautoreconf
}
src_configure() {
local myconf="$(use_with anthy) $(use_with spell ispell) $(use_with libxml2)"
if use X; then
myconf+=" --with-x --with-gui $(use_with athena) $(use_with bidi fribidi)
$(use_with fontconfig) $(use_with xft freetype) $(use_with gd) $(use_with libotf)
$(use_with xft)"
else
myconf+=" --without-x --without-gui --without-athena --without-fribidi
--without-fontconfig --without-freetype --without-gd --without-libotf
--without-xft"
fi
econf ${myconf} || die
}
src_install() {
# bug #363239
emake -j1 DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README TODO
}