diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-02-25 22:20:29 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-02-25 22:20:29 +0000 |
commit | 85bf020f6295a82bfc781e1f514cc73bdaff2b39 (patch) | |
tree | 3e00938ea9220fac31cb23460409b8380c074b73 /media-libs/freetype | |
parent | Mask abi_x86_32 in 64bit-native profile since no-multilib is not used by hard... (diff) | |
download | gentoo-2-85bf020f6295a82bfc781e1f514cc73bdaff2b39.tar.gz gentoo-2-85bf020f6295a82bfc781e1f514cc73bdaff2b39.tar.bz2 gentoo-2-85bf020f6295a82bfc781e1f514cc73bdaff2b39.zip |
Convert to autotools-multilib. Acked by lu_zero, bug #455070.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 9627F456F9DA7643!)
Diffstat (limited to 'media-libs/freetype')
-rw-r--r-- | media-libs/freetype/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/freetype/freetype-2.4.11-r1.ebuild | 147 |
2 files changed, 153 insertions, 1 deletions
diff --git a/media-libs/freetype/ChangeLog b/media-libs/freetype/ChangeLog index 64790c3f24d7..e281d3e33f6e 100644 --- a/media-libs/freetype/ChangeLog +++ b/media-libs/freetype/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/freetype # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v 1.361 2013/02/18 01:04:52 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/ChangeLog,v 1.362 2013/02/25 22:20:29 mgorny Exp $ + +*freetype-2.4.11-r1 (25 Feb 2013) + + 25 Feb 2013; Michał Górny <mgorny@gentoo.org> +freetype-2.4.11-r1.ebuild: + Convert to autotools-multilib. Acked by lu_zero, bug #455070. 18 Feb 2013; Zac Medico <zmedico@gentoo.org> freetype-2.4.11.ebuild: Add ~arm-linux keyword. diff --git a/media-libs/freetype/freetype-2.4.11-r1.ebuild b/media-libs/freetype/freetype-2.4.11-r1.ebuild new file mode 100644 index 000000000000..afb6dfbed99f --- /dev/null +++ b/media-libs/freetype/freetype-2.4.11-r1.ebuild @@ -0,0 +1,147 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/freetype-2.4.11-r1.ebuild,v 1.1 2013/02/25 22:20:29 mgorny Exp $ + +EAPI=5 + +inherit autotools-multilib flag-o-matic multilib + +DESCRIPTION="A high-quality and portable font engine" +HOMEPAGE="http://www.freetype.org/" +SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.bz2 + utils? ( mirror://sourceforge/freetype/ft2demos-${PV}.tar.bz2 ) + doc? ( mirror://sourceforge/freetype/${PN}-doc-${PV}.tar.bz2 ) + infinality? ( http://dev.gentoo.org/~polynomial-c/${P}-infinality-patches.tar.xz )" + +LICENSE="FTL GPL-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +IUSE="X auto-hinter bindist bzip2 debug doc fontforge infinality static-libs utils" + +# Note: replace emul-linux dep when bzip2 becomes multilib-aware +# (and all [${MULTILIB_USEDEP}] on it then!) +DEPEND="sys-libs/zlib + amd64? ( abi_x86_32? ( app-emulation/emul-linux-x86-baselibs ) ) + bzip2? ( app-arch/bzip2 ) + X? ( x11-libs/libX11 + x11-libs/libXau + x11-libs/libXdmcp )" +RDEPEND="${DEPEND} + infinality? ( media-libs/fontconfig-infinality ) + abi_x86_32? ( !<=app-emulation/emul-linux-x86-xlibs-20130224 )" + +src_prepare() { + enable_option() { + sed -i -e "/#define $1/a #define $1" \ + include/freetype/config/ftoption.h \ + || die "unable to enable option $1" + } + + disable_option() { + sed -i -e "/#define $1/ { s:^:/*:; s:$:*/: }" \ + include/freetype/config/ftoption.h \ + || die "unable to disable option $1" + } + + if ! use bindist; then + # See http://freetype.org/patents.html + # ClearType is covered by several Microsoft patents in the US + enable_option FT_CONFIG_OPTION_SUBPIXEL_RENDERING + fi + + if use auto-hinter; then + disable_option TT_CONFIG_OPTION_BYTECODE_INTERPRETER + enable_option TT_CONFIG_OPTION_UNPATENTED_HINTING + fi + + if use debug; then + enable_option FT_DEBUG_LEVEL_TRACE + enable_option FT_DEBUG_MEMORY + fi + + disable_option FT_CONFIG_OPTION_OLD_INTERNALS + + if use infinality; then + epatch "${WORKDIR}"/patches/freetype-enable-subpixel-hinting-infinality.patch + epatch "${WORKDIR}"/patches/freetype-entire-infinality-patchset.patch + + # FT_CONFIG_OPTION_SUBPIXEL_RENDERING is already enabled in + # freetype-2.4.11 + enable_option TT_CONFIG_OPTION_SUBPIXEL_HINTING + fi + + epatch "${FILESDIR}"/${PN}-2.3.2-enable-valid.patch + + epatch "${FILESDIR}"/${P}-auto-hinter_compile_fix.patch # 453956 + + # for our variable use, includedir needs to go after libdir + # so swap the two lines + sed -i -n -e '/@includedir@/{x;n;p;x};p' builds/unix/freetype-config.in || die + + if use utils; then + cd "${WORKDIR}/ft2demos-${PV}" + sed -i -e "s:\.\.\/freetype2$:../freetype-${PV}:" Makefile || die + # Disable tests needing X11 when USE="-X". (bug #177597) + if ! use X; then + sed -i -e "/EXES\ +=\ ftdiff/ s:^:#:" Makefile || die + fi + fi + + autotools-utils_src_prepare +} + +src_configure() { + append-flags -fno-strict-aliasing + type -P gmake &> /dev/null && export GNUMAKE=gmake + + # we need non-/bin/sh to run configure + [[ -n ${CONFIG_SHELL} ]] && \ + sed -i -e "1s:^#![[:space:]]*/bin/sh:#!$CONFIG_SHELL:" \ + "${S}"/builds/unix/configure + + + local myeconfargs=( + # expanded by make + --includedir='${libdir}/freetype2/include' + $(use_with bzip2) + ) + + autotools-multilib_src_configure +} + +src_compile() { + autotools-multilib_src_compile + + if use utils; then + einfo "Building utils" + cd "${WORKDIR}/ft2demos-${PV}" + # fix for Prefix, bug #339334 + emake X11_PATH="${EPREFIX}/usr/$(get_libdir)" + fi +} + +src_install() { + autotools-multilib_src_install + + if use utils; then + einfo "Installing utils" + rm "${WORKDIR}"/ft2demos-${PV}/bin/README + for ft2demo in ../ft2demos-${PV}/bin/*; do + ./builds/unix/libtool --mode=install $(type -P install) -m 755 "$ft2demo" \ + "${ED}"/usr/bin + done + fi + + if use fontforge; then + # Probably fontforge needs less but this way makes things simplier... + einfo "Installing internal headers required for fontforge" + find src/truetype include/freetype/internal -name '*.h' | \ + while read header; do + mkdir -p "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" + cp ${header} "${ED}/usr/include/freetype2/internal4fontforge/$(dirname ${header})" + done + fi + + dodoc docs/{CHANGES,CUSTOMIZE,DEBUG,*.txt,PROBLEMS,TODO} + use doc && dohtml -r docs/* +} |