diff options
author | 2003-06-09 07:32:20 +0000 | |
---|---|---|
committer | 2003-06-09 07:32:20 +0000 | |
commit | e4237a0a31be164aeea9355a25df850d7b2674e7 (patch) | |
tree | 35a00a2f117ea9645ac071c4e51c35b9ce4994f3 /app-text | |
parent | Adding all the new dev-tex entries. I think the digests/manifests are all set (diff) | |
download | historical-e4237a0a31be164aeea9355a25df850d7b2674e7.tar.gz historical-e4237a0a31be164aeea9355a25df850d7b2674e7.tar.bz2 historical-e4237a0a31be164aeea9355a25df850d7b2674e7.zip |
Removing all the old latex packages, preparing for dev-tex.
Diffstat (limited to 'app-text')
47 files changed, 0 insertions, 853 deletions
diff --git a/app-text/cpp2latex/ChangeLog b/app-text/cpp2latex/ChangeLog deleted file mode 100644 index 70d07dac6e2b..000000000000 --- a/app-text/cpp2latex/ChangeLog +++ /dev/null @@ -1,16 +0,0 @@ -# ChangeLog for app-text/cpp2latex -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/cpp2latex/ChangeLog,v 1.2 2003/02/12 05:22:30 vapier Exp $ - -*cpp2latex-2.2 (31 Dec 2002) - - 31 Dec 2002; Richard Garand <richard@garandnet.net> - - Version bump; added patch to fix gcc 3 errors and add option - to prevent linewrapping. - -*cpp2latex-2.1 (03 Oct 2002) - - 03 Oct 2002; Richard Garand <richard@garandnet.net> - - First ebuild. diff --git a/app-text/cpp2latex/Manifest b/app-text/cpp2latex/Manifest deleted file mode 100644 index 740f9b2d29ed..000000000000 --- a/app-text/cpp2latex/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -MD5 0af205cfaad4f5824a83b0d35c19e93f ChangeLog 495 -MD5 d288704f7ede0342d7a7496324e360c1 cpp2latex-2.2.ebuild 696 -MD5 8d070a7f0ef6e8e397177d4e6d1f5694 files/digest-cpp2latex-2.2 65 -MD5 10328506b7ce2bd8214880117f387093 files/main.cpp.patch 9876 diff --git a/app-text/cpp2latex/cpp2latex-2.2.ebuild b/app-text/cpp2latex/cpp2latex-2.2.ebuild deleted file mode 100644 index 22c8ab3e9e7d..000000000000 --- a/app-text/cpp2latex/cpp2latex-2.2.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-text/cpp2latex/cpp2latex-2.2.ebuild,v 1.3 2003/02/28 13:18:14 liquidx Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="A program to convert C++ code to LaTeX source" -SRC_URI="http://www.arnoldarts.de/${P}.tar.gz" -HOMEPAGE="http://www.arnoldarts.de/cpp2latex.html" - -DEPEND="virtual/glibc - app-text/tetex" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 ppc" - -src_unpack () { - unpack ${A} - cd ${S} - patch -p 0 < ${FILESDIR}/main.cpp.patch -} - -src_compile () { - econf - emake -} - -src_install () { - make install DESTDIR=${D} || die make install failed -} diff --git a/app-text/cpp2latex/files/digest-cpp2latex-2.2 b/app-text/cpp2latex/files/digest-cpp2latex-2.2 deleted file mode 100644 index df487ced7096..000000000000 --- a/app-text/cpp2latex/files/digest-cpp2latex-2.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 6beb9af29be4853433b5a3ba4daff745 cpp2latex-2.2.tar.gz 484191 diff --git a/app-text/cpp2latex/files/main.cpp.patch b/app-text/cpp2latex/files/main.cpp.patch deleted file mode 100644 index b53ff91c7ab7..000000000000 --- a/app-text/cpp2latex/files/main.cpp.patch +++ /dev/null @@ -1,242 +0,0 @@ ---- cpp2latex/main.cpp 2002-12-23 11:17:05.000000000 -0600 -+++ main.cpp 2002-12-31 11:23:20.000000000 -0600 -@@ -28,15 +28,16 @@ - #include <getopt.h> - - struct replace{ -- string voraus; -- string ersetzt; -+ std::string voraus; -+ std::string ersetzt; - }; - --vector <replace> rules; --string syntax( ifstream *src, char *c ); -+std::vector <replace> rules; -+std::string syntax( std::ifstream *src, char *c ); - void initReplace(); - bool satzzeichen( char c ); --bool satzzeichen( ifstream *src ); -+bool satzzeichen( std::ifstream *src ); -+void addLine( std::string &add, std::string &to, bool wrapsafe = false ); - - int main(int argc, char *argv[]) - { -@@ -55,6 +56,7 @@ - zeichen=false, // ob das vorherige Zeichen ein Satzzeichen war. - highlight=false, - linenumbering=false, -+ wrapsafe=false, - inc=false // if we are inside an include-statement. - ; - int skip=17, -@@ -62,7 +64,7 @@ - line=1, - optcount=1, - optch=0; --string tab=""; -+std::string tab=""; - - for(int i=0; i<argc; i++) - if( !strcmp(argv[i],"--help") ) { help=true; } -@@ -71,7 +73,7 @@ - - if(!help) // If Help isn't wanted: - { -- while( ( optch=getopt( argc,argv, "s:cCft:gphHn" ) ) > 0 ) -+ while( ( optch=getopt( argc,argv, "s:cCft:gphHnw" ) ) > 0 ) - switch( optch ) - { - case 's': skip=atoi( optarg ); optcount+=2; break; // Skip n lines at the beginning of the file. -@@ -83,37 +85,41 @@ - case 'p': ps=true; optcount++; break; // Use Postscriptfonts. - case 'h': highlight=true; optcount++; break; // Turn on syntax higlighting. - case 'n': linenumbering=true; optcount++; break; // Print the linenumbers. -+ case 'w': wrapsafe=true; optcount++; break; // Protect against linewrapping - } - -- cerr<<endl<<"Processing file "<<argv[optcount]<<endl; --ifstream file; -+ std::cerr<<"This program has been modified for Gentoo Linux"<<std::endl; -+ std::cerr<<std::endl<<"Processing file "<<argv[optcount]<<std::endl; -+std::ifstream file; - file.open( argv[optcount] ); - - // Skip lines -- cerr<<" Skipping "<<skip<<" lines."<<endl; -+ std::cerr<<" Skipping "<<skip<<" lines."<<std::endl; - for(int i=0; i<skip; i++) - { -- char* tmp; -- file.gets( &tmp ); -+ std::string temp; -+ getline(file, temp); - } - - // Set tabspace -- cerr<<" Tabspace set to "<<tabspace<<" spaces."<<endl; -+ std::cerr<<" Tabspace set to "<<tabspace<<" spaces."<<std::endl; - for(int i=0; i<tabspace; i++) - tab+="\\ "; - - // Enable-Messages -- if( highlight ) cerr<<" Syntax-highlighting enabled."<<endl; -- if( highlight && !ps ) cerr<<" * You should use Postscriptfonts since the normal TeX *"<<endl -- <<" * Computer Modern has no bold face for the fixedwidth. *"<<endl; -- if(full) cerr<<" Full-LaTeX-output enabled."<<endl; -- if(ps) cerr<<" PostScriptFonts enabled."<<endl; -- if(geometry) cerr<<" Geometry-package enabled."<<endl; -- if(strcom) cerr<<" String-constants in comments are typesetted in Roman too."<<endl; -- if(linenumbering) cerr<<" Linenumbering is enabled."<<endl; -+ if( highlight ) std::cerr<<" Syntax-highlighting enabled."<<std::endl; -+ if( highlight && !ps ) std::cerr<<" * You should use Postscriptfonts since the normal TeX *"<<std::endl -+ <<" * Computer Modern has no bold face for the fixedwidth. *"<<std::endl; -+ if(full) std::cerr<<" Full-LaTeX-output enabled."<<std::endl; -+ if(ps) std::cerr<<" PostScriptFonts enabled."<<std::endl; -+ if(geometry) std::cerr<<" Geometry-package enabled."<<std::endl; -+ if(strcom) std::cerr<<" String-constants in comments are typesetted in Roman too."<<std::endl; -+ if(linenumbering) std::cerr<<" Linenumbering is enabled."<<std::endl; -+ if(wrapsafe) std::cerr<<" Linewrap protection enabled."<<std::endl; - - // Ausgabestring initialisieren --string out="{\\ttfamily \\raggedright \\small\n"; -+std::string output="{\\ttfamily \\raggedright \\small\n"; -+std::string out; - if(linenumbering) out+="001 "; - - // Here we go: -@@ -188,7 +194,8 @@ - case '\n': - if(blankline) out+="\\ "; - if(comment1) { out+="}"; comment1=false; } -- out+="\\\\"; out+=c; blankline=true; -+ addLine( out, output, wrapsafe ); -+ output+="\\\\"; output+=c; blankline=true; - char str[10]; - sprintf(str,"%03d ",line); - if(linenumbering) out+=str; -@@ -220,13 +227,14 @@ - } - zeichen = satzzeichen( c ); - } -- -- out+=" }\n\\normalfont\\normalsize\n\n"; -+ // if the file doesn't end with a newline we need to add the last line -+ addLine( out, output, wrapsafe ); -+ output+=" }\n\\normalfont\\normalsize\n\n"; - - // * * * Full LaTeX-Files: - if(full) - { -- string tmp=""; -+ std::string tmp=""; - tmp+="\\documentclass[a4paper,10pt]{article}\n"; - tmp+="\\usepackage[T1]{fontenc}\n"; - tmp+="\\usepackage{isolatin1,german}\n"; -@@ -237,52 +245,53 @@ - tmp+="\\parindent0cm\n"; - tmp+="\\parskip1.5ex\n"; - tmp+="\\begin{document}\n"; -- tmp+=out; -+ tmp+=output; - tmp+="\\end{document}\n"; -- out=tmp; -+ output=tmp; - } - - // * * * Output * * * -- cout<<out; -+ std::cout<<output; - file.close(); -- cerr<<"Everything went well."<<endl<<endl; -+ std::cerr<<"Everything went well."<<std::endl<<std::endl; - } - else // * * * Helptext * * * - { -- cerr<<endl<<"Usage: "<<argv[0]<<" [options] <filename>"<<endl<<endl -- <<"<filename> is the name of the file you want to convert."<<endl -- <<"The resulting LaTeX-code comes to stdout which you can redirect to a file or pipe to LaTeX."<<endl<<endl -- <<"Possible Options are:"<<endl -- <<" -c : Controls wether String constants in Comments are typesetted in roman or not."<<endl -- <<" Default is not."<<endl -- <<" -C : Prints string constants in roman."<<endl -- <<" -f : The output is not only a text to insert into an existing LaTeX-document,"<<endl -- <<" but a full document with header and so on."<<endl -- <<" Default is not."<<endl -- <<" -g : If a full LaTeX-file is created: Adds geometry-package with 2cm margin on all sides"<<endl -- <<" Default is off."<<endl -- <<" -p : If a full LaTeX-file is created: Adds PostScript fonts {times,helvet,courier}."<<endl -- <<" Default is off. courier is used for the code, times for the string constants."<<endl -- <<" -h : Enables Syntax Highlighting."<<endl -- <<" Now implemented for C++."<<endl -- <<" -s <number> : Controls how many lines are to be skipped at the beginning of the file."<<endl -- <<" Default are 17 lines which is the normal KDevelop-header."<<endl -- <<" -t <number> : Controls how many spaces should be inserted for a tabulator."<<endl -- <<" Default is 2"<<endl -- <<" -n : Turn on Line numbering. (Thanks to Eduard Bröcker)"<<endl -- <<" --help : Shows this helpmessage."<<endl<<endl; -+ std::cerr<<std::endl<<"Usage: "<<argv[0]<<" [options] <filename>"<<std::endl<<std::endl -+ <<"<filename> is the name of the file you want to convert."<<std::endl -+ <<"The resulting LaTeX-code comes to stdout which you can redirect to a file or pipe to LaTeX."<<std::endl<<std::endl -+ <<"Possible Options are:"<<std::endl -+ <<" -c : Controls wether String constants in Comments are typesetted in roman or not."<<std::endl -+ <<" Default is not."<<std::endl -+ <<" -C : Prints string constants in roman."<<std::endl -+ <<" -f : The output is not only a text to insert into an existing LaTeX-document,"<<std::endl -+ <<" but a full document with header and so on."<<std::endl -+ <<" Default is not."<<std::endl -+ <<" -g : If a full LaTeX-file is created: Adds geometry-package with 2cm margin on all sides"<<std::endl -+ <<" Default is off."<<std::endl -+ <<" -p : If a full LaTeX-file is created: Adds PostScript fonts {times,helvet,courier}."<<std::endl -+ <<" Default is off. courier is used for the code, times for the string constants."<<std::endl -+ <<" -h : Enables Syntax Highlighting."<<std::endl -+ <<" Now implemented for C++."<<std::endl -+ <<" -s <number> : Controls how many lines are to be skipped at the beginning of the file."<<std::endl -+ <<" Default are 17 lines which is the normal KDevelop-header."<<std::endl -+ <<" -t <number> : Controls how many spaces should be inserted for a tabulator."<<std::endl -+ <<" Default is 2"<<std::endl -+ <<" -n : Turn on Line numbering. (Thanks to Eduard Bröcker)"<<std::endl -+ <<" -w : Make sure long lines don't wrap."<<std::endl -+ <<" --help : Shows this helpmessage."<<std::endl<<std::endl; - } - -- cerr<<"(c)2001 by Arnold Krille <arnold@arnoldarts.de>"<<endl -- <<"> http://www.arnoldarts.de/ <"<<endl<<endl; -+ std::cerr<<"(c)2001 by Arnold Krille <arnold@arnoldarts.de>"<<std::endl -+ <<"> http://www.arnoldarts.de/ <"<<std::endl<<std::endl; - - return EXIT_SUCCESS; - } - - /** Syntaxhighlighting Funktion */ --string syntax( ifstream *src, char *c ) -+std::string syntax( std::ifstream *src, char *c ) - { --string out=""; -+std::string out=""; - bool stimmt=false; - for(int i=0; i<int(rules.size()); i++) - { -@@ -406,9 +415,21 @@ - } - - /** Gibt true zurück, wenn es sich beim nächsten Zeichen um ein Satzzeichen handelt. */ --bool satzzeichen( ifstream *src ){ -+bool satzzeichen( std::ifstream *src ){ - char c; - src->get( c ); - src->unget(); - return satzzeichen( c ); - } -+ -+/** add add to to, if wrapsafe is true use mbox on long lines, clear add */ -+void addLine( std::string &add, std::string &to, bool wrapsafe ) -+{ -+ if ( add.length() > 65 && wrapsafe ) { -+ to += "\\mbox{"; -+ to += add; -+ to += "}"; -+ } else -+ to += add; -+ add = ""; -+} diff --git a/app-text/latex-SIunits/ChangeLog b/app-text/latex-SIunits/ChangeLog deleted file mode 100644 index 649e6764dc3c..000000000000 --- a/app-text/latex-SIunits/ChangeLog +++ /dev/null @@ -1,12 +0,0 @@ -# ChangeLog for app-text/latex-SIunits -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-SIunits/ChangeLog,v 1.3 2003/02/13 20:38:40 vapier Exp $ - -*latex-SIunits (19 January 2002) - - 19 January 2003; Felix Kurth <felix@fkurth.de> : - - Initial release - - - diff --git a/app-text/latex-SIunits/Manifest b/app-text/latex-SIunits/Manifest deleted file mode 100644 index e8dce939598c..000000000000 --- a/app-text/latex-SIunits/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 352f726f0fab31726bbe187965815d59 ChangeLog 335 -MD5 4575ad9e6f26f0d46a842b660818d752 SIunits-1.25.ebuild 570 -MD5 6a957c7c3adb3eaf4a7e98314cfde2bb files/digest-SIunits-1.25 59 diff --git a/app-text/latex-SIunits/SIunits-1.25.ebuild b/app-text/latex-SIunits/SIunits-1.25.ebuild deleted file mode 100644 index 3680c4f9daee..000000000000 --- a/app-text/latex-SIunits/SIunits-1.25.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# Maintainer: Felix Kurth <felix@fkurth.de> - -inherit latex-package -S=${WORKDIR}/SIunits -DESCRIPTION="LaTeX package used to set SI units correct." -SRC_URI="ftp://ftp.dante.de/tex-archive/macros/latex/contrib/supported/SIunits.tar.gz" -HOMEPAGE="ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/siunits.html" -LICENSE="LPPL-1.2" -SLOT="0" -KEYWORDS="~x86 ~ppc" - - -src_install () { - latex-package_src_doinstall all - cd ${S} - dodoc readme.txt SIunits.pdf -} - diff --git a/app-text/latex-SIunits/files/digest-SIunits-1.25 b/app-text/latex-SIunits/files/digest-SIunits-1.25 deleted file mode 100644 index afc460428987..000000000000 --- a/app-text/latex-SIunits/files/digest-SIunits-1.25 +++ /dev/null @@ -1 +0,0 @@ -MD5 2f76cb947dc3e55dbd5f95de3cfdc268 SIunits.tar.gz 411639 diff --git a/app-text/latex-aastex/ChangeLog b/app-text/latex-aastex/ChangeLog deleted file mode 100644 index ff6b6d1631fd..000000000000 --- a/app-text/latex-aastex/ChangeLog +++ /dev/null @@ -1,11 +0,0 @@ -# ChangeLog for app-text/latex-aastex -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-aastex/ChangeLog,v 1.2 2003/02/12 05:31:56 vapier Exp $ - -*latex-aastex-5.0.2 (14 Jul 2002) - - 14 Jul 2002; Bruce A. Locke <blocke@shivan.org> latex-aastex-5.0.2.ebuild files/digest-latex-aastex-5.0.2: - - Initial version contributed by m-turk@nwu.edu (Matthew Turk) - - diff --git a/app-text/latex-aastex/Manifest b/app-text/latex-aastex/Manifest deleted file mode 100644 index df7288334ef6..000000000000 --- a/app-text/latex-aastex/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 4089253398322d4b5b34e781627b48c2 ChangeLog 434 -MD5 c8e8428b0271d661e213fe7a8f01ce78 aastex-5.0.2.ebuild 617 -MD5 7b46cd0dfad7652ed3fcc7b500eb5269 files/digest-aastex-5.0.2 61 diff --git a/app-text/latex-aastex/aastex-5.0.2.ebuild b/app-text/latex-aastex/aastex-5.0.2.ebuild deleted file mode 100644 index 034d0b85c447..000000000000 --- a/app-text/latex-aastex/aastex-5.0.2.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-aastex/aastex-5.0.2.ebuild,v 1.1 2003/06/09 07:26:52 satai Exp $ - -inherit latex-package - -MY_P=${PN/latex-/}${PV//./} -S=${WORKDIR}/${MY_P} -DESCRIPTION="LaTeX package used to mark up manuscripts for American Astronomical Society journals. (AASTeX)" -HOMEPAGE="http://www.journals.uchicago.edu/AAS/AASTeX/" -SRC_URI="http://www.journals.uchicago.edu/AAS/AASTeX/${MY_P}.tar.gz" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 ppc sparc alpha mips hppa arm" diff --git a/app-text/latex-aastex/files/digest-aastex-5.0.2 b/app-text/latex-aastex/files/digest-aastex-5.0.2 deleted file mode 100644 index 08df8a519445..000000000000 --- a/app-text/latex-aastex/files/digest-aastex-5.0.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 55c1a91d822b00db7c1b11c78274efad aastex502.tar.gz 137128 diff --git a/app-text/latex-calendar/ChangeLog b/app-text/latex-calendar/ChangeLog deleted file mode 100644 index 16f4fad6a231..000000000000 --- a/app-text/latex-calendar/ChangeLog +++ /dev/null @@ -1,14 +0,0 @@ -# ChangeLog for app-text/latex-calendar -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-calendar/ChangeLog,v 1.6 2003/02/12 05:32:01 vapier Exp $ - - 08 Jan 2003; Matthew Turk <satai@gentoo.org> : - Marked as stable. - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*latex-calendar-3.1 (04 Nov 2002) - - 04 Nov 2002; Matthew Turk <satai@gentoo.org> latex-calendar-3.1.ebuild : - Initial import. A very useful and beautiful calendar creator package for - LaTeX. Very flexible. diff --git a/app-text/latex-calendar/Manifest b/app-text/latex-calendar/Manifest deleted file mode 100644 index 87542dcc83bd..000000000000 --- a/app-text/latex-calendar/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 f26b619dd658cbfd8646654253c704ed ChangeLog 590 -MD5 6bf1ba333335ca194349dbd943951149 latex-calendar-3.1.ebuild 965 -MD5 a7c07e7954e3f87a21cedadbcf43e1ff files/digest-latex-calendar-3.1 70 diff --git a/app-text/latex-calendar/files/digest-latex-calendar-3.1 b/app-text/latex-calendar/files/digest-latex-calendar-3.1 deleted file mode 100644 index fc784d5f852c..000000000000 --- a/app-text/latex-calendar/files/digest-latex-calendar-3.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 e24f06db67bfc8f6c16f1918efde7247 latex-calendar-3.1.tar.gz 108537 diff --git a/app-text/latex-calendar/latex-calendar-3.1.ebuild b/app-text/latex-calendar/latex-calendar-3.1.ebuild deleted file mode 100644 index 228debe22534..000000000000 --- a/app-text/latex-calendar/latex-calendar-3.1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-calendar/latex-calendar-3.1.ebuild,v 1.5 2003/02/13 09:40:03 vapier Exp $ - -inherit latex-package - -MY_P="calendar" -S=${WORKDIR}/${MY_P} -DESCRIPTION="LaTeX package used to create Calendars. Very flexible and robust." -SRC_URI="http://www.ibiblio.org/gentoo/distfiles/${P}.tar.gz" -HOMEPAGE="ftp://ibiblio.org/pub/packages/TeX/macros/latex/contrib/supported/" -LICENSE="as-is" -SLOT="0" -KEYWORDS="x86 sparc ppc" - -src_compile() { - debug-print function $FUNCNAME $* - cd ${S} - echo "Extracting from allcal.ins" - echo "y - y" | latex allcal.ins > /dev/null -} - -src_install() { - cd ${S} - texi2dvi -q -c --language=latex calguide.tex &> /dev/null - latex-package_src_doinstall styles fonts bin dvi - dodoc README MANIFEST CATALOG - insinto /usr/share/doc/${P}/samples - doins bigdemo.tgz *.cfg *.tex *.cld -} diff --git a/app-text/latex-cdcover/ChangeLog b/app-text/latex-cdcover/ChangeLog deleted file mode 100644 index d283f4360fda..000000000000 --- a/app-text/latex-cdcover/ChangeLog +++ /dev/null @@ -1,8 +0,0 @@ -# ChangeLog for app-text/latex-cdcover -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-cdcover/ChangeLog,v 1.3 2003/02/12 05:32:05 vapier Exp $ - -*latex-cdcover-1.3b (14 Aug 2002) - - 14 Aug 2002; Matthew Turk <satai@gentoo.org> Initial - Added latex-cdcover, a LaTeX package for creating CD covers. diff --git a/app-text/latex-cdcover/Manifest b/app-text/latex-cdcover/Manifest deleted file mode 100644 index c94775ac501a..000000000000 --- a/app-text/latex-cdcover/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 e228c10412cbf4d5fd6264d19d34af1f ChangeLog 379 -MD5 63b837c2336305da5103b8aa4deb9c32 cdcover-1.3b.ebuild 593 -MD5 8adaa86caf1c14f89af2923e5c8000a7 files/digest-cdcover-1.3b 63 diff --git a/app-text/latex-cdcover/cdcover-1.3b.ebuild b/app-text/latex-cdcover/cdcover-1.3b.ebuild deleted file mode 100644 index ad53b66e2930..000000000000 --- a/app-text/latex-cdcover/cdcover-1.3b.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-cdcover/cdcover-1.3b.ebuild,v 1.1 2003/06/09 07:26:52 satai Exp $ - -inherit latex-package - -S=${WORKDIR}/cdcover -DESCRIPTION="LaTeX package used to create CD case covers." -SRC_URI="http://www.ibiblio.org/gentoo/distfiles/${P}.tar.gz" -HOMEPAGE="ftp://ibiblio.org/pub/packages/TeX/macros/latex/contrib/supported/" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" - -# checksum from official ftp site changes frequently so we mirror it diff --git a/app-text/latex-cdcover/files/digest-cdcover-1.3b b/app-text/latex-cdcover/files/digest-cdcover-1.3b deleted file mode 100644 index 644380cf4fa5..000000000000 --- a/app-text/latex-cdcover/files/digest-cdcover-1.3b +++ /dev/null @@ -1 +0,0 @@ -MD5 959c308d6371a06854e0a882b3ba6e4d cdcover-1.3b.tar.gz 14597 diff --git a/app-text/latex-eurosym/ChangeLog b/app-text/latex-eurosym/ChangeLog deleted file mode 100644 index 5f2827f13482..000000000000 --- a/app-text/latex-eurosym/ChangeLog +++ /dev/null @@ -1,12 +0,0 @@ -# ChangeLog for app-text/latex-eurosym -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-eurosym/ChangeLog,v 1.3 2003/02/13 20:38:45 vapier Exp $ - -*latex-eurosym-1.2 (19 January 2002) - - 19 January 2003; Felix Kurth <felix@fkurth,de> : - - Initial release - - - diff --git a/app-text/latex-eurosym/Manifest b/app-text/latex-eurosym/Manifest deleted file mode 100644 index 8d4b266fa252..000000000000 --- a/app-text/latex-eurosym/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 8efcff275e4e9f310574799f224d39f0 ChangeLog 339 -MD5 2ca573702855564994dff675412e8dd8 eurosym-1.2.ebuild 1150 -MD5 bf6c1d96c8df267854ec096a6c55ec78 files/digest-eurosym-1.2 59 diff --git a/app-text/latex-eurosym/eurosym-1.2.ebuild b/app-text/latex-eurosym/eurosym-1.2.ebuild deleted file mode 100644 index 085410a9b821..000000000000 --- a/app-text/latex-eurosym/eurosym-1.2.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# Maintainer: Felix Kurth <felix@fkurth.de> - -inherit latex-package -S=${WORKDIR}/eurosym -DESCRIPTION="LaTeX package and fonts used to set the euro (currency) symbol." -SRC_URI="ftp://ftp.dante.de/tex-archive/fonts/eurosym.tar.gz" -HOMEPAGE="ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/eurosym.html" -LICENSE="as-is" -SLOT="0" -KEYWORDS="~x86 ~ppc" -SUPPLIER="public" - -src_install() { - cd ${S} - cd src - latex-package_src_doinstall all - cd ${S} - cd tfm - latex-package_src_doinstall all - cd ${S} - cd sty - latex-package_src_doinstall all - cd ${S} - insinto ${TEXMF}/fonts/type1/${SUPPLIER}/latex-eurosym - doins contrib/type1/fonts/type1/eurosym/* - insinto ${TEXMF}/dvips/config/ - doins contrib/type1/dvips/eurosym.map - cd ${S} - dodoc README Changes - cd doc - dodoc * - } - -pkg_postinst() { - latex-package_pkg_postinst - einfo "" - einfo "Please edit \"/usr/share/texmf/dvips/config/updmap\" and" - einfo "add \"eurosym.map\" on line 24 (extra_modules)" - einfo "Then run \"/usr/share/texmf/dvips/config/updmap\"" - einfo "" -} diff --git a/app-text/latex-eurosym/files/digest-eurosym-1.2 b/app-text/latex-eurosym/files/digest-eurosym-1.2 deleted file mode 100644 index 0b4b5cf4d387..000000000000 --- a/app-text/latex-eurosym/files/digest-eurosym-1.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 2380524da188a992a754d500bc732eef eurosym.tar.gz 151186 diff --git a/app-text/latex-floatflt/ChangeLog b/app-text/latex-floatflt/ChangeLog deleted file mode 100644 index 57846e0e8f1d..000000000000 --- a/app-text/latex-floatflt/ChangeLog +++ /dev/null @@ -1,14 +0,0 @@ -# ChangeLog for app-text/latex-floatflt -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 - - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*latex-floatflt-1.31a (01 July 2002) - - 01 July 2002; Felix Kurth <felix@fkurth,de> : - - Initial release - - - diff --git a/app-text/latex-floatflt/Manifest b/app-text/latex-floatflt/Manifest deleted file mode 100644 index ce65ff184011..000000000000 --- a/app-text/latex-floatflt/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 de3b1472b412ddc53c2c711b6d0e1187 ChangeLog 311 -MD5 d3a604fc6601095188cf05299081c480 floatflt-1.31a.ebuild 542 -MD5 334f49057e2692bb8b1ffd35d6b3eae8 files/digest-floatflt-1.31a 59 diff --git a/app-text/latex-floatflt/files/digest-floatflt-1.31a b/app-text/latex-floatflt/files/digest-floatflt-1.31a deleted file mode 100644 index 49dac43e0950..000000000000 --- a/app-text/latex-floatflt/files/digest-floatflt-1.31a +++ /dev/null @@ -1 +0,0 @@ -MD5 36ac8d58d8ea6a3e4c29d109b173c4a5 floatflt.tar.gz 19811 diff --git a/app-text/latex-floatflt/floatflt-1.31a.ebuild b/app-text/latex-floatflt/floatflt-1.31a.ebuild deleted file mode 100644 index 2674bca7b6a1..000000000000 --- a/app-text/latex-floatflt/floatflt-1.31a.ebuild +++ /dev/null @@ -1,14 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# Maintainer: Felix Kurth <felix@fkurth.de> - -inherit latex-package - -S=${WORKDIR}/floatflt -DESCRIPTION="LaTeX package used to warp figures around text" -SRC_URI="ftp://ftp.dante.de/tex-archive/macros/latex/contrib/other/floatflt.tar.gz" -HOMEPAGE="http://www.ctan.org/tex-archive/help/Catalogue/entries/floatflt.html?action=/tex-archive/macros/latex/contrib/other/floatflt/" -LICENSE="LPPL-1.2" -SLOT="0" -KEYWORDS="x86 ppc sparc " - diff --git a/app-text/latex-foiltex/ChangeLog b/app-text/latex-foiltex/ChangeLog deleted file mode 100644 index 589d60fda553..000000000000 --- a/app-text/latex-foiltex/ChangeLog +++ /dev/null @@ -1,14 +0,0 @@ -# ChangeLog for app-text/latex-foiltex -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 - - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*latex-foiltex-2.1.3 (01 July 2002) - - 01 July 2002; Felix Kurth <felix@fkurth,de> : - - Initial release - - - diff --git a/app-text/latex-foiltex/Manifest b/app-text/latex-foiltex/Manifest deleted file mode 100644 index dbb664909f1b..000000000000 --- a/app-text/latex-foiltex/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 0d5436608bbd705e0771bc74421a469a ChangeLog 309 -MD5 e9ab838c7a63e5d2aa306c063c2e0c9f foiltex-2.1.3.ebuild 630 -MD5 b2b51e6ef051a60bcd39c79a3770677b files/digest-foiltex-2.1.3 58 diff --git a/app-text/latex-foiltex/files/digest-foiltex-2.1.3 b/app-text/latex-foiltex/files/digest-foiltex-2.1.3 deleted file mode 100644 index 9084cd114436..000000000000 --- a/app-text/latex-foiltex/files/digest-foiltex-2.1.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 cd347e1559d1c165c9004ea4dbb866b2 foiltex.tar.gz 52974 diff --git a/app-text/latex-foiltex/foiltex-2.1.3.ebuild b/app-text/latex-foiltex/foiltex-2.1.3.ebuild deleted file mode 100644 index da554dc93276..000000000000 --- a/app-text/latex-foiltex/foiltex-2.1.3.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# Maintainer: Felix Kurth <felix@fkurth.de> - -inherit latex-package - -S=${WORKDIR}/foiltex -DESCRIPTION="LaTeX package used to create foils and slides" -SRC_URI="ftp://ftp.dante.de/tex-archive/macros/latex/contrib/supported/foiltex.tar.gz" -HOMEPAGE="ftp://ftp.dante.de/tex-archive/help/Catalogue/entries/foiltex.html" -LICENSE="as-is" -#for License details see /usr/share/doc/latex-foiltex-2.1.3/foiltex.ins -SLOT="0" -KEYWORDS="x86 ppc sparc " - - -src_install () { -latex-package_src_doinstall all -cd ${S} -dodoc readme.flt -} diff --git a/app-text/latex-leaflet/ChangeLog b/app-text/latex-leaflet/ChangeLog deleted file mode 100644 index 2bf1af90eff1..000000000000 --- a/app-text/latex-leaflet/ChangeLog +++ /dev/null @@ -1,13 +0,0 @@ -# ChangeLog for app-text/latex-leaflet -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-leaflet/ChangeLog,v 1.5 2003/02/12 05:32:26 vapier Exp $ - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - -*latex-leaflet-19990601 (21 May 2002) - - 21 May 2002; Bruce A. Locke <blocke@shivan.org> latex-leaflet-19990601.ebuild : - - Contributed by m-turk@nwu.edu (Matthew Turk) - - diff --git a/app-text/latex-leaflet/Manifest b/app-text/latex-leaflet/Manifest deleted file mode 100644 index 30e64e40eb8a..000000000000 --- a/app-text/latex-leaflet/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 ba4de5ca7d3930ccfe86dde70c02080c ChangeLog 478 -MD5 3858e0ea21b7fc1fe925f443ebfb9bc0 leaflet-19990601.ebuild 618 -MD5 e5c4881e9aba7bf856ee28f82c007adb files/digest-leaflet-19990601 67 diff --git a/app-text/latex-leaflet/files/digest-leaflet-19990601 b/app-text/latex-leaflet/files/digest-leaflet-19990601 deleted file mode 100644 index df22160a0f5e..000000000000 --- a/app-text/latex-leaflet/files/digest-leaflet-19990601 +++ /dev/null @@ -1 +0,0 @@ -MD5 1b86d4861a2c9ee0f070397226deac28 leaflet-19990601.tar.gz 10240 diff --git a/app-text/latex-leaflet/leaflet-19990601.ebuild b/app-text/latex-leaflet/leaflet-19990601.ebuild deleted file mode 100644 index df949da72d59..000000000000 --- a/app-text/latex-leaflet/leaflet-19990601.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-leaflet/leaflet-19990601.ebuild,v 1.1 2003/06/09 07:26:52 satai Exp $ - -inherit latex-package - -S=${WORKDIR}/leaflet -DESCRIPTION="LaTeX package used to create leaflet-type brochures." -SRC_URI="http://www.ibiblio.org/gentoo/distfiles/${P}.tar.gz" -HOMEPAGE="ftp://ibiblio.org/pub/packages/TeX/macros/latex/contrib/supported/" -LICENSE="LPPL-1.2" -SLOT="0" -KEYWORDS="x86 sparc " - -# checksum from official ftp site changes frequently so we mirror it - diff --git a/app-text/latex-texpower/ChangeLog b/app-text/latex-texpower/ChangeLog deleted file mode 100644 index ed66386b101c..000000000000 --- a/app-text/latex-texpower/ChangeLog +++ /dev/null @@ -1,11 +0,0 @@ -# ChangeLog for app-text/latex-texpower -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-texpower/ChangeLog,v 1.3 2003/04/02 00:13:40 pylon Exp $ - -*latex-texpower-0.0.8h (02 Feb 03) - - 02 Apr 2003; Lars Weiler <pylon@gentoo.org> latex-texpower-0.0.8h.ebuild: - Set ppc in KEYWORDS - - 02 FEB 2003; Matthew Turk <satai@gentoo.org> : - Initial import. Ebuild submitted by Lars Weiler <lars.weiler@chaosdorf.de> diff --git a/app-text/latex-texpower/Manifest b/app-text/latex-texpower/Manifest deleted file mode 100644 index acefd9ee5101..000000000000 --- a/app-text/latex-texpower/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -MD5 7bc156db9b66891e9dc0b20780ec5373 ChangeLog 489 -MD5 97b8b82f0d5dc596e7a1ad8093e625c8 latex-texpower-0.0.8h.ebuild 549 -MD5 8737d035898baaa33248541b613ef5c8 files/digest-latex-texpower-0.0.8h 67 diff --git a/app-text/latex-texpower/files/digest-latex-texpower-0.0.8h b/app-text/latex-texpower/files/digest-latex-texpower-0.0.8h deleted file mode 100644 index 2a10ff248769..000000000000 --- a/app-text/latex-texpower/files/digest-latex-texpower-0.0.8h +++ /dev/null @@ -1 +0,0 @@ -MD5 92b97d32df90f1e17938fe54b507721f texpower-0.0.8h.tar.gz 100803 diff --git a/app-text/latex-texpower/latex-texpower-0.0.8h.ebuild b/app-text/latex-texpower/latex-texpower-0.0.8h.ebuild deleted file mode 100644 index c61d8764d161..000000000000 --- a/app-text/latex-texpower/latex-texpower-0.0.8h.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex-texpower/latex-texpower-0.0.8h.ebuild,v 1.3 2003/04/02 00:13:40 pylon Exp $ - -inherit latex-package - -TP=texpower-${PV} - -S=${WORKDIR}/${TP} -DESCRIPTION="TeXPower is a bundle of style and class files for creating dynamic online presentations." -SRC_URI="mirror://sourceforge/texpower/${TP}.tar.gz" -HOMEPAGE="http://texpower.sourceforge.net/" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ppc" diff --git a/app-text/latex2html/ChangeLog b/app-text/latex2html/ChangeLog deleted file mode 100644 index e6247011ab89..000000000000 --- a/app-text/latex2html/ChangeLog +++ /dev/null @@ -1,61 +0,0 @@ -# ChangeLog for app-text/latex2html -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex2html/ChangeLog,v 1.12 2003/04/23 00:15:45 lostlogic Exp $ - -*latex2html-2002.2 (08 Nov 2002) - - 10 Mar 2003; Aron Griffis <agriffis@gentoo.org> latex2html-2002.2.ebuild: - Mark stable on alpha - - 16 Jan 2003; Seemant Kulleen <seemant@gentoo.org> latex2html-2002.2.ebuild : - - Removed dependency on supersed and employed dosed instead (thanks jrray!). - Closes bug #13899 by vapier@gentoo.org (SpanKY) - - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - - 08 Nov 2002; Seemant Kulleen <seemant@gentoo.org> latex2html-2002.2.ebuild - files/digest-latex2html-2002.2.ebuild : - - Version bump, and fixed the problem in bug #10446 reported by: - twanger@bluetwanger.de (Markus Bertheau) - -*latex2html-2002.1 (18 Jun 2002) - - 22 Apr 2003; Brandon Low <lostlogic@gentoo.org> latex2html-2002.1.ebuild: - Change supersed dependencies - - 2 Aug 2002; phoen][x <phoenix@gentoo.org> latex2html-2002.ebuild : - Added LICENSE, SLOT. - - 2 Aug 2002; phoen][x <phoenix@gentoo.org> latex2html-2002.1.ebuild : - Added LICENSE, SLOT. - - 15 Jul 2002; Owen Stampflee <owen@gentoo.org> : - - Added KEYWORDS. - - 18 Jun 2002; Dan Armak <danarmak@gentoo.org> ChangeLog : - - New version (2002-1). Also fixes #3437 (fail on missing /usr/share/latex2html - dir). Thanks a lot to Ben Cornett for the submission. - -*latex2html-2002 (27 Apr 2002) - - 27 Apr 2002; Seemant Kulleen <seemant@gentoo.org> latex2html-2002.ebuild - files/digest-latex2html-2002 : - - Version bump. - -*latex2html-2000.1b (1 Feb 2002) - - 2 Aug 2002; phoen][x <phoenix@gentoo.org> latex2html-2000.1b.ebuild : - Added LICENSE, SLOT. - - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is - updated in any way. This changelog is targetted to users. This means that the - comments should well explained and written in clean English. The details about - writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository. diff --git a/app-text/latex2html/Manifest b/app-text/latex2html/Manifest deleted file mode 100644 index a9c28268f544..000000000000 --- a/app-text/latex2html/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -MD5 a3c95150a9b1667f381cebd62564ea51 latex2html-2002.2.ebuild 2107 -MD5 02b90c8da0c6a08ec0c292dfbb102a13 ChangeLog 2194 -MD5 f92d574e3498bb693cd9de8c8393d1a9 latex2html-2002.1.ebuild 2118 -MD5 a89847621e215147adc4b263ceb9b00c files/digest-latex2html-2002.1 70 -MD5 b4c0404c2535e091016053386676d0bc files/digest-latex2html-2002.2 70 diff --git a/app-text/latex2html/files/digest-latex2html-2002.1 b/app-text/latex2html/files/digest-latex2html-2002.1 deleted file mode 100644 index 25733ce5eb66..000000000000 --- a/app-text/latex2html/files/digest-latex2html-2002.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 f17f559262079b895511e4552f083b11 latex2html-2002-1.tar.gz 1088962 diff --git a/app-text/latex2html/files/digest-latex2html-2002.2 b/app-text/latex2html/files/digest-latex2html-2002.2 deleted file mode 100644 index afdfd696e135..000000000000 --- a/app-text/latex2html/files/digest-latex2html-2002.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 8604e7455f48f5fca126e600aa7b485f latex2html-2002-2.tar.gz 1122586 diff --git a/app-text/latex2html/latex2html-2002.1.ebuild b/app-text/latex2html/latex2html-2002.1.ebuild deleted file mode 100644 index 22d305360b1c..000000000000 --- a/app-text/latex2html/latex2html-2002.1.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex2html/latex2html-2002.1.ebuild,v 1.13 2003/04/23 00:15:45 lostlogic Exp $ - -MY_P=${P/./-} -S=${WORKDIR}/${MY_P} -DESCRIPTION="LATEX2HTML is a convertor written in Perl that converts LATEX documents to HTML." -SRC_URI="http://saftsack.fs.uni-bayreuth.de/~latex2ht/current/${MY_P}.tar.gz" -HOMEPAGE="http://www.latex2html.org/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 ppc sparc" -IUSE="gif png" - -DEPEND="=sys-apps/sed-4*" -RDEPEND="app-text/ghostscript - app-text/tetex - media-libs/netpbm - dev-lang/perl - gif? ( media-libs/giflib - media-libs/libungif ) - png? ( media-libs/libpng )" - -src_compile() { - local myconf - - use gif && myconf="${myconf} --enable-gif" - use png && myconf="${myconf} --enable-png" - - use gif || use png || myconf="${myconf} --disable-images" - - myconf="${myconf} \ - --libdir=/usr/lib/latex2html \ - --shlibdir=/usr/lib/latex2html \ - --enable-pk \ - --enable-eps \ - --enable-reverse \ - --enable-pipes \ - --enable-paths \ - --enable-wrapper" - - econf ${myconf} - make || die - make check || die -} - -src_install() { - dodir /usr/bin /usr/lib/latex2html /usr/share/latex2html - dodir /usr/share/texmf/tex/latex/html - cp cfgcache.pm cfgcache.pm.bak - - # mktexlsr is run later to avoid a sandbox violation - sed \ - -e "/BINDIR\|LIBDIR\|SHLIBDIR\|TEXPATH/s#q'/#q'"${D}"#" \ - -e "/MKTEXLSR/s:q'.*':q'':" \ - cfgcache.pm.bak > cfgcache.pm - - make install || die - cp cfgcache.pm.bak ${D}/usr/lib/latex2html/cfgcache.pm - - dodoc BUGS Changes FAQ INSTALL LICENSE MANIFEST README TODO - - # make /usr/share/latex2html sticky - touch .keep - insinto /usr/share/latex2html - doins .keep - - # clean the perl scripts up to remove references to the sandbox - sed -i "s:${T}::g" ${D}/usr/lib/latex2html/pstoimg.pl - sed -i "s:${T}::g" ${D}/usr/lib/latex2html/latex2html.pl - sed -i "s:${T}::g" ${D}/usr/lib/latex2html/cfgcache.pm - sed -i "s:${T}::g" ${D}/usr/lib/latex2html/l2hconf.pm -} - -pkg_postinst() { - einfo "Running mktexlsr to rebuild ls-R database...." - mktexlsr -} diff --git a/app-text/latex2html/latex2html-2002.2.ebuild b/app-text/latex2html/latex2html-2002.2.ebuild deleted file mode 100644 index d7f642b35f5a..000000000000 --- a/app-text/latex2html/latex2html-2002.2.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/latex2html/latex2html-2002.2.ebuild,v 1.7 2003/03/11 21:11:45 seemant Exp $ - -MY_P=${P/./-} -S=${WORKDIR}/${MY_P} -DESCRIPTION="LATEX2HTML is a convertor written in Perl that converts LATEX documents to HTML." -SRC_URI="http://saftsack.fs.uni-bayreuth.de/~latex2ht/current/${MY_P}.tar.gz" -HOMEPAGE="http://www.latex2html.org/" - -SLOT="0" -LICENSE="as-is" -KEYWORDS="x86 ppc sparc alpha" -IUSE="gif png" - -DEPEND="app-text/ghostscript - app-text/tetex - media-libs/netpbm - dev-lang/perl - gif? ( media-libs/giflib - media-libs/libungif ) - png? ( media-libs/libpng )" - -src_compile() { - local myconf - - use gif && myconf="${myconf} --enable-gif" - use png && myconf="${myconf} --enable-png" - - use gif || use png || myconf="${myconf} --disable-images" - - myconf="${myconf} \ - --libdir=/usr/lib/latex2html \ - --shlibdir=/usr/lib/latex2html \ - --enable-pk \ - --enable-eps \ - --enable-reverse \ - --enable-pipes \ - --enable-paths \ - --enable-wrapper" - - econf ${myconf} - make || die - make check || die -} - -src_install() { - dodir /usr/bin /usr/lib/latex2html /usr/share/latex2html - dodir /usr/share/texmf/tex/latex/html - cp cfgcache.pm cfgcache.pm.bak - - # mktexlsr is run later to avoid a sandbox violation - sed \ - -e "/BINDIR\|LIBDIR\|SHLIBDIR\|TEXPATH/s#q'/#q'"${D}"#" \ - -e "/MKTEXLSR/s:q'.*':q'':" \ - cfgcache.pm.bak > cfgcache.pm - - make install || die - cp cfgcache.pm.bak ${D}/usr/lib/latex2html/cfgcache.pm - - dodoc BUGS Changes FAQ INSTALL LICENSE MANIFEST README TODO - - # make /usr/share/latex2html sticky - keepdir /usr/share/latex2html - - # clean the perl scripts up to remove references to the sandbox - einfo "fixing sandbox references" - einfo ${T} - dosed "s:${T}:/tmp:g" /usr/lib/latex2html/pstoimg.pl - dosed "s:${S}::g" /usr/lib/latex2html/latex2html.pl - dosed "s:${T}:/tmp:g" /usr/lib/latex2html/cfgcache.pm - dosed "s:${T}:/tmp:g" /usr/lib/latex2html/l2hconf.pm -} - -pkg_postinst() { - einfo "Running mktexlsr to rebuild ls-R database...." - mktexlsr -} |