summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2005-01-09 22:36:02 +0000
committerMarinus Schraal <foser@gentoo.org>2005-01-09 22:36:02 +0000
commitadb930b0331bc83e8ff672e4fa73c290c9cc1b05 (patch)
tree73a607752733eb8d65b105b0d8d1512e52918e98 /media-libs/freetype
parentFix tail -f behavior #57477 by rob holland. Have the progress bar use normal... (diff)
downloadgentoo-2-adb930b0331bc83e8ff672e4fa73c290c9cc1b05.tar.gz
gentoo-2-adb930b0331bc83e8ff672e4fa73c290c9cc1b05.tar.bz2
gentoo-2-adb930b0331bc83e8ff672e4fa73c290c9cc1b05.zip
clean up a little
Diffstat (limited to 'media-libs/freetype')
-rw-r--r--media-libs/freetype/files/digest-freetype-2.1.92
-rw-r--r--media-libs/freetype/freetype-2.1.9.ebuild74
2 files changed, 0 insertions, 76 deletions
diff --git a/media-libs/freetype/files/digest-freetype-2.1.9 b/media-libs/freetype/files/digest-freetype-2.1.9
deleted file mode 100644
index 54076885fd84..000000000000
--- a/media-libs/freetype/files/digest-freetype-2.1.9
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 ec1b903e4be5f073caa72458ea58c29c freetype-2.1.9.tar.bz2 992394
-MD5 db77177afe35955f55bcaa2953724b78 ftdocs-2.1.9.tar.bz2 219666
diff --git a/media-libs/freetype/freetype-2.1.9.ebuild b/media-libs/freetype/freetype-2.1.9.ebuild
deleted file mode 100644
index 59d1fa8cb2e1..000000000000
--- a/media-libs/freetype/freetype-2.1.9.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/freetype/freetype-2.1.9.ebuild,v 1.7 2004/12/22 15:59:06 foser Exp $
-
-inherit eutils flag-o-matic gnuconfig libtool
-
-SPV="`echo ${PV} | cut -d. -f1,2`"
-
-DESCRIPTION="A high-quality and portable font engine"
-HOMEPAGE="http://www.freetype.org/"
-SRC_URI="mirror://sourceforge/freetype/${P/_/}.tar.bz2
- doc? ( mirror://sourceforge/${PN}/ftdocs-${PV}.tar.bz2 )"
-
-SLOT="2"
-LICENSE="FTL GPL-2"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~ia64 ~amd64 ~ppc64 ~mips"
-#IUSE="zlib bindist cjk doc"
-IUSE="zlib bindist doc"
-
-# The RDEPEND below makes sure that if there is a version of moz/ff/tb
-# installed, then it will have the freetype-2.1.8+ binary compatibility patch.
-# Otherwise updating freetype will cause moz/ff/tb crashes. #59849
-# 20 Nov 2004 agriffis
-DEPEND="virtual/libc
- zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
- !<net-www/mozilla-1.7.3-r3
- !<net-www/mozilla-firefox-1.0-r3
- !<net-www/mozilla-thunderbird-0.9-r3
- !<media-libs/libwmf-0.2.8.2"
-
-src_unpack() {
-
- unpack ${A}
-
- cd ${S}
- # add autohint patch from http://www.kde.gr.jp/~akito/patch/freetype2/
- # FIXME : patch hasn't been updated yet
- # use cjk && epatch ${FILESDIR}/${SPV}/${P}-autohint-cjkfonts-20031130.patch
-
- gnuconfig_update ${S}
- uclibctoolize
-}
-
-src_compile() {
-
- # https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=118021
- append-flags "-fno-strict-aliasing"
-
- use bindist || append-flags "${CFLAGS} -DTT_CONFIG_OPTION_BYTECODE_INTERPRETER"
-
- make setup CFG="--host=${CHOST} --prefix=/usr `use_with zlib` --libdir=/usr/$(get_libdir)" unix || die
-
- emake || die
-
- # Just a check to see if the Bytecode Interpreter was enabled ...
- if [ -z "`grep TT_Goto_CodeRange ${S}/objs/.libs/libfreetype.so`" ]
- then
- ewarn "Bytecode Interpreter is disabled."
- fi
-
-}
-
-src_install() {
-
- # make prefix=${D}/usr install || die
- make DESTDIR="${D}" install || die
-
- dodoc ChangeLog README
- dodoc docs/{CHANGES,CUSTOMIZE,DEBUG,*.txt,PATENTS,TODO}
-
- use doc && dohtml -r docs/*
-
-}