summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-12-29 13:17:57 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-12-29 13:17:57 +0000
commit2989890d61840c42db6ded9e5cc4d20a37188841 (patch)
tree7616daab46314d5fd0860c070bf8935c9a885446 /app-office/lyx/files
parentclean up (diff)
downloadhistorical-2989890d61840c42db6ded9e5cc4d20a37188841.tar.gz
historical-2989890d61840c42db6ded9e5cc4d20a37188841.tar.bz2
historical-2989890d61840c42db6ded9e5cc4d20a37188841.zip
Remove old unused ebuild that's inheriting deprecated kde-functions.eclass.
Package-Manager: portage-2.2_rc61/cvs/Linux x86_64
Diffstat (limited to 'app-office/lyx/files')
-rw-r--r--app-office/lyx/files/gnome-mime-application-x-lyx.pngbin3302 -> 0 bytes
-rw-r--r--app-office/lyx/files/lyx-1.4.4-gentoo.patch42
2 files changed, 0 insertions, 42 deletions
diff --git a/app-office/lyx/files/gnome-mime-application-x-lyx.png b/app-office/lyx/files/gnome-mime-application-x-lyx.png
deleted file mode 100644
index 0daf64611b2b..000000000000
--- a/app-office/lyx/files/gnome-mime-application-x-lyx.png
+++ /dev/null
Binary files differ
diff --git a/app-office/lyx/files/lyx-1.4.4-gentoo.patch b/app-office/lyx/files/lyx-1.4.4-gentoo.patch
deleted file mode 100644
index b790099af849..000000000000
--- a/app-office/lyx/files/lyx-1.4.4-gentoo.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -Naur lyx-1.4.4.orig/lib/configure.py lyx-1.4.4/lib/configure.py
---- lyx-1.4.4.orig/lib/configure.py 2007-02-14 08:20:29.000000000 +0900
-+++ lyx-1.4.4/lib/configure.py 2007-02-18 01:16:51.000000000 +0900
-@@ -227,7 +227,7 @@
- \\@@end
- ''')
- # run latex on chklatex.ltx and check result
-- if cmdOutput(LATEX + ' chklatex.ltx').find('ThisIsLaTeX2e') != -1:
-+ if cmdOutput(LATEX + ' --no-mktex=tfm chklatex.ltx').find('ThisIsLaTeX2e') != -1:
- # valid latex2e
- return LATEX
- else:
-@@ -364,7 +364,7 @@
- checkProg('a PS to PDF converter', ['ps2pdf13 $$i $$o'],
- rc_entry = [ r'\converter ps pdf "%%" ""' ])
- #
-- checkProg('a DVI to PS converter', ['dvips -o $$o $$i'],
-+ checkProg('a DVI to PS converter', ['dvips -R0 -o $$o $$i'],
- rc_entry = [ r'\converter dvi ps "%%" ""' ])
- #
- checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'],
-@@ -613,7 +613,7 @@
- cl.close()
- #
- # we have chklayouts.tex, then process it
-- fout = os.popen(LATEX + ' wrap_chkconfig.ltx')
-+ fout = os.popen(LATEX + ' --no-mktex=tfm wrap_chkconfig.ltx')
- while True:
- line = fout.readline()
- if not line:
-diff -Naur lyx-1.4.4.orig/lib/lyxrc.example lyx-1.4.4/lib/lyxrc.example
---- lyx-1.4.4.orig/lib/lyxrc.example 2005-09-08 18:20:16.000000000 +0900
-+++ lyx-1.4.4/lib/lyxrc.example 2007-02-18 01:16:51.000000000 +0900
-@@ -348,7 +348,7 @@
- # The converter command has 4 arguments: The source format, the target format,
- # the command, and additional flags.
- # For example, the following defines a DVI->Postscript converter:
--#\converter dvi ps "dvips -o $$o $$i" ""
-+#\converter dvi ps "dvips -R0 -o $$o $$i" ""
- # The variable name $$i is replaced with the name of the source file,
- # and $$o is replaced with the name of the target file.
- # The flags argument is a list of comma separated flags.