diff options
author | Akinori Hattori <hattya@gentoo.org> | 2014-11-29 13:04:41 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2014-11-29 13:04:41 +0000 |
commit | 0606f8e9c34d9dc986233983f946c49e13bb2d61 (patch) | |
tree | 38e6f0433b4e1ded15d412bf25b073e35757ca21 /media-fonts/mplus-outline-fonts | |
parent | new upstream release (diff) | |
download | gentoo-2-0606f8e9c34d9dc986233983f946c49e13bb2d61.tar.gz gentoo-2-0606f8e9c34d9dc986233983f946c49e13bb2d61.tar.bz2 gentoo-2-0606f8e9c34d9dc986233983f946c49e13bb2d61.zip |
new upstream release
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
Diffstat (limited to 'media-fonts/mplus-outline-fonts')
-rw-r--r-- | media-fonts/mplus-outline-fonts/ChangeLog | 8 | ||||
-rw-r--r-- | media-fonts/mplus-outline-fonts/mplus-outline-fonts-0_pre059.ebuild | 45 |
2 files changed, 52 insertions, 1 deletions
diff --git a/media-fonts/mplus-outline-fonts/ChangeLog b/media-fonts/mplus-outline-fonts/ChangeLog index 705cbaf71eb3..a89503a7b263 100644 --- a/media-fonts/mplus-outline-fonts/ChangeLog +++ b/media-fonts/mplus-outline-fonts/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-fonts/mplus-outline-fonts # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-fonts/mplus-outline-fonts/ChangeLog,v 1.56 2014/04/04 09:38:13 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-fonts/mplus-outline-fonts/ChangeLog,v 1.57 2014/11/29 13:04:41 hattya Exp $ + +*mplus-outline-fonts-0_pre059 (29 Nov 2014) + + 29 Nov 2014; Akinori Hattori <hattya@gentoo.org> + +mplus-outline-fonts-0_pre059.ebuild: + new upstream release *mplus-outline-fonts-0_pre058 (04 Apr 2014) diff --git a/media-fonts/mplus-outline-fonts/mplus-outline-fonts-0_pre059.ebuild b/media-fonts/mplus-outline-fonts/mplus-outline-fonts-0_pre059.ebuild new file mode 100644 index 000000000000..c6a49068beb5 --- /dev/null +++ b/media-fonts/mplus-outline-fonts/mplus-outline-fonts-0_pre059.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-fonts/mplus-outline-fonts/mplus-outline-fonts-0_pre059.ebuild,v 1.1 2014/11/29 13:04:41 hattya Exp $ + +EAPI="5" + +inherit font + +MY_P="mplus-${PV/0_pre/TESTFLIGHT-}" + +DESCRIPTION="M+ Japanese outline fonts" +HOMEPAGE="http://mplus-fonts.sourceforge.jp/ http://ossipedia.ipa.go.jp/ipafont/" +SRC_URI="mirror://sourceforge.jp/mplus-fonts/62344/${MY_P}.tar.xz" + +LICENSE="mplus-fonts ipafont? ( IPAfont )" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~x86 ~ppc-macos ~x86-macos" +IUSE="ipafont" +RESTRICT="binchecks strip" + +DEPEND="ipafont? ( + media-gfx/fontforge + media-fonts/ja-ipafonts + )" +RDEPEND="" +S="${WORKDIR}/${MY_P}" + +FONT_SUFFIX="ttf" +FONT_S="${S}" +DOCS=( README_{J,E} ) + +IPAFONT_DIR="${EPREFIX}/usr/share/fonts/ja-ipafonts" + +src_prepare() { + if use ipafont; then + cp -p "${IPAFONT_DIR}"/ipag.ttf "${S}" || die + fi +} + +src_compile() { + if use ipafont; then + fontforge -script m++ipa.pe || die + rm -f ipag.ttf + fi +} |