Update of /cvsroot/fink/fink
In directory sc8-pr-cvs1:/tmp/cvs-serv15561
Modified Files:
bootstrap.pl fink.8.in inject.pl install.sh setup.sh
Log Message:
Added fink.conf(5) manpage
Index: bootstrap.pl
===================================================================
RCS file: /cvsroot/fink/fink/bootstrap.pl,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- bootstrap.pl 12 Jan 2003 19:32:56 -0000 1.26
+++ bootstrap.pl 15 Jan 2003 21:32:05 -0000 1.27
@@ -342,7 +342,7 @@
$script =
"tar -cf $installto/src/fink-$packageversion.tar ".
"COPYING INSTALL INSTALL.html README README.html USAGE USAGE.html ".
- "ChangeLog VERSION fink.in fink.8.in install.sh setup.sh ".
+ "ChangeLog VERSION fink.in fink.8.in fink.conf.5.in install.sh setup.sh ".
"postinstall.pl.in perlmod update mirror shlibs.default.in\n";
foreach $cmd (split(/\n/,$script)) {
Index: fink.8.in
===================================================================
RCS file: /cvsroot/fink/fink/fink.8.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- fink.8.in 15 Jan 2003 19:37:30 -0000 1.12
+++ fink.8.in 15 Jan 2003 21:32:05 -0000 1.13
@@ -224,49 +224,9 @@
.Pp
.Pa @PREFIX@/etc/fink.conf
.Bd -filled -offset indent -compact
-The system wide configuration file. You should not need to edit this file
-manually, but rather use
-.Cm fink configure
-to change fink's settings.
-The following fields are useful to know something about:
-.Bl -inset -offset
-.It Em Trees:
-Sets where fink looks for the .info files which describe the packages.
-Normally used to choose between the stable/main and unstable/main trees.
-Edit this line to use the unstable tree if you want to install packages
-from the unstable section, but remember to set it back to use stable
-afterwards if you want to use mostly stable packages.
-Remember to give some feedback to the package maintainer if you use
-unstable packages, you may be the only thing stopping the package from
-being moved into the stable tree.
-.It Em ProxyPassiveFTP:
-It is safest to set this to true, it is the default.
-.It Em FetchAltDir:
-This is the alternative directory where fink looks for sources.
-If you download a package source file (usually .tar.gz) and put it in
-this directory, fink will find it and will not download the source again.
-.It Em DownloadMethod:
-You have a choice of using either curl or wget to download.
-Set this to wget if you want to use wget for some reason,
-the default is currently curl.
-.It Em KeepBuildDir:
-The default is false, fink usually removes the source build directory after
-successfully building a package. If you want to keep the build directory,
-set this to true. Usually only developers have any need for this field.
-.It Em KeepRootDir:
-Similar to the KeepBuildDir option, this allows developers to keep the root
-directory around for debugging purposes.
-.It Em ProxyHTTP:
-This line is your HTTP proxy settings. You may find it easier to edit this
-line directly rather than running fink configure.
-.It Em ProxyFTP:
-Your ftp proxy settings.
-.It Em Verbose:
-A true or false value which tells fink how verbose it should be.
-.El
-.\"
-This file also contains all of your mirror settings, which should be chosen using
-.Cm fink configure.
+The system wide configuration file. See
+.Xr fink.conf 5
+for more information.
.Ed
.\"
.\"
@@ -290,13 +250,19 @@
.\"
.\"
.Sh AUTHOR
+The current maintainer of this manpage is Max Horn <[EMAIL PROTECTED]>
+.\"
+.\"
+.\" ACKNOWLEDGEMENTS
+.\"
+.\"
+.Sh ACKNOWLEDGEMENTS
The original author of
.Nm
is Christoph Pfisterer <[EMAIL PROTECTED]>.
.br
-The current maintainer of
.Nm
-and author of this manpage is Max Horn <[EMAIL PROTECTED]>.
+is developed and maintained by The Fink Project (http://fink.source-forge.net).
.\"
.\"
.\" SEE ALSO
@@ -305,4 +271,5 @@
.Sh "SEE ALSO"
.Xr apt-get 8 ,
.Xr dselect 8 ,
-.Xr dpkg 8
+.Xr dpkg 8 ,
+.Xr fink.conf 5
Index: inject.pl
===================================================================
RCS file: /cvsroot/fink/fink/inject.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- inject.pl 22 Dec 2002 22:09:01 -0000 1.10
+++ inject.pl 15 Jan 2003 21:32:05 -0000 1.11
@@ -164,7 +164,7 @@
$script .=
"tar -cf $basepath/src/fink-$packageversion.tar ".
"COPYING INSTALL INSTALL.html README README.html USAGE USAGE.html ".
- "ChangeLog VERSION fink.in fink.8.in install.sh setup.sh ".
+ "ChangeLog VERSION fink.in fink.8.in fink.conf.5.in install.sh setup.sh ".
"shlibs.default.in postinstall.pl.in perlmod update mirror\n";
foreach $cmd (split(/\n/,$script)) {
Index: install.sh
===================================================================
RCS file: /cvsroot/fink/fink/install.sh,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- install.sh 12 Oct 2002 18:35:20 -0000 1.13
+++ install.sh 15 Jan 2003 21:32:05 -0000 1.14
@@ -38,7 +38,8 @@
for dir in bin lib lib/fink lib/perl5 lib/perl5/Fink \
lib/fink/mirror lib/fink/update etc etc/dpkg \
- share share/doc share/doc/fink share/man share/man/man8 ; do
+ share share/doc share/doc/fink share/man \
+ share/man/man8 share/man/man5 ; do
mkdir "$basepath/$dir"
chmod 755 "$basepath/$dir"
done
@@ -50,6 +51,7 @@
install -c -p -m 644 shlibs.default "$basepath/etc/dpkg/"
install -c -p -m 755 fink "$basepath/bin/"
install -c -p -m 644 fink.8 "$basepath/share/man/man8/"
+install -c -p -m 644 fink.conf.5 "$basepath/share/man/man5/"
for file in perlmod/Fink/*.pm ; do
if [ -f $file ]; then
Index: setup.sh
===================================================================
RCS file: /cvsroot/fink/fink/setup.sh,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- setup.sh 12 Jan 2003 19:32:58 -0000 1.10
+++ setup.sh 15 Jan 2003 21:32:05 -0000 1.11
@@ -38,6 +38,7 @@
echo "Creating man page..."
sed "s|@VERSION@|$version|g ; s|@PREFIX@|$basepath|g" <fink.8.in >fink.8
+sed "s|@PREFIX@|$basepath|g" <fink.conf.5.in >fink.conf.5
echo "Creating shlibs default file..."
sed "s|@PREFIX@|$basepath|g" <shlibs.default.in >shlibs.default
-------------------------------------------------------
This SF.NET email is sponsored by: A Thawte Code Signing Certificate
is essential in establishing user confidence by providing assurance of
authenticity and code integrity. Download our Free Code Signing guide:
http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0028en
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits