diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2008-02-10 02:19:24 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2008-02-10 02:19:24 +0000 |
commit | 9e2861f3852a9f635f71f4363da69f1830d8a77f (patch) | |
tree | 1d4248b64f763fbfcf5560b712ff17330f227fbf /media-libs/fontconfig | |
parent | removed old versions (diff) | |
download | gentoo-2-9e2861f3852a9f635f71f4363da69f1830d8a77f.tar.gz gentoo-2-9e2861f3852a9f635f71f4363da69f1830d8a77f.tar.bz2 gentoo-2-9e2861f3852a9f635f71f4363da69f1830d8a77f.zip |
Remove old.
(Portage version: 2.1.4.1)
Diffstat (limited to 'media-libs/fontconfig')
-rw-r--r-- | media-libs/fontconfig/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/fontconfig/fontconfig-2.5.0.ebuild | 89 |
2 files changed, 4 insertions, 90 deletions
diff --git a/media-libs/fontconfig/ChangeLog b/media-libs/fontconfig/ChangeLog index e4db8c1698f3..a3d0ac70280c 100644 --- a/media-libs/fontconfig/ChangeLog +++ b/media-libs/fontconfig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/fontconfig # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/ChangeLog,v 1.107 2008/01/16 15:40:47 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/ChangeLog,v 1.108 2008/02/10 02:19:24 dirtyepic Exp $ + + 10 Feb 2008; Ryan Hill <dirtyepic@gentoo.org> -fontconfig-2.5.0.ebuild: + Remove old. 16 Jan 2008; Jeroen Roovers <jer@gentoo.org> fontconfig-2.5.0-r1.ebuild: Stable for HPPA (bug #205266). diff --git a/media-libs/fontconfig/fontconfig-2.5.0.ebuild b/media-libs/fontconfig/fontconfig-2.5.0.ebuild deleted file mode 100644 index 66f11a186846..000000000000 --- a/media-libs/fontconfig/fontconfig-2.5.0.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.5.0.ebuild,v 1.1 2007/11/14 23:11:57 dirtyepic 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 ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="doc xml" - -RDEPEND=">=media-libs/freetype-2.1.4 - !xml? ( >=dev-libs/expat-1.95.3 ) - xml? ( >=dev-libs/libxml2-2.6 )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - doc? ( app-text/docbook-sgml-utils )" - -src_unpack() { - unpack ${A} - - cd "${S}" - # add docbook switch so we can disable it - epatch "${FILESDIR}"/${PN}-2.3.2-docbook.patch - - eautoreconf - epunt_cxx #74077 -} - -src_compile() { - # I'm thinking this should be removed - [[ ${ARCH} == alpha && ${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 $(use_enable doc docs) \ - $(use_enable doc docbook) \ - --localstatedir=/var \ - --with-docdir=/usr/share/doc/${PF} \ - --with-default-fonts=/usr/share/fonts \ - --with-add-fonts=/usr/local/share/fonts \ - $(use_enable xml libxml2) \ - || die - - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - insinto /etc/fonts - doins "${S}"/fonts.conf - - newman doc/fonts-conf.5 fonts.conf.5 - 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 - - # 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) - echo 'CONFIG_PROTECT_MASK="/etc/fonts/fonts.conf"' > "${T}"/37fontconfig - doenvd "${T}"/37fontconfig -} - -pkg_postinst() { - echo - ewarn "Please make fontconfig configuration changes in /etc/fonts/conf.d/" - ewarn "and NOT to /etc/fonts/fonts.conf, as it will be replaced!" - echo - - if [[ ${ROOT} = / ]]; then - ebegin "Creating global font cache..." - /usr/bin/fc-cache -sr - eend $? - fi -} |