summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-10-14 00:40:04 +0000
committerKarl Berry <karl@freefriends.org>2007-10-14 00:40:04 +0000
commitc78ee64259772594abfc6cbda052f056fc695617 (patch)
treeded9acbc53a0de5888148c7fce63b87c07698816
parent0ef6ecbe1b6e0a28fd98fe86e024a36b09a3aee2 (diff)
doc fixes
git-svn-id: svn://tug.org/texlive/trunk@5180 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/tlpkg/bin/place4
-rwxr-xr-xMaster/tlpkg/bin/tlpdb2list4
-rwxr-xr-xMaster/tlpkg/bin/tlpkginfo4
-rwxr-xr-xMaster/tlpkg/bin/tlprm6
4 files changed, 10 insertions, 8 deletions
diff --git a/Master/tlpkg/bin/place b/Master/tlpkg/bin/place
index b2d1363a464..27d3736650a 100755
--- a/Master/tlpkg/bin/place
+++ b/Master/tlpkg/bin/place
@@ -1,12 +1,12 @@
#!/usr/bin/env perl
# $Id$
-# License: public domain. Originally written by Sebastian Rahtz.
+# Public domain. Originally written by Sebastian Rahtz.
#
# Process a "cooked" tree directory (probably created by ctan2tds in
# Build/tmp.cooked), and integrate into the main texmf trees.
#
# Basic usage: place PKG
-# to process ./PKG.
+# to process ./PKG. Best invoked from ctan2tl, not directly.
BEGIN {
chomp ($mydir = `dirname $0`); # we are in Master/tlpkg/bin
diff --git a/Master/tlpkg/bin/tlpdb2list b/Master/tlpkg/bin/tlpdb2list
index e5fd0b2b50a..d510fac2a0e 100755
--- a/Master/tlpkg/bin/tlpdb2list
+++ b/Master/tlpkg/bin/tlpdb2list
@@ -1,10 +1,10 @@
#!/usr/bin/env perl
# $Id$
-# tlpdb2list - create list file from tlpdb
# Copyright 2007 Norbert Preining
-#
# This file is licensed under the GNU General Public License version 2
# or any later version.
+#
+# Create list files from tlpdb.
BEGIN {
$^W = 1;
diff --git a/Master/tlpkg/bin/tlpkginfo b/Master/tlpkg/bin/tlpkginfo
index d1b3f162d86..41f1016fc84 100755
--- a/Master/tlpkg/bin/tlpkginfo
+++ b/Master/tlpkg/bin/tlpkginfo
@@ -1,8 +1,10 @@
#!/usr/bin/env perl
# $Id$
+# Public domain. Originally written 2005, Karl Berry.
+#
# Return information given a TL package name (i.e., a tpm file name).
# We use local copies of CTAN and the TeX Catalogue.
-#
+
exit (&main ());
sub main
diff --git a/Master/tlpkg/bin/tlprm b/Master/tlpkg/bin/tlprm
index 57153c254f3..cfba032f89e 100755
--- a/Master/tlpkg/bin/tlprm
+++ b/Master/tlpkg/bin/tlprm
@@ -4,9 +4,9 @@
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
-# Remove a package from the TeX Live source repository.
-# We use this when a package becomes obsolete, gets merged, or whatever.
-# It doesn't currently handle package removals from an installation.
+# Remove a package from the TeX Live source repository. We use this on
+# the source tree when a package becomes obsolete, gets merged, or
+# whatever. It doesn't handle package removals from an installed tree.
our $mydir;