2020-02-12 18:19:49 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2012-12-01 22:55:23 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=5
|
2020-02-16 00:29:04 +03:00
|
|
|
inherit autotools eutils ltprune
|
2012-12-01 22:55:23 +04:00
|
|
|
|
|
|
|
DESCRIPTION="Library for handling OpenType fonts (OTF)"
|
|
|
|
HOMEPAGE="http://www.nongnu.org/m17n/"
|
|
|
|
SRC_URI="mirror://nongnu/m17n/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="LGPL-2.1"
|
|
|
|
SLOT="0"
|
2020-04-04 13:15:30 +03:00
|
|
|
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
|
2012-12-01 22:55:23 +04:00
|
|
|
IUSE="static-libs X"
|
|
|
|
|
|
|
|
RDEPEND=">=media-libs/freetype-2.4.9
|
|
|
|
X? (
|
|
|
|
x11-libs/libX11
|
|
|
|
x11-libs/libXaw
|
|
|
|
x11-libs/libXt
|
|
|
|
)"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
X? (
|
2018-05-12 10:23:37 +03:00
|
|
|
x11-base/xorg-proto
|
2012-12-01 22:55:23 +04:00
|
|
|
x11-libs/libICE
|
|
|
|
x11-libs/libXmu
|
|
|
|
)"
|
|
|
|
|
|
|
|
DOCS="AUTHORS ChangeLog NEWS README"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/${P}-build.patch
|
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
export ac_cv_header_X11_Xaw_Command_h=$(usex X)
|
|
|
|
econf $(use_enable static-libs static)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
prune_libtool_files
|
|
|
|
}
|