diff options
author | Daniel Gryniewicz <dang@gentoo.org> | 2005-06-17 20:15:11 +0000 |
---|---|---|
committer | Daniel Gryniewicz <dang@gentoo.org> | 2005-06-17 20:15:11 +0000 |
commit | 711f68e7186c2df1dca87a45d595af75e0f44498 (patch) | |
tree | ad3fdda6129ee3b5f804191805696e93386d9d54 /app-text/evince/files | |
parent | Stable on ppc. (diff) | |
download | gentoo-2-711f68e7186c2df1dca87a45d595af75e0f44498.tar.gz gentoo-2-711f68e7186c2df1dca87a45d595af75e0f44498.tar.bz2 gentoo-2-711f68e7186c2df1dca87a45d595af75e0f44498.zip |
Initial portage version
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-text/evince/files')
-rw-r--r-- | app-text/evince/files/digest-evince-0.3.1 | 1 | ||||
-rw-r--r-- | app-text/evince/files/evince-0.3.1-t1lib_is_t1.patch | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/app-text/evince/files/digest-evince-0.3.1 b/app-text/evince/files/digest-evince-0.3.1 new file mode 100644 index 000000000000..fb2e926dad80 --- /dev/null +++ b/app-text/evince/files/digest-evince-0.3.1 @@ -0,0 +1 @@ +MD5 9338ba260855188cfebf3bfabf3a861a evince-0.3.1.tar.bz2 674654 diff --git a/app-text/evince/files/evince-0.3.1-t1lib_is_t1.patch b/app-text/evince/files/evince-0.3.1-t1lib_is_t1.patch new file mode 100644 index 000000000000..979735a45a2c --- /dev/null +++ b/app-text/evince/files/evince-0.3.1-t1lib_is_t1.patch @@ -0,0 +1,33 @@ +--- evince-0.3.0.orig/configure.ac 2005-05-08 20:44:46.000000000 +0200 ++++ evince-0.3.0/configure.ac 2005-05-08 20:45:21.000000000 +0200 +@@ -149,7 +149,7 @@ + + if test "x$enable_dvi" = "xyes"; then + if test "x$enable_type1_fonts" = "xyes"; then +- AC_CHECK_LIB([t1lib],T1_InitLib,enable_type1_fonts=yes,enable_type1_fonts=no) ++ AC_CHECK_LIB([t1],T1_InitLib,enable_type1_fonts=yes,enable_type1_fonts=no,-lm) + fi + + if test "x$enable_type1_fonts" = xyes; then +--- evince-0.3.0.orig/dvi/Makefile.am 2005-05-08 20:39:09.000000000 +0200 ++++ evince-0.3.0/dvi/Makefile.am 2005-05-08 20:46:03.000000000 +0200 +@@ -21,7 +21,7 @@ + $(DVI_LIBS) -lkpathsea + + if WITH_TYPE1_FONTS +-libgtkdvi_la_LIBADD += -lt1lib ++libgtkdvi_la_LIBADD += -lt1 -lm + endif + + +--- evince-0.3.0/dvi/mdvi-lib/t1.c.orig 2005-05-09 12:31:20.000000000 +0200 ++++ evince-0.3.0/dvi/mdvi-lib/t1.c 2005-05-09 12:31:46.000000000 +0200 +@@ -174,7 +174,7 @@ + DEBUG((DBG_TYPE1, "(t1) resetting device resolution (current: (%d,%d))\n", + t1lib_xdpi, t1lib_ydpi)); + +- nfonts = T1_Get_no_fonts(); ++ nfonts = T1_GetNoFonts(); + for(i = 0; i < nfonts; i++) + T1_DeleteAllSizes(i); + /* reset device resolutions */ |