summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hill <rhill@gentoo.org>2010-09-19 04:54:39 +0000
committerRyan Hill <rhill@gentoo.org>2010-09-19 04:54:39 +0000
commitba6895c665ad04d74fa183908c4ce3bc3ec93ac5 (patch)
treeb71746d8cdbd3425ace11e0fb44fc1fdc1eae583 /app-text/ttf2pt1/files
parentStable for HPPA (bug #337295). (diff)
downloadhistorical-ba6895c665ad04d74fa183908c4ce3bc3ec93ac5.tar.gz
historical-ba6895c665ad04d74fa183908c4ce3bc3ec93ac5.tar.bz2
historical-ba6895c665ad04d74fa183908c4ce3bc3ec93ac5.zip
Remove old.
Package-Manager: portage-2.2_rc83/cvs/Linux x86_64
Diffstat (limited to 'app-text/ttf2pt1/files')
-rw-r--r--app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-gentoo.diff47
-rw-r--r--app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-multiline-sed.diff28
2 files changed, 0 insertions, 75 deletions
diff --git a/app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-gentoo.diff b/app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-gentoo.diff
deleted file mode 100644
index f7662653d8b5..000000000000
--- a/app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-gentoo.diff
+++ /dev/null
@@ -1,47 +0,0 @@
---- ttf2pt1-3.4.0/Makefile.orig Sun Oct 14 21:32:29 2001
-+++ ttf2pt1-3.4.0/Makefile Tue Mar 12 17:37:56 2002
-@@ -60,18 +60,18 @@
- # (if the include and lib directory do not match your installation,
- # modify them), also uncomment LIBS_FT
- #
--#CFLAGS_FT = -DUSE_FREETYPE -I/usr/local/include/freetype2 -I/usr/local/include
-+CFLAGS_FT = -DUSE_FREETYPE -I/usr/include/freetype2
-
- #
- # The FreeType-2 library flags (disabled by default)
-
--LIBS_FT=
-+#LIBS_FT=
-
- # To enable use of the FreeType-2 library
- # (if the include and lib directory do not match your installation,
- # modify them), also uncomment LIBS_FT
- #
--#LIBS_FT= -L/usr/local/lib -lfreetype
-+LIBS_FT= -L/usr/lib -lfreetype
-
- #
- # Preference of front-ends if multiple parsers match a file
-@@ -93,18 +93,18 @@
- # Installation-related stuff
- #
- # The base dir for installation and subdirs in it
--INSTDIR = /usr/local
-+INSTDIR = /usr
- # for binaries
- BINDIR = $(INSTDIR)/bin
- # for binaries of little general interest
--LIBXDIR = $(INSTDIR)/libexec/ttf2pt1
-+LIBXDIR = $(INSTDIR)/lib/ttf2pt1
- # for scripts, maps/encodings etc.
- SHAREDIR = $(INSTDIR)/share/ttf2pt1
--MANDIR = $(INSTDIR)/man
-+MANDIR = $(INSTDIR)/share/man
-
- # owner and group of installed files
- OWNER = root
--GROUP = bin
-+GROUP = root
-
- # After you have configured the Makefile, comment out the following
- # definition:
diff --git a/app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-multiline-sed.diff b/app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-multiline-sed.diff
deleted file mode 100644
index 739d89efc47c..000000000000
--- a/app-text/ttf2pt1/files/ttf2pt1-3.4.0-Makefile-multiline-sed.diff
+++ /dev/null
@@ -1,28 +0,0 @@
---- ttf2pt1-3.4.0/Makefile.orig 2006-05-01 13:19:26.000000000 +0200
-+++ ttf2pt1-3.4.0/Makefile 2006-05-01 13:20:39.000000000 +0200
-@@ -213,17 +213,19 @@
- chmod -R go-w $(SHAREDIR)
- scripts/inst_file ttf2pt1 $(BINDIR)/ttf2pt1 $(OWNER) $(GROUP) 0755
- [ -f $(BINDIR)/t1asm ] || scripts/inst_file t1asm $(LIBXDIR)/t1asm $(OWNER) $(GROUP) 0755
-- sed 's|^TTF2PT1_BINDIR=$$|TTF2PT1_BINDIR=$(BINDIR)|;\
-- s|^TTF2PT1_LIBXDIR=$$|TTF2PT1_LIBXDIR=$(LIBXDIR)|;\
-- s|^TTF2PT1_SHAREDIR=$$|TTF2PT1_SHAREDIR=$(SHAREDIR)|;' <scripts/convert >cvt.tmp
-+ sed -e 's|^TTF2PT1_BINDIR=$$|TTF2PT1_BINDIR=$(BINDIR)|' \
-+ -e 's|^TTF2PT1_LIBXDIR=$$|TTF2PT1_LIBXDIR=$(LIBXDIR)|' \
-+ -e 's|^TTF2PT1_SHAREDIR=$$|TTF2PT1_SHAREDIR=$(SHAREDIR)|' \
-+ <scripts/convert >cvt.tmp
- scripts/inst_file cvt.tmp $(BINDIR)/ttf2pt1_convert $(OWNER) $(GROUP) 0755
- scripts/inst_file cvt.tmp $(SHAREDIR)/scripts/convert $(OWNER) $(GROUP) 0755
- rm cvt.tmp
- scripts/inst_file scripts/x2gs $(BINDIR)/ttf2pt1_x2gs $(OWNER) $(GROUP) 0755
- for i in $(MANS1); do { \
-- sed 's|TTF2PT1_BINDIR|$(BINDIR)|;\
-- s|TTF2PT1_LIBXDIR|$(LIBXDIR)|;\
-- s|TTF2PT1_SHAREDIR|$(SHAREDIR)|;' <$$i >$(MANDIR)/man1/$$i \
-+ sed -e 's|TTF2PT1_BINDIR|$(BINDIR)|' \
-+ -e 's|TTF2PT1_LIBXDIR|$(LIBXDIR)|' \
-+ -e 's|TTF2PT1_SHAREDIR|$(SHAREDIR)|' \
-+ <$$i >$(MANDIR)/man1/$$i \
- && chown $(OWNER) $(MANDIR)/man1/$$i \
- && chgrp $(GROUP) $(MANDIR)/man1/$$i \
- && chmod 0644 $(MANDIR)/man1/$$i \