summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2007-10-09 09:21:25 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2007-10-09 09:21:25 +0000
commit51f81923366731b18ca28db30ecfd4dec90e30ce (patch)
tree7080c67791de1fb8e9e3da31ff41465104154e54 /x11-apps
parentDrop old ebuilds. (diff)
downloadgentoo-2-51f81923366731b18ca28db30ecfd4dec90e30ce.tar.gz
gentoo-2-51f81923366731b18ca28db30ecfd4dec90e30ce.tar.bz2
gentoo-2-51f81923366731b18ca28db30ecfd4dec90e30ce.zip
Drop old ebuilds.
(Portage version: 2.1.3.12)
Diffstat (limited to 'x11-apps')
-rw-r--r--x11-apps/ttmkfdir/ChangeLog10
-rw-r--r--x11-apps/ttmkfdir/files/digest-ttmkfdir-3.0.9-r23
-rw-r--r--x11-apps/ttmkfdir/files/ttmkfdir-1.0-gentoo.diff46
-rw-r--r--x11-apps/ttmkfdir/files/ttmkfdir-2.0-gentoo.patch24
-rw-r--r--x11-apps/ttmkfdir/files/ttmkfdir-3.0.9-gcc33.patch11
-rw-r--r--x11-apps/ttmkfdir/files/ttmkfdir2-ignore-FIRSTINDEX.patch11
-rw-r--r--x11-apps/ttmkfdir/ttmkfdir-3.0.9-r2.ebuild51
7 files changed, 8 insertions, 148 deletions
diff --git a/x11-apps/ttmkfdir/ChangeLog b/x11-apps/ttmkfdir/ChangeLog
index 31406389e889..3e9ceb6a2dde 100644
--- a/x11-apps/ttmkfdir/ChangeLog
+++ b/x11-apps/ttmkfdir/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-apps/ttmkfdir
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-apps/ttmkfdir/ChangeLog,v 1.4 2006/12/01 19:18:45 dberkholz Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-apps/ttmkfdir/ChangeLog,v 1.5 2007/10/09 09:21:25 dberkholz Exp $
+
+ 09 Oct 2007; Donnie Berkholz <dberkholz@gentoo.org>;
+ -files/ttmkfdir-1.0-gentoo.diff, -files/ttmkfdir2-ignore-FIRSTINDEX.patch,
+ -files/ttmkfdir-2.0-gentoo.patch, -files/ttmkfdir-3.0.9-gcc33.patch,
+ -ttmkfdir-3.0.9-r2.ebuild:
+ Drop old ebuilds.
01 Dec 2006; Donnie Berkholz <dberkholz@gentoo.org>; metadata.xml:
Typo in herd.
diff --git a/x11-apps/ttmkfdir/files/digest-ttmkfdir-3.0.9-r2 b/x11-apps/ttmkfdir/files/digest-ttmkfdir-3.0.9-r2
deleted file mode 100644
index a0e3c4f62ead..000000000000
--- a/x11-apps/ttmkfdir/files/digest-ttmkfdir-3.0.9-r2
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 7fbf13e432aa519669899b13d00673f3 ttmkfdir-3.0.9.tar.bz2 20160
-RMD160 075bc97023e63b14ed4057cf9de99849240e92ba ttmkfdir-3.0.9.tar.bz2 20160
-SHA256 c65f8e2ba5522c896df2eb7256852bf0a5855109deec0f874379474ef76c1c1c ttmkfdir-3.0.9.tar.bz2 20160
diff --git a/x11-apps/ttmkfdir/files/ttmkfdir-1.0-gentoo.diff b/x11-apps/ttmkfdir/files/ttmkfdir-1.0-gentoo.diff
deleted file mode 100644
index 37d8f7055b68..000000000000
--- a/x11-apps/ttmkfdir/files/ttmkfdir-1.0-gentoo.diff
+++ /dev/null
@@ -1,46 +0,0 @@
-diff -ur ttmkfdir.orig/Makefile ttmkfdir/Makefile
---- ttmkfdir.orig/Makefile Thu Sep 10 12:54:26 1998
-+++ ttmkfdir/Makefile Thu Mar 1 15:29:38 2001
-@@ -1,10 +1,11 @@
--FREETYPE_BASE=../freetype-1.1
--FREETYPE_INCL=$(FREETYPE_BASE)/lib
--FREETYPE_LIB=-L$(FREETYPE_BASE)/lib/.libs -lttf
-+FREETYPE_BASE=/usr
-+FREETYPE_INCL=-I$(FREETYPE_BASE)/include
-+FREETYPE_LIB=-L$(FREETYPE_BASE)/lib -lttf
-
- CC=gcc
--CFLAGS=-Wall -pedantic -I$(FREETYPE_INCL)
--LDFALGS=$(FREETYPE_LIB) -s
-+OPT=-O2
-+CFLAGS=$(OPT) -Wall -pedantic $(FREETYPE_INCL)
-+LDFLAGS=$(FREETYPE_LIB)
-
- all: ttmkfdir
-
-@@ -18,7 +19,11 @@
- ln $< $@
-
- ttmkfdir: ttmkfdir.o
-- $(CC) -o $@ $< $(LDFALGS)
-+ $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
-+
-+install: all
-+ mkdir -p $(DESTDIR)/usr/X11R6/bin
-+ install -c -m 755 ttmkfdir $(DESTDIR)/usr/X11R6/bin
-
- ttmkfdir.o: ttmkfdir.c panose.h ttos2val.h
-
-Only in ttmkfdir: Makefile~
-diff -ur ttmkfdir.orig/ttmkfdir.c ttmkfdir/ttmkfdir.c
---- ttmkfdir.orig/ttmkfdir.c Wed Sep 9 08:50:50 1998
-+++ ttmkfdir/ttmkfdir.c Thu Mar 1 15:09:51 2001
-@@ -61,7 +61,7 @@
- #include <ctype.h>
- #include <errno.h>
-
--#include <freetype.h>
-+#include <freetype/freetype.h>
-
- #include "panose.h"
- #include "ttos2val.h"
diff --git a/x11-apps/ttmkfdir/files/ttmkfdir-2.0-gentoo.patch b/x11-apps/ttmkfdir/files/ttmkfdir-2.0-gentoo.patch
deleted file mode 100644
index 181365d28dbf..000000000000
--- a/x11-apps/ttmkfdir/files/ttmkfdir-2.0-gentoo.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -urN ttmkfdir2/Makefile ttmkfdir2.azarah/Makefile
---- ttmkfdir2/Makefile.orig 2002-03-14 16:03:49.000000000 +0200
-+++ ttmkfdir2/Makefile 2002-10-13 03:55:17.000000000 +0200
-@@ -2,7 +2,7 @@
- FREETYPE_INCL=-I$(FREETYPE_BASE)/.
- FREETYPE_LIB=/usr/lib/libfreetype.so
-
--DEBUG=-ggdb
-+DEBUG=
- CXX=g++
- CXXFLAGS=-Wall -pedantic $(FREETYPE_INCL) $(DEBUG)
-
-diff -urN ttmkfdir2/ttf.h ttmkfdir2.azarah/ttf.h
---- ttmkfdir2/ttf.h.orig 2002-03-13 20:16:38.000000000 +0200
-+++ ttmkfdir2/ttf.h 2002-10-13 03:46:34.000000000 +0200
-@@ -43,7 +43,7 @@
- FT_Face face;
- TT_OS2 *os2;
- TT_Postscript *post;
-- string FileName;
-+ std::string FileName;
- };
- };
-
diff --git a/x11-apps/ttmkfdir/files/ttmkfdir-3.0.9-gcc33.patch b/x11-apps/ttmkfdir/files/ttmkfdir-3.0.9-gcc33.patch
deleted file mode 100644
index c8f41458003d..000000000000
--- a/x11-apps/ttmkfdir/files/ttmkfdir-3.0.9-gcc33.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ttmkfdir-3.0.9/ttf.cpp.orig 2003-07-21 23:14:21.000000000 +0200
-+++ ttmkfdir-3.0.9/ttf.cpp 2003-07-21 23:15:35.000000000 +0200
-@@ -239,7 +239,7 @@
- for (i = 0; i < n; i++) {
- if ((fterror = FT_Get_Sfnt_Name (face, i, &NamePtr)) != FT_Err_Ok) {
- std::cout << "Warning: Can't SFNT name : " << FileName << "(" << fterror << ")" << std::endl;
-- return;
-+ return "invalid";
- };
- platform = NamePtr.platform_id;
- encoding = NamePtr.encoding_id;
diff --git a/x11-apps/ttmkfdir/files/ttmkfdir2-ignore-FIRSTINDEX.patch b/x11-apps/ttmkfdir/files/ttmkfdir2-ignore-FIRSTINDEX.patch
deleted file mode 100644
index c2652966e6a1..000000000000
--- a/x11-apps/ttmkfdir/files/ttmkfdir2-ignore-FIRSTINDEX.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ttmkfdir2/encoding.l.orig 2002-12-23 03:22:27.000000000 +0200
-+++ ttmkfdir2/encoding.l 2002-12-23 03:28:39.000000000 +0200
-@@ -167,7 +167,7 @@
- }
-
- [[:alnum:]]+ {
-- if (YY_START != INSIDE_UNKNOWN_MAP) {
-+ if ((YY_START != INSIDE_UNKNOWN_MAP) && (0 != strcmp(yytext,"FIRSTINDEX"))) {
- std::cerr << "unexpected token " << yytext << " in file " <<
- current_file << ", line " << line_number << std::endl;
- switch (YY_START) {
diff --git a/x11-apps/ttmkfdir/ttmkfdir-3.0.9-r2.ebuild b/x11-apps/ttmkfdir/ttmkfdir-3.0.9-r2.ebuild
deleted file mode 100644
index 59d5e3cc19b4..000000000000
--- a/x11-apps/ttmkfdir/ttmkfdir-3.0.9-r2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-apps/ttmkfdir/ttmkfdir-3.0.9-r2.ebuild,v 1.1 2005/12/14 17:41:47 joshuabaergen Exp $
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="A utility to create a fonts.scale file from a set of TrueType fonts"
-HOMEPAGE="http://www.joerg-pommnitz.de/TrueType/xfsft.html"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sparc x86"
-IUSE=""
-
-RDEPEND="virtual/libc
- sys-libs/zlib
- >=media-libs/freetype-2.0.8"
-
-DEPEND="${RDEPEND}
- >=sys-devel/flex-2.5.4a-r5
- sys-devel/libtool"
-
-src_unpack() {
-
- unpack ${A}
-
- cd ${S}
- epatch ${FILESDIR}/${P}-cpp.patch
- epatch ${FILESDIR}/${P}-zlib.patch
- epatch ${FILESDIR}/${P}-gcc34.patch
- epatch ${FILESDIR}/${P}-encoding.patch
- # fix pack to work with new freetype include scheme (#44119)
- epatch ${FILESDIR}/${P}-freetype_new_includes.patch
-
-}
-
-src_compile() {
- filter-flags -O -O? -foptimize-sibling-calls -fstack-protector
- emake \
- CXX="$(tc-getCXX)" \
- OPTFLAGS="${CFLAGS}" \
- DEBUG="" \
- || die "emake failed"
-}
-
-src_install() {
- exeinto /usr/X11R6/bin
- doexe ttmkfdir || die "doexe failed"
- dodoc README
-}