diff options
author | Marinus Schraal <foser@gentoo.org> | 2006-09-18 15:53:16 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2006-09-18 15:53:16 +0000 |
commit | 7d6d5a0c9551dfe6fcf1e13e2f41398d40f0ab62 (patch) | |
tree | 9de8d8e052225cad3fe2b3764112dc717132270a /media-libs/fontconfig/fontconfig-2.3.2-r2.ebuild | |
parent | Clean up. (diff) | |
download | gentoo-2-7d6d5a0c9551dfe6fcf1e13e2f41398d40f0ab62.tar.gz gentoo-2-7d6d5a0c9551dfe6fcf1e13e2f41398d40f0ab62.tar.bz2 gentoo-2-7d6d5a0c9551dfe6fcf1e13e2f41398d40f0ab62.zip |
fix for freetype 2.2
(Portage version: 2.1)
Diffstat (limited to 'media-libs/fontconfig/fontconfig-2.3.2-r2.ebuild')
-rw-r--r-- | media-libs/fontconfig/fontconfig-2.3.2-r2.ebuild | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/media-libs/fontconfig/fontconfig-2.3.2-r2.ebuild b/media-libs/fontconfig/fontconfig-2.3.2-r2.ebuild new file mode 100644 index 000000000000..256cd854ac2a --- /dev/null +++ b/media-libs/fontconfig/fontconfig-2.3.2-r2.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.3.2-r2.ebuild,v 1.1 2006/09/18 15:53:16 foser Exp $ + +inherit eutils libtool autotools + +DESCRIPTION="A library for configuring and customizing font access" +HOMEPAGE="http://fontconfig.org/" +SRC_URI="http://fontconfig.org/release/${P}.tar.gz" + +LICENSE="fontconfig" +SLOT="1.0" +KEYWORDS="~alpha amd64 arm ~hppa ia64 m68k mips ppc ~ppc-macos ppc64 s390 sh sparc x86 ~x86-fbsd" +IUSE="doc" + +DEPEND=">=media-libs/freetype-2.1.4 + >=dev-libs/expat-1.95.3" + +src_unpack() { + unpack ${A} + + cd "${S}" + # alias for Symbol and dingbats font (#124238) + epatch "${FILESDIR}"/${P}-symbol_alias.patch + # fix pkgconfig includes (#83623) + epatch "${FILESDIR}"/${P}-pkg_config.patch + # add docbook switch so we can disable it + epatch "${FILESDIR}"/${P}-docbook.patch + # fix build with ft 2.2 (#140359) + epatch ${FILESDIR}/${P}-noftinternals.patch + + eautoreconf + + # elibtoolize + epunt_cxx #74077 +} + +src_compile() { + + [ "${ARCH}" == "alpha" -a "${CC}" == "ccc" ] && \ + die "Dont compile fontconfig with ccc, it doesnt work very well" + + # disable docs only disables local docs generation, they come with the tarball + econf --disable-docs \ + --disable-docbook \ + --with-docdir=/usr/share/doc/${PF} \ + --with-default-fonts=/usr/share/fonts \ + --with-add-fonts=/usr/local/share/fonts,/usr/X11R6/lib/X11/fonts \ + || die + + # this triggers sandbox, we do this ourselves + sed -i "s:fc-cache/fc-cache -f -v:sleep 0:" Makefile + + emake -j1 || die +} + +src_install() { + make DESTDIR="${D}" install || die + + insinto /etc/fonts + doins "${S}"/fonts.conf + newins "${S}"/fonts.conf fonts.conf.new + + cd "${S}" + newman doc/fonts-conf.5 fonts-conf.5 + newman fc-cache/fc-cache.man fc-cache.1 + newman fc-list/fc-list.man fc-list.1 + + dohtml doc/fontconfig-user.html + dodoc doc/fontconfig-user.{txt,pdf} + + if use doc; then + doman doc/Fc*.3 + dohtml doc/fontconfig-devel.html doc + dohtml -r doc/fontconfig-devel + dodoc doc/fontconfig-devel.{txt,pdf} + fi + + dodoc AUTHORS ChangeLog NEWS README +} + +pkg_postinst() { + + # Changes should be made to /etc/fonts/local.conf, and as we had + # too much problems with broken fonts.conf, we force update it ... + # <azarah@gentoo.org> (11 Dec 2002) + ewarn "Please make fontconfig related changes to /etc/fonts/local.conf," + ewarn "and NOT to /etc/fonts/fonts.conf, as it will be replaced!" + mv -f ${ROOT}/etc/fonts/fonts.conf.new ${ROOT}/etc/fonts/fonts.conf + rm -f ${ROOT}/etc/fonts/._cfg????_fonts.conf + + if [ "${ROOT}" = "/" ] + then + echo + einfo "Creating font cache..." + /usr/bin/fc-cache + fi + +} |