# $FreeBSD$
####################################################################
####################################################################
# This file contains the default configuration for the CVSROOT
# perl scripts. You are advised to override the configuration
# in the cfg_local.pm file instead of here.
#
# WARNING: You are strongly advised to check for syntax errors
# in this file before committing it. Use: perl -cw cfg.pm
####################################################################
####################################################################
package cfg;
use strict;
use vars qw(
$ADD_TO_LINE $AVAIL_FILE $CHECK_HEADERS $COMMITCHECK_EXTRA
@COMMIT_HOSTS $COMMITTER $DEBUG $DIFF_BLOCK_TOTAL_LINES $EXCLUDE_FILE
$FILE_PREFIX $IDHEADER $LAST_FILE @LOG_FILE_MAP $MAILADDRS $MAILBANNER
$MAILCMD $MAIL_BRANCH_HDR $MAIL_ON_DIR_CREATION $MAIL_TRANSFORM
$MINCVSVERSION $MAX_DIFF_SIZE $NO_DOS_LINEBREAKS $PID $PROG_CVS
$PROG_MV %TEMPLATE_HEADERS $TMPDIR $TZ $UNEXPAND_RCSID $WARN_HEADERS
);
use POSIX qw(tzset);
my $CVSROOT = $ENV{'CVSROOT'} || die "Can't determine \$CVSROOT!";
######################
### global options ###
######################
### WARNING: these aren't global across all the scripts yet.
### This is work in progress.
# Process group id; used as a unique number in temporary file names.
$PID = getpgrp();
# Debug level, 0 = off, 1 = on.
$DEBUG = 0;
# Location of temporary directory.
$TMPDIR = "/tmp/";
# The filename prefix used for temporary files.
$FILE_PREFIX = "#cvs.files.$PID";
# The file used to store the name of the last directory examined
# when processing a multi-directory commit.
$LAST_FILE = "$TMPDIR/$FILE_PREFIX.lastdir";
# System tools.
$PROG_CVS = '/usr/bin/cvs'; # cvs(1)
$PROG_MV = '/bin/mv'; # mv(1)
# The username of the committer.
$COMMITTER = $ENV{"LOGNAME"} || $ENV{'USER'} || getlogin
|| (getpwuid($<))[0] || sprintf("uid#%d",$<);
# Time zone
$TZ = undef;
###################
### commitcheck ###
###################
# A list of hosts the it's ok to commit on. Useful if your committers
# take local copies of the repository to work off-line.
# (Empty if you don't want checks.)
@COMMIT_HOSTS = ();
# The minimum version of cvs that we will work with.
$MINCVSVERSION = "1090900"; # 1.9.9p0
# Additional commit time checks. This is an anonymous subroutine
# that gets called early on in the validation process to see whether
# the committer is allowed to commit. It should return true if
# everything is ok, otherwise the commit will be terminated.
$COMMITCHECK_EXTRA = "";
###################
### cvs_acls.pl ###
###################
# The name of the avail file that defines who's allow to
# commit to what.
$AVAIL_FILE = "$CVSROOT/CVSROOT/avail";
################
### logcheck ###
################
# These are the optional headers that can be filled at the end of
# each commit message. The associated value is a regular-expression
# that is used to type-check the entered value. If a match fails
# then the commit is rejected. (See rcstemplate).
#
# Make sure that these are also described in the rcstemplate to
# make their usage clear to committers.
#
# In addition any of these entries that are left blank are removed
# from the log at commit time. [Please note that for them to be
# removed from the rcslog in the repository you need to be running
# the version of cvs in the FreeBSD source tree. We've got a local
# patch that causes cvs to read back the commit message after the
# commit_prep.pl script has had a chance to modify it (via the
# 'commitinfo' hook). ]
%TEMPLATE_HEADERS = (
# "Reviewed by" => '.*',
# "Submitted by" => '.*',
# "Obtained from" => '.*',
# "Approved by" => '.*',
# "PR" => '.*',
# "MFC after" => '\d+(\s+(days?|weeks?|months?))?'
);
######################
### commit_prep.pl ###
######################
# Check for instances of $IDHEADER in committed files, and
# bomb out if they're not present, or corrupted.
# Exclusions can be specified in the exclude file.
# Currently $IDHEADER must be an instance of '$ CVSHeader $', or an alias
# defined in CVSROOT/options.
$CHECK_HEADERS = 0;
$EXCLUDE_FILE = "$CVSROOT/CVSROOT/exclude";
# Make a header check a non-fatal error - just warn, don't exit.
$WARN_HEADERS = 0;
# WARNING: You will also need to be running the version of cvs that
# the FreeBSD project is using; I believe that we have some local patches
# that aren't in the main 'cvs' source.
# Additionally you'll need to tweak CVSROOT/options if you wish to use your
# own ident header.
$IDHEADER = 'CVSHeader';
# Contract any instances of $IDHEADER in the source file before committing.
# This is useful because it means that expanded headers aren't stored in
# the repository as part of the delta.
$UNEXPAND_RCSID = 0;
# Check for DOS/WINDOWS/MAC linebreaks in the file, bomb out if present.
# Exclusions can be specified in the exclude file.
$NO_DOS_LINEBREAKS = 0;
####################
### log_accum.pl ###
####################
# The command used to mail the log messages.
# Usually something like '/usr/sbin/sendmail'.
$MAILCMD = "/usr/sbin/sendmail";
# Email addresses of recipients of commit mail.
$MAILADDRS = 'nobody';
# Extra banner added to the top of commit email.
# Use "" if you don't want one.
# i.e. $MAILBANNER = "Project X CVS Repository";
$MAILBANNER = "";
# Send mail when directories are created in the repository.
# 0 = off, 1 = on.
$MAIL_ON_DIR_CREATION = 0;
# Include the names of the branches committed to in the commit email,
# using this header (leave off the trailing ':').
# Use "" if you don't want one.
$MAIL_BRANCH_HDR = "X-CVS-Branch";
# Include a 'To:' header in the generated commit mail?
$ADD_TO_LINE = 1;
# This is a way to post-process the log email before it is mailed.
# Some people find it useful to use this to create URLs in their
# commit mails to show the patch in a web page (using cvsweb) for
# instance.
#
# The $MAIL_TRANSFORM variable should be "" if you don't want to
# use this feature. Otherwise it should be a reference to a
# subroutine that is passed the email message as a list, and returns
# the modified list to the log_accum.pl script. The list has one
# element per email line, with no trailing line feeds. This function
# shouldn't add them. If $DEBUG is switched on the log_accum.pl
# script will show the before and after on stdout at commit time.
#
# The example below shows a way of inserting links to cvsweb.
$MAIL_TRANSFORM = "";
#$MAIL_TRANSFORM = sub {
# add_cvsweb_entry("http://www.example.org/cgi-bin/cvsweb.cgi", @_);
#};
# A copy of the commit summary is saved locally as well as being
# emailed to the committers. The name of the local log is obtained
# by performing a pattern match on the directory that the files are
# in. The following map defines the file names and their associated
# pattern match. They are checked in order. The name 'other' is
# used if none of the patterns match.
#
# XXX The directory that the logs are placed in should be a
# configuration option too.
@LOG_FILE_MAP = (
'CVSROOT' => '^CVSROOT/',
'doc' => '^doc/',
'user' => '^src/',
'other' => '.*'
);
# Include diffs of not greater than this size in kbytes in the
# commit mail for each file modified. (0 = off).
$MAX_DIFF_SIZE = 0;
# Maximum size of in lines of the diff block.
$DIFF_BLOCK_TOTAL_LINES = 200;
######################
# EXAMPLES
######################
# A function for post-processing a log message
# and outputing it with URLs to a cvsweb.cgi in.
sub add_cvsweb_entry {
my $url_to_cvsweb = shift;
my @input = @_;
my @output = ();
# Skip down to the revision summary.
while (1) {
my $line = shift @input;
last unless defined($line);
push @output, $line;
last if $line =~ /^\s*Revision\s*Changes\s*Path\s*$/;
}
# Add the url links
my $skip = 0;
foreach (@input) {
# The revision block is terminated with an empty line.
$skip = 1 if $_ =~ /^\s*$/;
push @output, $_;
next if $skip;
my ($rev, $add, $sub, $file, $status) = split;
$rev =~ /(?:(.*)\.)?([^\.]+)\.([^\.]+)$/;
my ($base, $r1, $r2) = ($1, $2, $3);
my $prevrev = "";
if ($r2 == 1) {
$prevrev = $base;
} else {
$prevrev = "$base." if $base;
$prevrev .= "$r1." . ($r2 - 1);
}
my $baseurl = "$url_to_cvsweb/$file";
my $extra;
if (defined($status)) {
$rev = $prevrev if $status =~ /dead/;
$extra = "?rev=$rev&content-type=text/plain";
} else {
$extra = ".diff?r1=$prevrev&r2=$rev&f=h";
}
push @output, "$baseurl$extra";
}
return @output;
};
######################################################################
# Load the local configuration file, that allows the entries in this
# file to be overridden.
######################################################################
eval { require "$CVSROOT/CVSROOT/cfg_local.pm" }
if -e "$CVSROOT/CVSROOT/cfg_local.pm";
warn $@ if $@;
if (defined $TZ) {
$ENV{'TZ'} = $TZ;
} else {
delete $ENV{'TZ'};
}
tzset;
1; # Perl requires all modules to return true. Don't delete!!!!
#end
2.0.3
jylefort | 2005-09-06 | 5 | -50/+25 |
* | - Stop adding rzsh (restricted zsh) to /etc/shells [1]: | sergei | 2005-09-06 | 2 | -6/+36 |
* | There is more than 12 packages now. | thierry | 2005-09-03 | 1 | -1/+1 |
* | Upgrade to 1.0.3. | thierry | 2005-09-02 | 3 | -6/+70 |
* | - Re-add patch-configure (removed by mistake) to fix the build on the cluster; | thierry | 2005-09-02 | 3 | -2/+28 |
* | Remove mastersite which has gone away. | linimon | 2005-09-01 | 1 | -1/+0 |
* | Remove ftp.rge.com from MASTER_SITES. | tg | 2005-08-30 | 1 | -2/+1 |
* | - Retire shells/zsh-devel in favor of shells/zsh: | sergei | 2005-08-29 | 5 | -772/+0 |
* | Upgrade to 1.0.2. | thierry | 2005-08-28 | 7 | -47/+32 |
* | [1]: | jylefort | 2005-07-30 | 8 | -124/+58 |
* | Per prior standing request, turn this port over from inactive committer | linimon | 2005-07-20 | 1 | -1/+1 |
* | Change MASTER_SITES to a CPAN address since old is broken | garga | 2005-07-12 | 4 | -4/+4 |
* | Change MAINTAINER to my @FreeBSD.org account | garga | 2005-07-12 | 2 | -2/+2 |
* | Update to osh-050219 to fix fetching | kris | 2005-07-11 | 2 | -8/+3 |
* | Fix svn issue with scponly via ssh+svn://. | nork | 2005-06-20 | 1 | -2/+3 |
* | Bump PORTREVISION by previous commit. | nork | 2005-06-19 | 1 | -1/+1 |
* | Add support ssh+svn://. | nork | 2005-06-19 | 1 | -0/+9 |
* | - Add itself to /etc/shells | pav | 2005-06-06 | 2 | -1/+13 |
* | Fix this patch file. | obrien | 2005-05-05 | 2 | -21/+12 |
* | - Change the way used to add/remove the shell on /etc/shells, | clsung | 2005-05-04 | 8 | -24/+84 |
* | Tweak pkg-descr, break out /etc/shell editing as seperate target, install | obrien | 2005-04-29 | 3 | -13/+231 |
* | - Use MAKE_ARGS | vs | 2005-04-26 | 2 | -22/+1 |
* | Update to version 1.0136 | krion | 2005-04-21 | 2 | -3/+3 |
* | - Update to 4.2.5 | sergei | 2005-04-20 | 3 | -15/+20 |
* | - It was not installing on FreeBSD 4.x with perl 5.00503. | leeym | 2005-04-20 | 6 | -0/+40 |
* | - Update to 1.8 | sergei | 2005-04-19 | 8 | -96/+202 |
* | - Update to 4.1 | leeym | 2005-04-14 | 3 | -16/+4 |
* | Change my MAINTAINER email address to jylefort@FreeBSD.org | jylefort | 2005-04-13 | 2 | -2/+2 |
* | CVS really does need a better way of backing out a commit composing a | obrien | 2005-04-12 | 1 | -3/+2 |
* | At Kris's request, back out the MACHINE_ARCH spelling correction until | obrien | 2005-04-12 | 3 | -3/+4 |
* | Very sorry for a local change that made it into the last commit. | obrien | 2005-04-11 | 1 | -2/+1 |
* | Assist getting more ports working on AMD64 by obeying the | obrien | 2005-04-11 | 3 | -4/+5 |
* | Bump PORTREVISION to chase the glib20 shared lib version change. | marcus | 2005-03-12 | 1 | -0/+1 |
* | Remove references to ports recently deleted. | kris | 2005-02-21 | 1 | -3/+0 |
* | As previously announced, remove ports that have reached their expiry date, | kris | 2005-02-19 | 29 | -675/+0 |
* | BROKEN: Incomplete pkg-plist | kris | 2005-02-12 | 2 | -0/+4 |
* | - Update to 4.2.4 | sergei | 2005-02-07 | 2 | -5/+5 |
* | Update to 2005-02-02 | vs | 2005-02-04 | 2 | -5/+5 |
* | Use USE_PGSQL | erwin | 2005-01-31 | 1 | -3/+1 |
* | Update to version 2.2.3 to fix security vulnerability. | simon | 2005-01-26 | 2 | -3/+3 |
* | Remove the test for /dev/dsp during configure, it does not affect the | thierry | 2005-01-26 | 1 | -0/+13 |
* | - Update to 4.2.3 | sergei | 2005-01-24 | 3 | -6/+23 |
* | Add bush 1.0.1, the Business Shell. | thierry | 2005-01-24 | 7 | -0/+177 |
* | - Update to 1.0.2 | pav | 2005-01-20 | 5 | -49/+39 |
* | - Update to 20050112 | pav | 2005-01-20 | 4 | -6/+6 |
* | Fix shells/ksh93 port | edwin | 2005-01-12 | 3 | -20/+8 |
* | BROKEN: unfetchable (maintainer confirms that a new release was uploaded | kris | 2004-12-30 | 1 | -0/+2 |
* | Reset MAINTAINER to ports@. | nork | 2004-12-23 | 1 | -1/+1 |
* | Scponly validates dangerous arguments since version 4.0. However, | vs | 2004-12-15 | 2 | -1/+13 |
* | - Update to 4.0 | pav | 2004-12-05 | 3 | -19/+24 |
* | Update to 1.6.0 | seanc | 2004-11-30 | 3 | -7/+7 |
* | Fix `read -e' handling when PS1 is longer than the terminal width | eik | 2004-11-19 | 2 | -1/+25 |
* | - update to patchlevel 16 (replacing FreeBSD subst.c patch) | eik | 2004-11-11 | 3 | -18/+10 |
* | Bump PORTREVISIONS for all ports that depend on atk or pango to ease in the | marcus | 2004-11-08 | 1 | -0/+1 |
* | There is a string format vulnerability in rssh-2.2.1 | leeym | 2004-11-03 | 3 | -17/+9 |
* | - update to patchlevel 15 | eik | 2004-11-02 | 3 | -19/+7 |
* | Install the binary as 'bash2' also. | obrien | 2004-10-28 | 2 | -0/+2 |
* | Use the offical option for static linking. | obrien | 2004-10-28 | 1 | -1/+1 |
* | - Update to 20041017 | pav | 2004-10-28 | 6 | -32/+44 |
* | Update to 2.06a. | knu | 2004-10-26 | 6 | -478/+5 |
* | Unbreak building by requiring gcc 3.4 | edwin | 2004-10-16 | 1 | -0/+1 |
* | - better reflect `bash --version' in PORTVERSION | eik | 2004-10-14 | 9 | -22/+302 |
* | New port: shells/viewglob, a GTK+ add-on to bash and zsh | edwin | 2004-10-14 | 7 | -0/+121 |
* | [NEW PORT] shells/zoidberg: A modular PERL shell | edwin | 2004-10-14 | 5 | -0/+152 |
* | Fix process substitution on systems without fdescfs (FreeBSD 5.x, 6.x) | eik | 2004-10-09 | 9 | -98/+79 |
* | Unbreak on 5.X and -CURRENT. | danfe | 2004-10-07 | 2 | -6/+1 |
* | BROKEN on 5.x: Does not compile | kris | 2004-09-29 | 1 | -0/+4 |
* | - Fix package build on pointyhat and other environments where | sergei | 2004-09-27 | 1 | -1/+2 |
* | - rssh < 2.2.1 has information disclosure vulnerability, so update to 2.2.1 | leeym | 2004-09-22 | 3 | -97/+20 |
* | update to version 3.7 | eik | 2004-09-03 | 20 | -520/+168 |
* | - add FAQ | eik | 2004-09-03 | 6 | -11/+181 |
* | Reenable 'pkg_add -r' usefullness. | obrien | 2004-08-27 | 1 | -0/+1 |
* | Add patch-set which fixes various bugs including a stack overflow. | vs | 2004-08-26 | 2 | -1/+6 |
* | Deprecated. | shige | 2004-08-26 | 1 | -0/+3 |
* | - Move a faster site (archive.progeny.com) to the beginning | sergei | 2004-08-25 | 1 | -3/+4 |
* | - Remove dead mirrors, add few new ones | sergei | 2004-08-25 | 1 | -5/+6 |
* | - Update to 4.2.1 [1] | sergei | 2004-08-24 | 3 | -69/+86 |
* | We now have the C99 wide/multibyte character functions bash needs. | obrien | 2004-08-23 | 2 | -26/+0 |
* | Add the 'DEBUG' build option. | obrien | 2004-08-23 | 1 | -0/+3 |
* | add three fixes from bug-bash@: | eik | 2004-08-19 | 4 | -1/+57 |
* | update to 040812 | oliver | 2004-08-16 | 2 | -3/+3 |
* | mark bash1 DEPRECATED, with EXPIRATION_DATE 2004-08-25 | eik | 2004-08-12 | 1 | -0/+3 |
* | move shells/bash3 -> shells/bash | eik | 2004-08-12 | 9 | -232/+1 |
* | Fix nested brace vs. variable expansion | eik | 2004-08-11 | 4 | -2/+32 |
* | Fix segfault when accessing an unset array | eik | 2004-08-11 | 4 | -0/+34 |
* | Ignore /dev/fd/ on FreeBSD 5.x -- devfs doesn't provide a full /dev/fd/ | obrien | 2004-08-10 | 2 | -1/+17 |
* | Add bash3, The GNU Bourne-Again SHell version 3.00 | eik | 2004-07-31 | 43 | -958/+355 |
* | - Update to 20040711 | pav | 2004-07-30 | 4 | -8/+6 |
* | Remove references to mirror.ac.uk | vs | 2004-07-26 | 1 | -2/+1 |
* | Update to 3.11 | krion | 2004-07-17 | 4 | -15/+27 |
* | Integrate bug fixes from [FDclone-users:00310], [FDclone-users:00311] | knu | 2004-07-17 | 4 | -0/+464 |
* | - Update to 0.9.5 | vs | 2004-07-17 | 2 | -4/+5 |
* | upgrade to 1.0124 | ijliao | 2004-07-15 | 2 | -3/+3 |
* | Update to 2.05g. | knu | 2004-07-10 | 2 | -3/+3 |
* | Fix location of binary in man-page | vs | 2004-07-08 | 3 | -0/+15 |
* | Fix packaging w/ NOSHARED. | vs | 2004-06-30 | 1 | -19/+19 |
* | Update to 2.05f. | knu | 2004-06-25 | 6 | -94/+15 |
* | Add v7sh, the original Steve R. Bourne shell from the 7th edition Unix including | pav | 2004-06-22 | 39 | -0/+5606 |
* | Avoid a null pointer dereference, so 'xargs <<< ${EMTPY_VARIABLE}' | obrien | 2004-06-21 | 6 | -3/+63 |
* | Fix MASTER_SITES. | nork | 2004-06-13 | 1 | -4/+2 |
* | Fix MASTER_SITES. | nork | 2004-06-13 | 1 | -4/+2 |
* | Fix a bug where a \ at EOL did not work as escape character. | knu | 2004-06-13 | 4 | -0/+88 |
* | Update to 2.05e. | knu | 2004-06-09 | 7 | -762/+3 |
* | - Postfix fix: don't expect postconf be in /usr/sbin, rely on it being in PATH | pav | 2004-06-05 | 4 | -4/+42 |
* | Putting commit bit in storage. I don't have the time | patrick | 2004-06-03 | 1 | -1/+1 |
* | Don't remove directories we didn't install | kris | 2004-05-31 | 2 | -6/+0 |
* | Double MAXLAUNCHTABLE and MAXFUNCLINES. | knu | 2004-05-27 | 2 | -5/+15 |
* | Readd a correct fix against the glob expansion bug. | knu | 2004-05-26 | 4 | -1/+715 |
* | Back out part of the previous commit. Turned out that the fixes in | knu | 2004-05-25 | 4 | -652/+1 |
* | Apply fixes against recently reported bugs. | knu | 2004-05-25 | 6 | -0/+696 |
* | - Mark rssh as IGNORE on 4.x (wordexp() is not supported) | clement | 2004-05-23 | 1 | -1/+5 |
* | Add rssh 2.1.1, a Restricted Secure SHell only for sftp or/and scp. | clement | 2004-05-21 | 6 | -0/+140 |
* | - Fix MASTER_SITES | krion | 2004-05-19 | 2 | -5/+3 |
* | Update to 2.05d. | knu | 2004-05-13 | 2 | -3/+3 |
* | Update to osh-040421 | linimon | 2004-05-11 | 2 | -3/+3 |
* | - Update to version 20040331 | krion | 2004-04-16 | 4 | -6/+6 |
* | Trim whitespace. | trevor | 2004-04-11 | 1 | -1/+0 |
* | - Update to version 040216 | krion | 2004-04-10 | 3 | -15/+5 |
* | - tar -> ${TAR} (since we have now a bsdtar ;) | clement | 2004-04-07 | 1 | -1/+1 |
* | Remove category pkg/COMMENT files in favour of a COMMENT variable in the | kris | 2004-04-02 | 2 | -1/+2 |
* | - Fix CONFIGURE_ARGS handling | pav | 2004-04-02 | 1 | -4/+4 |
* | SIZEify (maintainer timeout) | trevor | 2004-03-31 | 9 | -0/+36 |
* | Catch up with the master port's update to 4.2.0. | knu | 2004-03-25 | 2 | -10/+9 |
* | Rename a wrongly named patch. | knu | 2004-03-25 | 1 | -0/+0 |
* | Add a patch to fix a minor bug with deleting a multibyte character at | knu | 2004-03-25 | 2 | -0/+18 |
* | - Update to 4.2.0 [1] | sergei | 2004-03-24 | 3 | -23/+98 |
* | - Update to 1.0115 | clement | 2004-03-22 | 3 | -11/+11 |
* | Use PORTDOCS macro. | clement | 2004-03-22 | 2 | -3/+1 |
* | Remove old version's SIZE. | nork | 2004-03-20 | 1 | -1/+0 |
* | Update to 3.9(support for WinSCP3). | nork | 2004-03-20 | 5 | -30/+37 |
* | Fix build on amd64, and make this port actually run on 5.x. | kris | 2004-03-18 | 3 | -8/+33 |
* | - SIZE'ify | krion | 2004-03-18 | 1 | -0/+1 |
* | . New victim^Wmaintainer. | glewis | 2004-03-18 | 1 | -1/+1 |
* | . Unbreak by updating to 2004-02-29. | glewis | 2004-03-18 | 3 | -8/+7 |
* | SIZEify. | trevor | 2004-03-18 | 1 | -0/+2 |
* | BROKEN: Distfile is unfetchable | kris | 2004-03-17 | 1 | -0/+2 |
* | BROKEN on amd64: Does not compile | kris | 2004-03-14 | 1 | -1/+7 |
* | BROKEN on ia64: Does not compile | kris | 2004-03-07 | 1 | -1/+7 |
* | Drop maintainership. I don't use this. | naddy | 2004-03-06 | 1 | -1/+1 |
* | BROKEN on sparc64: Does not compile | kris | 2004-03-05 | 1 | -1/+7 |
* | - add SIZE | dinoex | 2004-02-26 | 1 | -0/+1 |
* | Update to 2.05c. | knu | 2004-02-25 | 2 | -2/+3 |
* | - Update to version 20040214 | krion | 2004-02-19 | 6 | -44/+30 |
* | Use PLIST_FILES (bento-tested, marcus-reviewed). | trevor | 2004-02-06 | 6 | -3/+3 |
* | Bump PORTREVISION on all ports that depend on gettext to aid with upgrading. | marcus | 2004-02-04 | 2 | -0/+2 |
* | SIZE *DOES* MATTER. | sergei | 2004-01-31 | 1 | -0/+2 |
* | SIZEify. | trevor | 2004-01-30 | 11 | -0/+11 |
* | Update to 20040101 | mharo | 2004-01-11 | 4 | -4/+4 |
* | Fix pkg-plist (NOPORTDOCS knob). | osa | 2004-01-03 | 3 | -12/+12 |
* | Use DOCSDIR macro. | osa | 2003-12-31 | 2 | -8/+8 |
* | Use DOCSDIR macro. | osa | 2003-12-31 | 1 | -2/+2 |
* | - Update to 4.0.9 | sergei | 2003-12-20 | 3 | -21/+51 |
* | Also pay attention to NOSHARED=yes as /usr/src and zsh does. | obrien | 2003-12-15 | 3 | -3/+3 |
* | The option to enable network redirection is removed since this is the | obrien | 2003-12-14 | 3 | -27/+0 |
* | Build bash dynamic unless either WANT_STATIC_BASH or NO_DYNAMICROOT | obrien | 2003-12-14 | 3 | -0/+12 |
* | - Fix build on non-i386 platforms. | pav | 2003-12-13 | 2 | -30/+43 |
* | Update to 2.05a, which fixes a bug in a builtin command "checkid". | knu | 2003-12-10 | 2 | -3/+4 |
* | Update to 2.05. | knu | 2003-12-09 | 3 | -34/+2 |
* | Add 'cvs blame' support. | obrien | 2003-12-07 | 2 | -8/+44 |
* | scponly dist includes a script which setup chroot cage, which | jeh | 2003-11-21 | 2 | -0/+25 |
* | Apply a patch that fixes segv in group lookups. | knu | 2003-11-20 | 2 | -0/+32 |
* | - fix build with gcc 3.3.x | krion | 2003-11-19 | 5 | -109/+171 |
* | - Update to version 20031112 | krion | 2003-11-17 | 4 | -4/+4 |
* | Update to 031112 and unbreak, old version was not fetchable anymore. | pav | 2003-11-15 | 2 | -2/+2 |
* | - Update to version 20031022 | krion | 2003-11-07 | 4 | -4/+4 |
* | Some days it doesn't pay to try to try to chew through the leather straps. | linimon | 2003-11-05 | 1 | -1/+1 |
* | Reset maintainer to ports@FreeBSD.org. Requested by: kris. | linimon | 2003-11-03 | 2 | -2/+2 |
* | Reset maintainer to ports@. Reviewed by: kris. | linimon | 2003-11-03 | 1 | -1/+1 |
* | Update to current version. PR ports/58192. | linimon | 2003-11-03 | 5 | -20/+15 |
* | Reset maintainer of ports owned by inactive committers who were just retired. | kris | 2003-11-03 | 1 | -2/+2 |
* | Move inclusion of bsd.port.pre.mk past variable definitions. | linimon | 2003-10-29 | 1 | -6/+6 |
* | utilize SITE_PERL | ijliao | 2003-10-24 | 3 | -122/+122 |
* | Change to my @FreeBSD.org address. | sergei | 2003-10-23 | 1 | -1/+1 |
* | All right, that's it, no more commits at 4am for me. | linimon | 2003-10-21 | 1 | -5/+1 |
* | Remove BROKEN case for i386 4.x. | linimon | 2003-10-21 | 1 | -2/+10 |
* | Per bento logs, this is broken on 5.x. Rather than marking it so only | linimon | 2003-10-21 | 1 | -1/+3 |
* | - Layout for GnuSTEP 1.8.0 | dinoex | 2003-10-19 | 1 | -5/+1 |
* | Update to 2.04c. | knu | 2003-10-18 | 2 | -2/+2 |
* | Before committing the previous BROKEN changes I carefully checked the status | kris | 2003-10-16 | 1 | -7/+1 |
* | BROKEN on 5.x: does not compile | kris | 2003-10-16 | 2 | -2/+14 |
* | [patch][non-maintainer] remove dead master site from shells/zsh | edwin | 2003-10-04 | 1 | -1/+0 |
* | - Update to version 20030929 | krion | 2003-09-30 | 4 | -6/+6 |
* | New port: shells/bash-completion | edwin | 2003-09-29 | 13 | -0/+143 |
* | - Fix build on -current | krion | 2003-09-28 | 1 | -0/+11 |
* | KATO mega patch | edwin | 2003-09-27 | 5 | -5/+5 |
* | Fixup tcsh_config to look in ${PREFIX}/share instead of /usr/share. | seanc | 2003-09-11 | 1 | -1/+6 |
* | After using tcsh for 4 years and having just discovered the 'rprompt' | seanc | 2003-09-10 | 5 | -0/+38 |
* | o Respect scponly default configuration. | nork | 2003-09-02 | 2 | -26/+37 |
* | - Fix typo in COMMENT [1] | krion | 2003-09-01 | 2 | -4/+2 |
* | Fix build on -current (varargs -> stdarg) | obrien | 2003-08-31 | 9 | -0/+0 |
* | - Fix build on -current (varargs -> stdarg) | krion | 2003-08-30 | 9 | -0/+255 |
* | - Fix build on -current | krion | 2003-08-29 | 1 | -0/+1707 |
* | - use new hook USE_GNUSTEP in bsd.port.mk | dinoex | 2003-08-28 | 1 | -6/+3 |
* | Remove tcsh. | netchild | 2003-08-21 | 7 | -104/+0 |
* | Forced update to release 2003-07-24. | naddy | 2003-08-02 | 2 | -3/+3 |
* | Update to 2.04a. | knu | 2003-07-29 | 3 | -16/+2 |
* | - flat layout | dinoex | 2003-07-26 | 1 | -5/+5 |
* | Fix compatibility with rsync (depend explicitly on rsync). | maho | 2003-07-26 | 1 | -1/+3 |
* | fix configure arguments for gftp stuff. | maho | 2003-07-26 | 1 | -2/+2 |
* | Fix NOSHARED (produce static executable) | osa | 2003-07-21 | 2 | -0/+2 |
* | Update to 4.0.7 and turn over this port to the submitter. This update | will | 2003-07-20 | 3 | -542/+613 |
* | Update to release 2003-06-21. | naddy | 2003-07-08 | 2 | -3/+3 |
* | Update to 4.1.1. | shige | 2003-07-04 | 4 | -535/+687 |
* | - Drop obsolete defines | dinoex | 2003-07-04 | 1 | -1/+0 |
* | Update to 2.04. | knu | 2003-06-30 | 3 | -2/+16 |
* | Add "test" target to exercise regression tests; from NetBSD. | naddy | 2003-06-25 | 1 | -4/+9 |
* | - don't package ~/GNUSstep | dinoex | 2003-06-18 | 1 | -5/+0 |
* | - remove empty dirs | dinoex | 2003-06-10 | 1 | -0/+6 |
* | Fetch patches from MASTER_SITE_GNU also. | obrien | 2003-05-20 | 3 | -6/+12 |
* | Properly configure on FreeBSD/amd64. | obrien | 2003-05-17 | 6 | -0/+75 |
* | Update to patchlevel 7. | obrien | 2003-05-17 | 6 | -6/+18 |
* | Update to 2.03b. | knu | 2003-05-15 | 6 | -149/+2 |
* | Change maintainership to submitter. | nork | 2003-05-11 | 1 | -1/+1 |
* | Update to 3.8. | nork | 2003-05-03 | 2 | -2/+2 |
* | Update to release 2003-04-22. | naddy | 2003-05-02 | 2 | -4/+3 |
* | Apply a fix against a macro expansion problem and bump PORTREVISION | knu | 2003-04-23 | 4 | -0/+134 |
* | Update to 2.03a + readlink fix. | knu | 2003-04-19 | 4 | -9/+34 |
* | o Update to 3.7. | nork | 2003-04-18 | 3 | -5/+90 |
* | Oops, put the correct file into /etc/shells. | naddy | 2003-04-16 | 2 | -2/+3 |
* | - Use libobjc.so | dinoex | 2003-04-13 | 1 | -22/+5 |
* | Update to 4.1.0.dev7. | shige | 2003-04-04 | 3 | -2/+22 |
* | update shells/rc to version 1.7, with readline | edwin | 2003-03-30 | 3 | -13/+9 |
* | Update to 2.03. | knu | 2003-03-28 | 3 | -10/+10 |
* | Support /dev/(tcp|udp)/host/port redirection. | obrien | 2003-03-25 | 3 | -0/+27 |
* | GSCommander is a simple unix command monitor for GNUstep. | dinoex | 2003-03-24 | 5 | -0/+69 |
* | PR: 49067 | foxfair | 2003-03-23 | 1 | -2/+4 |
* | Clear moonlight beckons. | ade | 2003-03-07 |