diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 05:05:10 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-06-03 05:05:10 +0000 |
commit | aae35d21796bd01256e0a5aaba45580507009315 (patch) | |
tree | 8f2cdc7ec9b35c615854500fb060a700a1c77fc1 /media-libs | |
parent | Moving to stable x86. (Manifest recommit) (diff) | |
download | gentoo-2-aae35d21796bd01256e0a5aaba45580507009315.tar.gz gentoo-2-aae35d21796bd01256e0a5aaba45580507009315.tar.bz2 gentoo-2-aae35d21796bd01256e0a5aaba45580507009315.zip |
resurrect fontconfig-2.1-r1 for keywords
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/fontconfig/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/fontconfig/files/digest-fontconfig-2.1-r1 | 2 | ||||
-rw-r--r-- | media-libs/fontconfig/fontconfig-2.1-r1.ebuild | 99 |
3 files changed, 108 insertions, 1 deletions
diff --git a/media-libs/fontconfig/ChangeLog b/media-libs/fontconfig/ChangeLog index d53cc3e87cf2..aff7574a48d2 100644 --- a/media-libs/fontconfig/ChangeLog +++ b/media-libs/fontconfig/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/fontconfig # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/ChangeLog,v 1.47 2004/06/02 12:44:03 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/ChangeLog,v 1.48 2004/06/03 05:05:10 mr_bones_ Exp $ + +*fontconfig-2.1-r1 (02 Jun 2004) + + 02 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> + fontconfig-2.1-r1.ebuild: + resurrect fontconfig-2.1-r1 for keywords 02 Jun 2004; foser <foser@gentoo.org> fontconfig-2.2* : Don't force fc-cache update, it breaks portage removal of fonts (#13808) diff --git a/media-libs/fontconfig/files/digest-fontconfig-2.1-r1 b/media-libs/fontconfig/files/digest-fontconfig-2.1-r1 new file mode 100644 index 000000000000..dd8149a1c181 --- /dev/null +++ b/media-libs/fontconfig/files/digest-fontconfig-2.1-r1 @@ -0,0 +1,2 @@ +MD5 2f2852c80924a9b5356c3037a471c1a1 fcpackage.2_1.tar.gz 544661 +MD5 447ec2f65da7aa027aab7c23f3eaa358 fontconfig-2.1-r1-gentoo.tar.bz2 5464 diff --git a/media-libs/fontconfig/fontconfig-2.1-r1.ebuild b/media-libs/fontconfig/fontconfig-2.1-r1.ebuild new file mode 100644 index 000000000000..c13997381c83 --- /dev/null +++ b/media-libs/fontconfig/fontconfig-2.1-r1.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.1-r1.ebuild,v 1.22 2004/06/03 05:05:10 mr_bones_ Exp $ + +inherit debug eutils + +S="${WORKDIR}/fcpackage.${PV/\./_}/fontconfig" +DESCRIPTION="A library for configuring and customizing font access." +HOMEPAGE="http://freedesktop.org/" +SRC_URI="http://pdx.freedesktop.org/software/fontconfig/releases/fcpackage.${PV/\./_}.tar.gz" + +LICENSE="fontconfig" +SLOT="1.0" +KEYWORDS="x86 alpha ppc sparc mips hppa amd64" + +# Seems like patches in freetype-2.1.2-r2 fixes bug #10028 +DEPEND=">=media-libs/freetype-2.1.2-r2 + >=dev-libs/expat-1.95.3 + >=sys-apps/ed-0.2" + + +fc_setup() { + # Do not use 'cc' to compile + [ ! -n "${CC}" ] && export CC="gcc" || : +} + +src_unpack() { + unpack ${A} + + cd ${S} + local PPREFIX="${FILESDIR}/patch/${PN}" + + # Cvs update from XFree86 tree + epatch ${PPREFIX}-${PV}-cvs-update-20021221.patch + + # Some patches from Redhat + epatch ${PPREFIX}-2.0-defaultconfig.patch + epatch ${PPREFIX}-${PV}-slighthint.patch + # Blacklist certain fonts that freetype can't handle + epatch ${PPREFIX}-0.0.1.020826.1330-blacklist.patch + # Fix config script to alway include X11 fontpath and remove date + epatch ${PPREFIX}-${PV}-x11fontpath-date-configure-v2.patch + # fix font width bug with cjk fonts + epatch ${PPREFIX}-${PV}-fixedwidth.patch +} + +src_compile() { + fc_setup + + [ "${ARCH}" == "alpha" -a "${CC}" == "ccc" ] && \ + die "Dont compile fontconfig with ccc, it doesnt work very well" + + econf \ + --x-includes=/usr/X11R6/include \ + --x-libraries=/usr/X11R6/lib || die + + emake || die +} + +src_install() { + fc_setup + + einstall confdir=${D}/etc/fonts \ + datadir=${D}/usr/share || die + + insinto /etc/fonts + doins ${S}/fonts.conf + newins ${S}/fonts.conf fonts.conf.new + + cd ${S} + + mv fc-cache/fc-cache.man fc-cache/fc-cache.1 + mv fc-list/fc-list.man fc-list/fc-list.1 + mv src/fontconfig.man src/fontconfig.3 + for x in fc-cache/fc-cache.1 fc-list/fc-list.1 src/fontconfig.3 + do + doman ${x} + done + + dodoc AUTHORS COPYING 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..." + HOME="/root" /usr/bin/fc-cache -f + fi +} + |