public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/texlive-core/files: texmf-update
@ 2007-10-20 15:20 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2007-10-20 15:20 UTC (permalink / raw
  To: gentoo-commits

aballier    07/10/20 15:20:14

  Modified:             texmf-update
  Log:
  No need to run texlinks in texmf-update anymore now that we have etexlinks
  (Portage version: 2.1.3.15)

Revision  Changes    Path
1.2                  app-text/texlive-core/files/texmf-update

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?r1=1.1&r2=1.2

Index: texmf-update
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/files/texmf-update,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- texmf-update	14 Oct 2007 07:56:34 -0000	1.1
+++ texmf-update	20 Oct 2007 15:20:14 -0000	1.2
@@ -64,9 +64,6 @@
 echo "Generating format files ..."
 fmtutil-sys --all &>/dev/null
 
-echo "Generating tex symlinks from formats to engines..."
-texlinks -s
-
 echo "Generating font maps..."
 updmap-sys &>/dev/null
 



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/texlive-core/files: texmf-update
@ 2007-10-28 18:43 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2007-10-28 18:43 UTC (permalink / raw
  To: gentoo-commits

aballier    07/10/28 18:43:33

  Modified:             texmf-update
  Log:
  more selective patterns for texmf-update to decide what to merge to texmf.cnf (*.cnf), fmtutil.cnf (*.cnf), updmap.cfg (*.cfg)
  (Portage version: 2.1.3.16)

Revision  Changes    Path
1.3                  app-text/texlive-core/files/texmf-update

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?r1=1.2&r2=1.3

Index: texmf-update
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/files/texmf-update,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- texmf-update	20 Oct 2007 15:20:14 -0000	1.2
+++ texmf-update	28 Oct 2007 18:43:32 -0000	1.3
@@ -36,12 +36,20 @@
 	fi
 fi
 
-for conf in texmf.cnf fmtutil.cnf updmap.cfg; do
-	if [ -d "/etc/texmf/${conf/.*/.d}" ] ; then
-		echo "Generating /etc/texmf/web2c/${conf} from /etc/texmf/${conf/.*/.d} ..."
-		cat /etc/texmf/${conf/.*/.d}/* > "/etc/texmf/web2c/${conf}"
-	fi
-done
+if [ -d /etc/texmf/texmf.d ]; then
+    echo "Generating /etc/texmf/web2c/texmf.cnf from /etc/texmf/texmf.d ..."
+    cat /etc/texmf/texmf.d/*.cnf > "/etc/texmf/web2c/texmf.cnf"
+fi
+
+if [ -d /etc/texmf/fmtutil.d ]; then
+    echo "Generating /etc/texmf/web2c/fmtutil.cnf from /etc/texmf/fmtutil.d ..."
+    cat /etc/texmf/fmtutil.d/*.cnf > "/etc/texmf/web2c/fmtutil.cnf"
+fi
+
+if [ -d /etc/texmf/updmap.d ]; then
+    echo "Generating /etc/texmf/web2c/updmap.cfg from /etc/texmf/updmap.d ..."
+    cat /etc/texmf/updmap.d/*.cfg > "/etc/texmf/web2c/updmap.cfg"
+fi
 
 echo "Generating ls-R files"
 mktexlsr &>/dev/null



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/texlive-core/files: texmf-update
@ 2007-12-02 23:56 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2007-12-02 23:56 UTC (permalink / raw
  To: gentoo-commits

aballier    07/12/02 23:56:39

  Modified:             texmf-update
  Log:
  let texmf-update handle dvips config.ps through /etc/texmf/dvips.d
  (Portage version: 2.1.4_rc4)

Revision  Changes    Path
1.4                  app-text/texlive-core/files/texmf-update

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texlive-core/files/texmf-update?r1=1.3&r2=1.4

Index: texmf-update
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/texlive-core/files/texmf-update,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- texmf-update	28 Oct 2007 18:43:32 -0000	1.3
+++ texmf-update	2 Dec 2007 23:56:38 -0000	1.4
@@ -51,6 +51,11 @@
     cat /etc/texmf/updmap.d/*.cfg > "/etc/texmf/web2c/updmap.cfg"
 fi
 
+if [ -d /etc/texmf/dvips.d ]; then
+    echo "Generating /etc/texmf/dvips/config/config.ps from /etc/texmf/dvips.d ..."
+    cat /etc/texmf/dvips.d/*.ps > "/etc/texmf/dvips/config/config.ps"
+fi
+
 echo "Generating ls-R files"
 mktexlsr &>/dev/null
 



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/texlive-core/files: texmf-update
@ 2009-06-20 14:58 Alexis Ballier (aballier)
  0 siblings, 0 replies; 4+ messages in thread
From: Alexis Ballier (aballier) @ 2009-06-20 14:58 UTC (permalink / raw
  To: gentoo-commits

aballier    09/06/20 14:58:15

  Removed:              texmf-update
  Log:
  remove old
  (Portage version: 2.2_rc33/cvs/Linux x86_64)



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-06-20 14:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-20 15:20 [gentoo-commits] gentoo-x86 commit in app-text/texlive-core/files: texmf-update Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2007-10-28 18:43 Alexis Ballier (aballier)
2007-12-02 23:56 Alexis Ballier (aballier)
2009-06-20 14:58 Alexis Ballier (aballier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox