diff options
-rw-r--r-- | dev-tex/preview-latex/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tex/preview-latex/files/digest-preview-latex-0.7.8 | 1 | ||||
-rw-r--r-- | dev-tex/preview-latex/preview-latex-0.7.8.ebuild | 73 | ||||
-rw-r--r-- | dev-tex/preview-latex/preview-latex-0.8.1.ebuild | 4 | ||||
-rw-r--r-- | dev-tex/preview-latex/preview-latex-0.9.1.ebuild | 4 | ||||
-rw-r--r-- | dev-tex/tex4ht/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tex/tex4ht/files/digest-tex4ht-20040212 | 1 | ||||
-rw-r--r-- | dev-tex/tex4ht/tex4ht-20040212.ebuild | 83 | ||||
-rw-r--r-- | dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild | 4 | ||||
-rw-r--r-- | dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild | 4 |
10 files changed, 20 insertions, 168 deletions
diff --git a/dev-tex/preview-latex/ChangeLog b/dev-tex/preview-latex/ChangeLog index 88ff60651790..7d2522d56167 100644 --- a/dev-tex/preview-latex/ChangeLog +++ b/dev-tex/preview-latex/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tex/preview-latex # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/ChangeLog,v 1.12 2005/04/06 03:57:22 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/ChangeLog,v 1.13 2005/08/24 04:05:09 leonardop Exp $ + + 24 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> + -preview-latex-0.7.8.ebuild, preview-latex-0.8.1.ebuild, + preview-latex-0.9.1.ebuild: + Modified calls to 'cp -a' as described on bug #103487. *preview-latex-0.9.1 (06 Apr 2005) diff --git a/dev-tex/preview-latex/files/digest-preview-latex-0.7.8 b/dev-tex/preview-latex/files/digest-preview-latex-0.7.8 deleted file mode 100644 index 2c23dac33fca..000000000000 --- a/dev-tex/preview-latex/files/digest-preview-latex-0.7.8 +++ /dev/null @@ -1 +0,0 @@ -MD5 569aa370482436db4588428da4f27594 preview-latex-0.7.8.tar.gz 236683 diff --git a/dev-tex/preview-latex/preview-latex-0.7.8.ebuild b/dev-tex/preview-latex/preview-latex-0.7.8.ebuild deleted file mode 100644 index 86a0836c5fa7..000000000000 --- a/dev-tex/preview-latex/preview-latex-0.7.8.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/preview-latex-0.7.8.ebuild,v 1.7 2004/06/25 02:17:00 agriffis Exp $ - -inherit latex-package elisp-common - -DESCRIPTION="Renders embed latex environments such as math or figures in realtime" -HOMEPAGE="http://preview-latex.sourceforge.net/" -SRC_URI="mirror://sourceforge/preview-latex/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" -IUSE="emacs xemacs" - -# if you don't have either emacs or xemacs, defaults to emacs. bug #54183 -DEPEND="emacs? ( virtual/emacs - >=app-emacs/auctex-11.14 ) - xemacs? ( virtual/xemacs - >=app-xemacs/auctex-1.32 - app-xemacs/fsf-compat ) - !xemacs? ( virtual/emacs - >=app-emacs/auctex-11.14 ) - virtual/ghostscript - virtual/tetex" - -src_unpack() { - unpack ${A} - cp -a ${P}/* ${T} -} - -src_compile() { - local myconf - - if use emacs || ! use xemacs ; then - econf --with-emacs \ - --with-lispdir=${D}/usr/share/emacs/site-lisp/${PN} \ - || die - emake -j1 || die "make ${PN} for emacs failed" - fi - if use xemacs; then - cd ${T} - econf --with-xemacs \ - --with-packagedir=${D}/usr/lib/xemacs/site-packages \ - || die - emake -j1 || die "make ${PN} for xemacs failed" - fi -} - -src_install() { - - if use emacs || ! use xemacs ; then - # hack.- we cant call texhash within the make install because of - # sandbox violations. doing it later by hand - einstall texmfdir=${D}${TEXMF} TEXHASH=/bin/true || die - elisp-site-file-install ${FILESDIR}/60preview-latex-gentoo.el - fi - if use xemacs; then - cd ${T} - einstall texmfdir=${D}${TEXMF} TEXHASH=/bin/true || die - fi - - dodoc ChangeLog FAQ INSTALL PROBLEMS README RELEASE TODO doc/preview-latex.dvi -} - -pkg_postinst() { - latex-package_pkg_postinst - use emacs && elisp-site-regen -} - -pkg_postrm() { - latex-package_pkg_postrm - use emacs && elisp-site-regen -} diff --git a/dev-tex/preview-latex/preview-latex-0.8.1.ebuild b/dev-tex/preview-latex/preview-latex-0.8.1.ebuild index 995faa5d5f11..de404d2dc72b 100644 --- a/dev-tex/preview-latex/preview-latex-0.8.1.ebuild +++ b/dev-tex/preview-latex/preview-latex-0.8.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/preview-latex-0.8.1.ebuild,v 1.9 2005/03/11 14:09:07 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/preview-latex-0.8.1.ebuild,v 1.10 2005/08/24 04:05:09 leonardop Exp $ inherit latex-package elisp-common @@ -27,7 +27,7 @@ DEPEND="emacs? ( virtual/emacs src_unpack() { unpack ${A} - cp -a ${P}/* ${T} + cp -pPR ${P}/* ${T} } src_compile() { diff --git a/dev-tex/preview-latex/preview-latex-0.9.1.ebuild b/dev-tex/preview-latex/preview-latex-0.9.1.ebuild index 6a02c523a458..302f5b17c88e 100644 --- a/dev-tex/preview-latex/preview-latex-0.9.1.ebuild +++ b/dev-tex/preview-latex/preview-latex-0.9.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/preview-latex-0.9.1.ebuild,v 1.1 2005/04/06 03:57:22 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/preview-latex/preview-latex-0.9.1.ebuild,v 1.2 2005/08/24 04:05:09 leonardop Exp $ inherit latex-package elisp-common @@ -27,7 +27,7 @@ DEPEND="emacs? ( virtual/emacs src_unpack() { unpack ${A} - cp -a ${P}/* ${T} + cp -pPR ${P}/* ${T} } src_compile() { diff --git a/dev-tex/tex4ht/ChangeLog b/dev-tex/tex4ht/ChangeLog index 0a2b07f814fc..92c92b11983e 100644 --- a/dev-tex/tex4ht/ChangeLog +++ b/dev-tex/tex4ht/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tex/tex4ht # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/ChangeLog,v 1.6 2005/07/02 08:33:36 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/ChangeLog,v 1.7 2005/08/24 04:08:41 leonardop Exp $ + + 24 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> + -tex4ht-20040212.ebuild, tex4ht-20050406_p1623-r1.ebuild, + tex4ht-20050701_p1825.ebuild: + Modified calls to 'cp -a' as described on bug #103487. *tex4ht-20050701_p1825 (02 Jul 2005) diff --git a/dev-tex/tex4ht/files/digest-tex4ht-20040212 b/dev-tex/tex4ht/files/digest-tex4ht-20040212 deleted file mode 100644 index dde493f76d8e..000000000000 --- a/dev-tex/tex4ht/files/digest-tex4ht-20040212 +++ /dev/null @@ -1 +0,0 @@ -MD5 e1a7ed0666470fce2475d6c495d41238 tex4ht-20040212.zip 2161858 diff --git a/dev-tex/tex4ht/tex4ht-20040212.ebuild b/dev-tex/tex4ht/tex4ht-20040212.ebuild deleted file mode 100644 index 969337600ad9..000000000000 --- a/dev-tex/tex4ht/tex4ht-20040212.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20040212.ebuild,v 1.3 2004/11/21 06:12:53 kingtaco Exp $ - -IUSE="" - -DESCRIPTION="Converts (La)TeX to (X)HTML, XML and OO.org" -HOMEPAGE="http://www.cse.ohio-state.edu/~gurari/TeX4ht/" -SRC_URI="http://www.cse.ohio-state.edu/~gurari/TeX4ht/${P}.zip" - -LICENSE="LPPL-1.2" -KEYWORDS="~x86 ~ppc ~amd64" -SLOT="0" - -DEPEND="virtual/tetex - app-arch/unzip - >=sys-apps/sed-4" - -RDEPEND="virtual/tetex - virtual/ghostscript - media-gfx/imagemagick" - -S="${WORKDIR}" - -src_unpack() { - - unpack ${P}.zip > /dev/null - cd ${WORKDIR}/texmf/tex4ht/base/unix - sed -i -e \ - 's#~/tex4ht.dir#/usr/share#' tex4ht.env || die - sed -i -e \ - 's#tpath/tex/texmf/fonts/tfm/!#t/usr/share/texmf/fonts/tfm/!\nt/usr/local/share/texmf/fonts/tfm/!\nt/var/cache/fonts/tfm/!#' tex4ht.env || die - -} - -src_compile() { - - cd ${WORKDIR}/temp/ - einfo "Compiling postprocessor sources..." - gcc -o tex4ht tex4ht.c -DENVFILE='"/usr/share/texmf/tex4ht/base/tex4ht.env"' -DHAVE_DIRENT_H \ - -DKPATHSEA -lkpathsea || die "Compiling tex4ht failed" - gcc -o t4ht t4ht.c -DENVFILE='"/usr/share/texmf/tex4ht/base/tex4ht.env"' \ - -DKPATHSEA -lkpathsea || die "Compiling t4ht failed" - -} - -src_install () { - - # install the binaries - exeinto /usr/bin - doexe ${WORKDIR}/temp/tex4ht ${WORKDIR}/temp/t4ht - doexe ${WORKDIR}/bin/unix/* - - # install the .4ht scripts - insinto /usr/share/texmf/tex/generic/tex4ht - doins ${WORKDIR}/texmf/tex/generic/tex4ht/* - - # install the special htf fonts - dodir /usr/share/texmf/tex4ht - cp -a ${WORKDIR}/texmf/tex4ht/ht-fonts ${D}/usr/share/texmf/tex4ht - - # install the env file - insinto /usr/share/texmf/tex4ht/base - newins ${WORKDIR}/texmf/tex4ht/base/unix/tex4ht.env tex4ht.env - - # this dir is 700 in the zip - fperms 755 /usr/share/texmf/tex4ht/ht-fonts - -} - -pkg_postinst () { - - einfo "Running mktexlsr to rebuild file databases..." - mktexlsr - -} - -pkg_postrm () { - - einfo "Running mktexlsr to rebuild file databases..." - mktexlsr - -} diff --git a/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild b/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild index 8ce9fec1d944..8fc245b70ca7 100644 --- a/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild +++ b/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild,v 1.2 2005/07/02 08:33:36 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050406_p1623-r1.ebuild,v 1.3 2005/08/24 04:08:41 leonardop Exp $ inherit latex-package toolchain-funcs @@ -60,7 +60,7 @@ src_install () { # install the special htf fonts dodir /usr/share/texmf/tex4ht - cp -a ${S}/texmf/tex4ht/ht-fonts ${D}/usr/share/texmf/tex4ht + cp -pPR ${S}/texmf/tex4ht/ht-fonts ${D}/usr/share/texmf/tex4ht # install the env file insinto /usr/share/texmf/tex4ht/base diff --git a/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild b/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild index edaab2f1393d..62d678f4d80a 100644 --- a/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild +++ b/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild,v 1.1 2005/07/02 08:33:36 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tex/tex4ht/tex4ht-20050701_p1825.ebuild,v 1.2 2005/08/24 04:08:41 leonardop Exp $ inherit latex-package toolchain-funcs @@ -61,7 +61,7 @@ src_install () { # install the special htf fonts dodir /usr/share/texmf/tex4ht - cp -a ${S}/texmf/tex4ht/ht-fonts ${D}/usr/share/texmf/tex4ht + cp -pPR ${S}/texmf/tex4ht/ht-fonts ${D}/usr/share/texmf/tex4ht # install the env file insinto /usr/share/texmf/tex4ht/base |