Skip site navigation (1)Skip section navigation (2)

CVS log for ports/Makefile

[BACK] Up to [FreeBSD] / ports

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.109: download - view: text, markup, annotated - select for diffs
Wed May 4 22:33:13 2011 UTC (9 months, 1 week ago) by flz
Branches: MAIN
CVS tags: RELEASE_9_0_0, HEAD
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +6 -2 lines
Latest round of infrastructure changes.

- bsd.port.mk: add INDEX_PORTS, to support INDEX creation for a subset of the ports tree [1]
- bsd.port.mk: call target "install-rc-script" before "post-install" [2]
- [patch] ports/Mk bsd.port.mk order if groups/users are created by package [3]
- [bsd.port.mk] [patch] reaper of the dead: md5 has been in /sbin for a while [4]
- [bsd.port.mk] [patch] remove support for pre 7.x systems (b.*.m) [5]
- [patch] [bsd.port.mk] reaper of the dead: are three variable defintions needed [6]

PR:		ports/156575 [1],
		ports/139116 [2],
		ports/152498 [3],
		ports/155983 [4],
		ports/155510 [5],
		ports/156340 [6]
Submitted by:	Florent Thoumie <flz@xbsd.org> [1],
		Sergey Skvortsov <skv@freebsd.org> [2],
		Olli Hauer <ohauer@FreeBSD.org> [3],
		Eitan Adler <lists@eitanadler.com> [4],
		Eitan Adler <lists@eitanadler.com> [5],
		Eitan Adler <lists@eitanadler.com> [6]

Revision 1.108: download - view: text, markup, annotated - select for diffs
Sun Mar 6 22:44:48 2011 UTC (11 months ago) by pav
Branches: MAIN
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +0 -1 lines
- Retire mbone as a physical category

Revision 1.107: download - view: text, markup, annotated - select for diffs
Fri Dec 18 14:28:46 2009 UTC (2 years, 1 month ago) by pav
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_8_1_0, RELEASE_7_4_0, RELEASE_7_3_0, RELEASE_6_EOL
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +1 -4 lines
- Terminate support for X11BASE having different value from LOCALBASE

PR:		ports/122341
Submitted by:	flz

Revision 1.106: download - view: text, markup, annotated - select for diffs
Thu Oct 22 13:56:49 2009 UTC (2 years, 3 months ago) by sem
Branches: MAIN
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +2 -0 lines
- Allow users to redefine an update target.

Approved by:	no objections in ports-developers@

Revision 1.105: download - view: text, markup, annotated - select for diffs
Sat Aug 22 19:32:48 2009 UTC (2 years, 5 months ago) by miwi
Branches: MAIN
CVS tags: RELEASE_8_0_0
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +1 -1 lines
 - bsd.port.mk - Remove ${INDEXDIR}/${INDEXFILE}.bz2 after fetchindex is being run
 	PR:		117178
	Submitted by:	krion

 - Fix the problem usage MASTER_SITE_SUBDIR without /
 	PR:		131452
	Submitted by:	osa

Tested:		pointyhat exp-run

Revision 1.104: download - view: text, markup, annotated - select for diffs
Sat Jul 19 17:59:40 2008 UTC (3 years, 6 months ago) by kris
Branches: MAIN
CVS tags: RELEASE_7_2_0, RELEASE_7_1_0, RELEASE_6_4_0
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +11 -1 lines
Major optimizations for 'make index' and other recursive traversal
targets.

* Use /rescue/sh for index builds instead of /bin/sh, when it exists.
  The former is statically linked and faster to execute, which becomes
  significant when executing it tens of thousands of times.  This
  trick can be used with other recursive targets by passing in
  __MAKE_SHELL.

* Get rid of make variable assignments that use != command invocations
  in the critical path, using several methods:

  - rewriting logic to use shell or make builtins instead of external command executions
  - macroizing commands and executing them in the targets where they
    are needed instead of with every invocation of make
  - precomputing the results of invariant commands in
    bsd.port.subdir.mk and passing them in explicitly to child makes,
    and using this to avoid recalculation in all the children. NB: the
    commands are still run one per top-level subdirectory but this
    does not currently seem to be a major issue.  They could be moved
    further up into the top-level Makefile at the cost of some
    cleanliness.
  - Committers are strongly discouraged from adding further "bare" !=
    assignments to the ports tree, even in their own ports.  One of
    the above strategies should be used to avoid future bloat.

* Rewrite the core 'describe' target to work entirely within a single
  shell process using only builtin commands.  The old version is
  retained as a backup for use on systems older than 603104, which
  does not have the make :u modifier.  This cuts down the number of
  processes executed during the course of a 'make index' by an order
  of magnitude, and we are essentially now amortized to the minimum of
  a single make + sh instance per port, plus whatever commands the
  port makefile itself executes (which are usually unnecessary and
  bogus).

* Less validation of the WWW: target is performed; this can become
  policed at a port level by portlint.  Specifically we look at the
  second word of the first line beginning with "WWW:" in pkg-descr,
  and append "http://" to it unless it already begins with "http://",
  "https://" or "ftp://".  Thanks to dougb for the idea of how to
  extract WWW: using shell builtins.

* Use the "true" shell builtin instead of echo > /dev/null for a
  measurable decrease in CPU use.

* Add a note about dubious escaping strategy in bsd.port.subdir.mk

* Minor change in output of 'make describe': it no longer strips
  trailing CR characters from pkg-descr files with MSDOS CR/LF
  termination.  Instead the makeindex perl script that post-processes
  make describe into the INDEX is tweaked to strip on input.

The bottom line is that on my test hardware INDEX builds are now
faster by more than a factor of 2 and with a reduction in system time
by a factor of 4-8 depending on configuration.

Revision 1.103: download - view: text, markup, annotated - select for diffs
Thu Sep 27 05:36:26 2007 UTC (4 years, 4 months ago) by linimon
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0, RELEASE_5_EOL
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +0 -3 lines
Remove obsolete anti-foot-shooting measure that tried to force you
to use csup for both ports and src.  It should be possible to use csup
for src and portsnap for ports.

If you define SUP_UPDATE without PORTSSUPFILE defined, you'll get
portsnap by default now.

PR:		ports/113819
Submitted by:	ale
Requested by:	many
Hat:		portmgr

Revision 1.102: download - view: text, markup, annotated - select for diffs
Thu May 24 23:58:29 2007 UTC (4 years, 8 months ago) by linimon
Branches: MAIN
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +14 -8 lines
The default method for 'make update' is now portsnap.  Previously,
you had to manually select one of 3 methods: SUP_UPDATE, CVS_UPDATE,
or PORTSNAP_UPDATE.  The latter is now obsolete.

This should help some novice administrators just-start their system.

PR:		ports/105835
Submitted by:	erwin

Revision 1.101: download - view: text, markup, annotated - select for diffs
Sat May 19 22:50:33 2007 UTC (4 years, 8 months ago) by erwin
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +1 -0 lines
When setting INDEX_PRISTINE, also set USE_NONDEFAULT_X11BASE to
fix INDEX builds for older (OSVERSION < 602000) systems.

Approved by:	portmgr (self)

Revision 1.100: download - view: text, markup, annotated - select for diffs
Sat May 19 21:30:16 2007 UTC (4 years, 8 months ago) by pav
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +1 -0 lines
Add new category x11-drivers

Revision 1.99: download - view: text, markup, annotated - select for diffs
Mon Feb 26 08:54:07 2007 UTC (4 years, 11 months ago) by ru
Branches: MAIN
CVS tags: PRE_XORG_7
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +2 -2 lines
Add two missing dollars.

Revision 1.98: download - view: text, markup, annotated - select for diffs
Wed Jan 31 15:37:18 2007 UTC (5 years ago) by pav
Branches: MAIN
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +1 -0 lines
- Introduce a new ports category ports-mgmt: Ports for managing, installing and
  developing FreeBSD ports and packages

PR:		ports/97507
Submitted by:	shaun

Revision 1.97: download - view: text, markup, annotated - select for diffs
Wed Jan 31 14:07:23 2007 UTC (5 years ago) by pav
Branches: MAIN
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +4 -0 lines
bsd.port.mk
 [1] Remove DEPENDS
 [2] Add a new pkg-plist keyword @stopdaemon
 [3] Provide rc.subr script suffix as RC_SUBR_SUFFIX
 [4] Add USE_CDRTOOLS to abstract dependency on sysutils/cdrtool[-cjk]
 [5] Add DOS2UNIX_REGEX, allowing to pass a filename regex to CRLF replacement
     routine
 [6] Support partially translated manpages in MAN* variables
 [7] Fix USE_LDCONFIG on ports with @cwd in pkg-plist
 [8] Remove support for XFree86 3.X
 [9] Add user settable WITH_DEBUG flag that turns on -g in CFLAGS and resets
     STRIP
 [9] Fix `make install' to refuse overwriting of older version of the port
[10] New category ports-mgmt
[11] New category gnustep
[12] Removed category picobsd

bsd.java.mk
[13] Remove deprecated syntax

bsd.tcl.mk
[14] Provide TCL_VER when USE_TK[_BUILD] is defined. Fixes cad/netgen

ports/Makefile
[15] Make csup default `make update' method on FreeBSD 6.2 and up

PR:		ports/99742 [1], ports/93373 [2], ports/100915 [3],
		ports/105161 [4], ports/106029 [5], ports/106252 [6],
		ports/106235 [7], ports/100939 [9], ports/97507 [10],
		ports/103931 [11], ports/106921 [12], ports/104136 [13],
		ports/105215 [15]
Submitted by:	sem [1] [2], Matthias Andree <matthias.andree@gmx.de> [3],
		nork [4], pav [5] [7] [14], Nick Barkas <snb@threerings.net> [6],
		flz [8], gabor [9], shaun [10], erwin [12], hq [13],
		Gurkan Sengun <gurkan@linuks.mine.nu> [11]

Revision 1.96: download - view: text, markup, annotated - select for diffs
Sat Feb 11 02:26:30 2006 UTC (6 years ago) by kris
Branches: MAIN
CVS tags: RELEASE_6_2_0, RELEASE_6_1_0, RELEASE_5_5_0, RELEASE_4_EOL
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +3 -3 lines
 - Fix the make_index script if PORTSDIR is a path which contains a
   symlink. [1]

 - Allow use of alternate http download utilities with 'make
   fetchindex'. [2]

PR:             ports/35767 [1], ports/92588 [2]
Submitted by:   Peter Jeremy <PeterJeremy at optushome dot com dot au> [1],
                Alexander Logvinov <user at blg dot akavia dot ru> [2]

Revision 1.95: download - view: text, markup, annotated - select for diffs
Sat Jan 28 02:11:04 2006 UTC (6 years ago) by linimon
Branches: MAIN
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +17 -11 lines
 - Fix possibility of "infinite make fork" when "Registering install for ..."
   EMACS ports.  [1]

 - Allow building a port as root using an NFS-mounted /usr/ports if the
   server maps root to a UID other than root. [2]

 - Make 'BROKEN' and 'IGNORED' ports exit their "make install" with a fail
   status rather than success. [3]

 - Improve behavior when dealing with versioned dependencies. [4]

 - Fix false positives in check-conflicts target. [5]

 - Remove obsolete bzip2 code. [6]

 - Add physical category net-p2p. [7]

 - Don't fetch INDEXFILE if not necessary; respect FETCH_ENV. [8], [11]

 - INDEX can now be moved outside of ports tree. [9]

 - Add ghostscript-gpl. [10]

 - Remove obsolete USE_MESA. [12]

 - Force pkg_install tools from ports on FreeBSD 4.10 and older. [13]

 - Document ALWAYS_KEEP_DISTFILES. [14]

 - Remove USE_REINPLACE from bsd.port.mk USE_DOS2UNIX patch. [15]

PR:	ports/37596 [1], ports/57259 [2], ports/63216 [3],
	ports/89448 [4], ports/89710 [5], ports/88996 [6],
	ports/89260 [7], ports/89363 [8], ports/89809 [9],
	ports/89853 [10], ports/91086 [11], ports/91710 [12],
	ports/91727 [13], ports/92111 [14], ports/92124 [15]
Submitted by:	Jay Sachs <jay at eziba dot com> [1], sem [1, 3, 8, 12],
		Andrew Heybey <ath at niksun dot com> [2], Jamie Jones
		<jamie at thompson dot bishopston dot net>, tobez [4], Mark
		Andrews <Mark_Andrews at isc dot org> [5], edwin [6, 11, 15],
		pav [7, 13], Peter Jeremy <PeterJeremy at optushome dot com
		dot au> [9], Ulrich Spoerlein <q at galgenberg dot net> [10],
		netchild [11], erwin [14]
Reviewed by:	kris, clement (partially)

Revision 1.94: download - view: text, markup, annotated - select for diffs
Tue Jan 24 21:35:29 2006 UTC (6 years ago) by cperciva
Branches: MAIN
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +2 -1 lines
Split "portsnap fetch update" into "portsnap fetch" and "portsnap update"
for compatibility with old versions of portsnap.

Approved by:	krion

Revision 1.93: download - view: text, markup, annotated - select for diffs
Sat Jan 21 17:37:00 2006 UTC (6 years ago) by krion
Branches: MAIN
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +9 -2 lines
- Fix 'all-depends-list' target in cases if dependencies list is
  very long and if some dependencies can't be added into the list.
  [1]

- Fix FAM support.  Make gamin the default FAM system. [2]

- Introduce new 'quicksearch' target to show only port, path and
  info section of the matching ports. [3]

- Introduce new category - rubygems. [4]

- Fix stale dependencies while installing qmail slaveport and
  another port that depends on qmail. [5]

- Add commentary for describes target in bsd.port.mk. [6]

- Fix warning issued during make index on archs !368. [7]

- Add USE_DOS2UNIX variable.  If set to "YES", remove the ^M from
  all files under ${WRKSRC}. If set to a string, remove in all files
  under ${WRKSRC} with one of these names the ^Ms. [8]

- Add new variables PERL_RUN_DEPENDS and PERL_BUILD_DEPENDS by
  checking the existance of the Perl modules with the "perl -e 'use
  module;'" command. [9]

- Fix bsd.port.mk variable quoting issues.  No quoting is necessary
  anymore either in the Makefile or on the command line.  Affected
  variables include:

  BROKEN
  FORBIDDEN
  IGNORE
  MANUAL_PACKAGE_BUILD
  NO_CDROM
  NO_PACKAGE
  RESTRICTED

  [10]

- Add NOFETCHFILES variable.  If set, don't download these files
  from the ${MASTER_SITES} or ${MASTER_SITE_BACKUP} (but do from
  ${MASTER_SITE_OVERRIDE}). [11]

- Improve 'search' target output. [12]

- Add a new virtual category for Amateur Radio - hamradio. [13]

- Cleanup some old/unused pathes in bsd.port.mk. [14]

- Add @dirrmtry for plists which does the same as:
  "@unexec rmdir %D/foo 2>/dev/null || true" [15]

- Remove virtual category - offix. [16]

- Use portsnap instead of cvsup or cvs on "make update" in
  /usr/ports. [17]

- Move location of bsd.autotools.mk within bsd.port.mk [18]

- Add bsd.linux-rpm.mk, fix INSTALLS_SHLIB for Linux ports [19]

- Use new USE_RC_SUBR format for FreeBSD version >= 700007 [20]

- Replace the string "FreeBSD" by "The FreeBSD Project" in the
  security warning [21]

- Add bsd.local.mk for local modification to ports framework. [22]

- Replace rcNG spelling by rc.d [23]

- Remove superfluous USE_REINPLACE. [24]

Special thanks to:      linimon for spending hours with all these patches
                        clement for fixes
                        kris for help with pointyhat
PR:     ports/86310 [1], ports/89498 [2], ports/83530 [3],
        ports/83789 [4], ports/84053 [5], ports/86281 [6],
        ports/87214 [7], ports/87234 [8], ports/87318 [9],
        ports/87396 [10], ports/87605 [11], ports/87840 [12],
        ports/88230 [13], ports/88493 [14], ports/88711 [15],
        ports/88751 [16], ports/89281 [17], ports/89999 [18],
        ports/90031 [19], ports/90150 [20], ports/90668 [21],
        ports/91433 [23], ports/88754 [24]
Submitted by:   mi [1], marcus [2], Lars Engels <lars.engels@0x20.net> [3],
                pav [4, 16, 20, 24], garga [5], cperciva [6], vd [7],
                edwin [8, 9, 11, 15, 21],
                fenner [10], Arseny Nasokin <tarc.po.cs.msu.su@tarc.po.cs.msu.su> [12],
                Carl Makin <carl@stagecraft.cx> [13], arved [14],
                NIIMI Satoshi <sa2c@sa2c.net> [17], thierry [18],
                jylefort [19], linimon [22], dougb [23]

Revision 1.92: download - view: text, markup, annotated - select for diffs
Sat Dec 24 07:04:15 2005 UTC (6 years, 1 month ago) by ru
Branches: MAIN
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +1 -1 lines
MFsrc: Show stray files during "cvs update".

Revision 1.91: download - view: text, markup, annotated - select for diffs
Tue Nov 8 13:32:54 2005 UTC (6 years, 3 months ago) by pav
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +1 -0 lines
- Create a new category, net-im, for instant messaging applications.
  I will populate it with ~100 ports mainly from net category soon.

Approved by:	portmgr (clement)

Revision 1.90: download - view: text, markup, annotated - select for diffs
Fri Dec 17 11:23:22 2004 UTC (7 years, 1 month ago) by krion
Branches: MAIN
CVS tags: RELEASE_6_0_0, RELEASE_5_4_0, RELEASE_4_11_0
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +2 -1 lines
Introduce new variable MASTER_SITE_INDEX, to allow mirroring of
INDEX files.

PR:		ports/74709
Submitted by:	Valentin Nechayev <netch@netch.kiev.ua>

Revision 1.89: download - view: text, markup, annotated - select for diffs
Sun Nov 28 21:53:07 2004 UTC (7 years, 2 months ago) by linimon
Branches: MAIN
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +0 -1 lines
As previously announced, remove ports/picobsd/ssh-picobsd due to long-
standing build problems.  Since it was the last port in the picobsd
category, remove it, too.

Discussed with:		kris

Revision 1.88: download - view: text, markup, annotated - select for diffs
Tue Nov 16 09:12:34 2004 UTC (7 years, 2 months ago) by kuriyama
Branches: MAIN
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +2 -1 lines
Allow to override fetch option by $FETCHINDEX variable.

Approved by:	portmgr (krion)

Revision 1.87: download - view: text, markup, annotated - select for diffs
Mon Nov 15 21:05:18 2004 UTC (7 years, 2 months ago) by pav
Branches: MAIN
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +1 -1 lines
- In fetchindex target:
  Fetch bzip2 compressed copy of INDEX and decompress locally. This should
  cut down both time and bandwidth.

Approved by:	kris (portmgr hat)

Revision 1.86: download - view: text, markup, annotated - select for diffs
Wed Jul 14 08:18:16 2004 UTC (7 years, 6 months ago) by kris
Branches: MAIN
CVS tags: RELEASE_5_3_0
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +12 -17 lines
* Be even more explicit about partial ports trees being unsupported
  for INDEX builds [1]

* Remove the parallel target from Makefile; this is heavily tied to
  the package build cluster and can be better done in the makeparallel
  script (commit to follow) [2]

* Extend the format of INDEX to separately list the
  EXTRACT/PATCH/FETCH_DEPENDS instead of lumping them all in together
  with BUILD_DEPENDS.  The three new fields are appended to the end of
  the record in that order. [2]

* Change BROKEN to IGNORE in BROKEN_WITH_MYSQL failure code [3]

* Support non-default PREFIX for perl 5.00503 [5]

* Use pkg_info -I instead of ls when searching for conflicts [6]

* Allow local customization of the port subdirectories by including
  ${.CURDIR}/Makefile.local in bsd.subdir.mk if it exists [7]

* Fix 'make search' when ${PORTSDIR} is a symlink to a directory name
  containing extended regexp metacharacters [8]

Submitted by:	linimon [1] [3], kris [2], lth [4], sem [5], eik [5] [6],
		Roman Neuhauser <neuhauser@chello.cz> [7]
PR:		68299 [1], 67705 [3], 67264 [4], 59696 [5], 66568 [6],
		68072 [7]

Revision 1.85: download - view: text, markup, annotated - select for diffs
Fri Jun 11 23:52:44 2004 UTC (7 years, 8 months ago) by kris
Branches: MAIN
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +5 -4 lines
Be more explicit about INDEX builds not being supported with partial
or out-of-date ports collections.

Revision 1.84: download - view: text, markup, annotated - select for diffs
Thu Jun 10 07:30:19 2004 UTC (7 years, 8 months ago) by kris
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +10 -2 lines
* Support verbose index builds with INDEX_VERBOSE [1]

* Don't assume root is using /bin/sh when switching credentials to
  configure OPTIONS. [2]

* Support glob expressions in USE_GETTEXT to allow more flexibility
  in the face of future gratuitous library version bumps by the gettext
  developers [3]:

  USE_GETTEXT=yEs   # Works as before (case-insensitive)
  USE_GETTEXT=[5-7] # Accepts any of those libintl.so.x versions
                    # in the LIB_DEPENDS

* Correctly register dependencies when a non-system perl port is used
  on 4.x [4]

* Extend 'make search' support to allow much more flexible searching.
  Syntax will be documented in CHANGES for brevity. [5]

* Reorder the post-install-script target to before add-plist-info for
  consistency [6]

* Various fixes to support port operations when a port directory
  exists under /usr/obj [7]

* Extend USE_PERL5_BUILD and USE_PERL5 to add EXTRACT and PATCH
  dependencies since many ports require perl in those stages [8]

* Move info file deregistration later in the deinstallation process so
  it works properly. [9]

* Improve wording in EXPIRATION_DATE message. [10]

* Fix dependencies for XFREE86_VERSION==3 (obtain imake from
  x11/XFree86 now that the former port is gone) [11]

* While building index, treat non-existent dependencies as fatal.
  Previously the error was being hidden by the stderr redirection. [12]

* Don't always retry BROKEN ports when package building (it is taking
  too much time to continually rebuild ports that are usually going to
  really be broken).  Set TRYBROKEN if you want to attempt a build of
  a BROKEN port. [12]

* Revert incorrect change from 1.487 relating to ALL-DEPENDS-LIST [13]

PR: 		24214 [1], 67529 [2], 63937 [3], 65554 [4], 40699 [5],
		59162 [6], 63372 66567 [7], 63394 [8], 65304 [9],
		65931 [10], 66565 [11], 66743 [13]
Submitted by:	roam [1], will [1], hrs [2], mi [3], ade [4],
		Roman Neuhauser <roman@bellavista.cz> [5],
		Sergey Matveychuk <sem@ciam.ru> [6], gad [7],
		adamw [8], kris [8][12], dinoex [9],
		Alexey Dokuchaev <danfe@regency.nsu.ru> [10],
		eik [11][13]

Revision 1.83: download - view: text, markup, annotated - select for diffs
Tue May 25 10:16:16 2004 UTC (7 years, 8 months ago) by netchild
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +3 -0 lines
Add "fetchindex" target. It fetches the recent index file (INDEX _or_
INDEX-5).

A note about the implementation: I had to add the call to chmod to make
the index file readable to everyone. I'm a little bit surprised by this,
since my umask is 022. Either fetch(1) doesn't respect the umask or it
mirrors the permissions too (I haven't investigated this). Both
possibilities aren't documented in the man-page.

Approved by:	kris (previous version without the chmod)

Revision 1.82: download - view: text, markup, annotated - select for diffs
Fri Apr 2 07:25:23 2004 UTC (7 years, 10 months ago) by kris
Branches: MAIN
CVS tags: RELEASE_4_10_0
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +35 -11 lines
- Allow processing of info files in non-standard locations; the
  INFO_PATH variable may be used to specify their location.  It defaults
  to 'share/info' for the standard PREFIX, and 'info' when PREFIX ==
  /usr. [1]

- Remove the <category>/pkg/COMMENT files in favour of a COMMENT
  variable in <category>/Makefile [2]

- Prevent patch breakage with VERSION_CONTROL=numbered [3]

- Fix some instances of incorrect WRKDIRPREFIX handling. [4]

- remove useless ${MKDIR} ${WRKSRC} in config target [5]

- remove reference to OpenBSD [6]

- Exempt devel/p5-Module-Build from the self-dependency in
  PERL_MODBUILD so that this port may use the option without getting an
  infinite dependency list [7]

- The default PERL_ARCH is currently determined as a function of
  OSVERSION. It should however be a function of PERL_LEVEL since the
  correct value depends on what Perl version one has installed (older
  Perl versions use ${ARCH}-freebsd, newer versions use mach). [8]

- Fix PORTDOCS on older (4.7, 5.0) systems [9]

- Allow 'make parallel' to generate a working makefile when not all
  categories are present (this does not mean you'll be able to build all
  ports, unless you make sure they don't have external dependencies) [10]

- Don't report symlinks as world-writable in the security check [11]

- Fix a comment that was broken by a mismerged patch [12]

- Clarify the meaning of USE_*, WANT_*, WITH_* and WITHOUT_* [13]

- Don't set _CHKSUMFILES/_IGNOREFILES if CKSUMFILES/IGNOREFILES is
  empty and DIST_SUBDIR is set. [14]

- Fix comment for DISTDIR [15]

- Update the documentation of the USE_GL variable [16]

- Check to see if NONEXISTENT exists, and fail with an error if it does [17]

- Fix fetching of new distfiles in 'make makesum' when SIZE is set [18]

- Consistently set MAKE_ENV when USE_GCC=3.2 or 3.3 are set [19]

- Rework INDEX builds: [20]

  * Fix the bsd.port.subdir.mk code that is supposed to report index
    breakage (the fallback code wasn't actually being run because make
    would halt immediately following the error).  This should help with
    INDEX error reports because it will immediately show the cause of
    failure, so we won't have to pull teeth to extract it from the
    submitter.

  * Streamline the 'make describe' code a bit.

  * Provide some basic instructions to the user when an index build
    fails, on when and how to report index build failures (turn this off
    with INDEX_QUIET=1)

  * Removed INDEX_NOSORT, because I couldn't imagine it to be very
    useful and it doesn't cost very much anyway.

  * Don't prevent INDEX builds from seeing the local host environment.
    Since a lot of users are using 'make index' thesedays they should get
    an index that reflects their local settings and installed ports.  If
    you want to build a 'default' index that isn't influenced by local
    settings (e.g. for release builds), set the INDEX_PRISTINE variable.

  * Allows parallel INDEX builds (using make -j).  The most obvious way
    of doing this doesn't work, because I/O from child makes is broken up
    into 2k chunks, and output lines from 'make describe' that exceed this
    length (*cough* GNOME *cough*) will be intertwined with the output of
    other makes, leading to a corrupted INDEX.  The I/O interleaving
    can be disabled using 'make -P', but this inserts extraneous output of
    its own, and redirects stderr, making it useless for our purposes.
    Instead, I collect the output from the child make processes in
    temporary files and recombine them at the end.

  * The number of concurrent make processes to spawn can be set using
    INDEX_JOBS.  By default this is set to 2, which seems to be a sweet
    spot for both single and dual-processor systems.  On my tests I do not
    see any significant performance changes on UP, but on a dual 4.x
    system the build time drops by 47% (6 minute index builds on one test
    machine!).  Depending on your disk and CPU hardware you might see
    further gains with INDEX_JOBS=4 or higher, so you might like to
    experiment to see what works best.  On a dual 5.x system the
    performance gains do not seem to be as great (20-30%), but this is
    still a significant net win.

PR: 		55493 [1], 59651 [2], 61552 [3], 62247 [4], 62329 [5],
		62337 [6], 62422 [7], 62441 [8], 62627 [9], 62983 [10],
		63112 [11], 63297 [12], 63335 [13], 64029 [14], 64069 [15],
		64236 [16], 64519 [17], 62958 [18], 64237 [19]

Submitted by:	lev [1],
		Matthew Seaman <m.seaman@infracaninophile.co.uk> [2],
		Joel Ray Holveck <joelh@piquan.org> [3],
		ade [4], Sergey Matveychuk <sem@ciam.ru> [5],
		markus [6], mat [7], des [8], eik [9],
		Dmitry Morozovsky <marck@rinet.ru> [10],
		Andrew <andrew@ugh.net.au> [11], vs [12], linimon [13],
		edwin [14][15], gerald [16], marcus[17][18], kris [19][20]

Revision 1.81: download - view: text, markup, annotated - select for diffs
Mon Feb 23 04:41:00 2004 UTC (7 years, 11 months ago) by wollman
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +1 -0 lines
Say hello to the new "net-mgmt" category.  There are probably more
ports that belong here than the ones I have identified and moved in
this, first, pass.

Approved in principle by: marcus

Revision 1.80: download - view: text, markup, annotated - select for diffs
Fri Feb 20 02:59:12 2004 UTC (7 years, 11 months ago) by marcus
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +1 -0 lines
Tie x11-themes into the build now that it contains some ports.

Revision 1.79: download - view: text, markup, annotated - select for diffs
Thu Jan 22 09:16:59 2004 UTC (8 years ago) by marcus
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +1 -0 lines
Tie accessibility to the build now that it has some ports.

Revision 1.78: download - view: text, markup, annotated - select for diffs
Sat Nov 8 23:57:29 2003 UTC (8 years, 3 months ago) by marcus
Branches: MAIN
CVS tags: RELEASE_5_2_1, RELEASE_5_2_0
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +1 -0 lines
Tie arabic to the build now that it has some ports.

Revision 1.77: download - view: text, markup, annotated - select for diffs
Sat Aug 30 03:24:22 2003 UTC (8 years, 5 months ago) by marcus
Branches: MAIN
CVS tags: RELEASE_4_9_0
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +1 -0 lines
Tie the dns category to the build now that it has some ports.

Revision 1.76: download - view: text, markup, annotated - select for diffs
Tue Aug 19 09:53:13 2003 UTC (8 years, 5 months ago) by arved
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +1 -0 lines
Connect polish to the build
Remove the Repocopied ports.

PR:             53797
Submitted by:   Aleksander Fafula <alex@fafula.com>
Approved by:    portmgr(marcus)
Repocopied by:  joe

Revision 1.75: download - view: text, markup, annotated - select for diffs
Sat Jul 12 13:20:59 2003 UTC (8 years, 7 months ago) by joe
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +1 -0 lines
Define the default SUP program to be cvsup.

PR:	ports/15992

Revision 1.74: download - view: text, markup, annotated - select for diffs
Thu Mar 6 14:02:21 2003 UTC (8 years, 11 months ago) by ru
Branches: MAIN
CVS tags: RELEASE_5_1_0, RELEASE_4_8_0
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +1 -1 lines
With CVS_UPDATE, use read-only repository mode by default.

Revision 1.73: download - view: text, markup, annotated - select for diffs
Wed Mar 5 09:08:10 2003 UTC (8 years, 11 months ago) by ru
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +1 -1 lines
In a spirit of src/Makefile.inc1,v 1.142, get rid of "sticky"
files when updating ports sources with cvs(1).

Revision 1.72: download - view: text, markup, annotated - select for diffs
Mon Feb 24 03:54:41 2003 UTC (8 years, 11 months ago) by kris
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +1 -1 lines
Correct the bug in 'make index' that failed to substitute back the
canonical PREFIX locations for /nonexistent*

Revision 1.71: download - view: text, markup, annotated - select for diffs
Wed Dec 4 18:03:35 2002 UTC (9 years, 2 months ago) by kris
Branches: MAIN
CVS tags: RELEASE_5_0_0
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +1 -1 lines
I committed from the wrong tree, and the patch had a missing
INDEX -> ${INDEXFILE} conversion.

Revision 1.70: download - view: text, markup, annotated - select for diffs
Wed Dec 4 17:17:48 2002 UTC (9 years, 2 months ago) by kris
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +12 -12 lines
Add the INDEXFILE variable, that defaults to INDEX-5 on 5.0 (500036) and
later, and INDEX on earlier systems.  Use this in the 'make index' and
associated targets.  This is necessary to deal with the substantially
different dependencies of ports between 4.x and 5.0 (e.g. ports that
depend on perl).

Revision 1.69: download - view: text, markup, annotated - select for diffs
Sun Dec 1 01:05:38 2002 UTC (9 years, 2 months ago) by kris
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +8 -5 lines
Merge in some changes from Tools/portbuild/scripts/makeindex: set
LOCALBASE and X11BASE to bogus values during the index build, so
'make describe' does not pick up packages installed on the system and
change the package name or list of dependencies (this will usually
create a broken INDEX file).

Revision 1.68: download - view: text, markup, annotated - select for diffs
Mon Nov 18 09:22:59 2002 UTC (9 years, 2 months ago) by knu
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +4 -0 lines
Add several new real categories.

- finance : Monetary, financial and related applications

  PR:		ports/39102
  Requested by:	trevor

- hungarian : Hungarian language support

  PR:		ports/37576
  Requested by:	Janos Mohacsi <janos.mohacsi@bsd.hu>

- multimedia : Multimedia software

  Requested by:	many

- portuguese : Portuguese language support

  PR:	ports/35991
  Requested by:	trevor

Revision 1.67: download - view: text, markup, annotated - select for diffs
Wed Oct 2 07:14:08 2002 UTC (9 years, 4 months ago) by kris
Branches: MAIN
CVS tags: RELEASE_4_7_0
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +1 -1 lines
Switch back to .tgz packages for 'parallel' target.

Revision 1.66: download - view: text, markup, annotated - select for diffs
Sun Sep 15 22:08:24 2002 UTC (9 years, 4 months ago) by kris
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +1 -1 lines
Switch to .tbz packages in generated makefile target.

Revision 1.65: download - view: text, markup, annotated - select for diffs
Sun Dec 23 10:58:42 2001 UTC (10 years, 1 month ago) by will
Branches: MAIN
CVS tags: RELEASE_5_0_DP1, RELEASE_4_6_2, RELEASE_4_6_1, RELEASE_4_6_0, RELEASE_4_5_0
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +2 -2 lines
Don't use cat(1) needlessly -- pipe the INDEX to awk(1).

PR:		30099
Submitted by:	schweikh

Revision 1.64: download - view: text, markup, annotated - select for diffs
Sun Apr 22 16:47:52 2001 UTC (10 years, 9 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_4_4_0
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +2 -1 lines
New category picobsd starts today.

Revision 1.63: download - view: text, markup, annotated - select for diffs
Sun Mar 25 01:50:40 2001 UTC (10 years, 10 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_4_3_0
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +3 -3 lines
Use single colons instead of double colons for "*-all" targets.  I don't know
why I used double colons here before.

Revision 1.62: download - view: text, markup, annotated - select for diffs
Sat Mar 24 21:40:14 2001 UTC (10 years, 10 months ago) by asami
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +3 -1 lines
Add new categories science and ukrainian.

Revision 1.61: download - view: text, markup, annotated - select for diffs
Tue Oct 31 21:00:02 2000 UTC (11 years, 3 months ago) by jeh
Branches: MAIN
CVS tags: RELEASE_4_2_0
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +5 -6 lines
Allow both SUP_UPDATE and CVS_UPDATE to be used, similar to src/Makefile

PR:		17903
Submitted by:	James Housley <jim@thehousleys.net>
Reviewed by:	billf

Revision 1.60: download - view: text, markup, annotated - select for diffs
Wed Sep 27 02:08:53 2000 UTC (11 years, 4 months ago) by asami
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +2 -2 lines
For "make parallel", provide out an extra target without the ".tgz".
(Makes it easier to cut and paste, so you can do something like "make
gnome-1.2".)

Also change /a/asami/portbuild -> /var/portbuild.

Revision 1.59: download - view: text, markup, annotated - select for diffs
Fri Sep 22 06:25:45 2000 UTC (11 years, 4 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_4_1_1
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +2 -1 lines
New category french starts today!

Revision 1.58: download - view: text, markup, annotated - select for diffs
Sun Aug 13 12:38:41 2000 UTC (11 years, 6 months ago) by joe
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +4 -1 lines
Use the SUPHOST in the 'make update' if it's defined.

Revision 1.57: download - view: text, markup, annotated - select for diffs
Mon Jul 31 00:09:41 2000 UTC (11 years, 6 months ago) by asami
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +2 -1 lines
Add new category hebrew -- Hebrew language support.

Requested by:	sada

Revision 1.56: download - view: text, markup, annotated - select for diffs
Thu Jul 20 03:04:15 2000 UTC (11 years, 6 months ago) by asami
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +1 -1 lines
Wrong message, the previous log entry should have read:

"The parallel target now requires a branch parameter."

Revision 1.55: download - view: text, markup, annotated - select for diffs
Wed Jul 19 18:16:10 2000 UTC (11 years, 6 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_4_1_0
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +7 -2 lines
Typo (ghostscript55htff -> ghostscript55httf).

Revision 1.54: download - view: text, markup, annotated - select for diffs
Wed Apr 12 11:06:35 2000 UTC (11 years, 10 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_3_5_0
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +3 -3 lines
Change a couple of "make"s to "cd ${.CURDIR} && make"s, otherwise you
will get "make: don't know how to make /usr/ports/INDEX. Stop" type of
weird errors when /usr/obj${.CURDIR} exists.

Revision 1.53: download - view: text, markup, annotated - select for diffs
Wed Mar 22 20:36:54 2000 UTC (11 years, 10 months ago) by joe
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +1 -9 lines
Additions to the 'make search' mechanism.

* You can now 'make search' from a ports subdirectory.  This will
  will restrict the search to ports within this subdirectory.
* Added an additional search option to search just the port names,
  e.g. 'make search name=foo' will only return ports that have 'foo' in their
  name.

Approved by:	asami

Revision 1.52: download - view: text, markup, annotated - select for diffs
Tue Aug 31 03:04:38 1999 UTC (12 years, 5 months ago) by peter
Branches: MAIN
CVS tags: RELEASE_4_0_0, RELEASE_3_4_0, RELEASE_3_3_0
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +1 -1 lines
$Id$ -> $FreeBSD$

Revision 1.51: download - view: text, markup, annotated - select for diffs
Mon Aug 2 10:42:26 1999 UTC (12 years, 6 months ago) by asami
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -1 lines
Add new category "ftp".

Revision 1.50: download - view: text, markup, annotated - select for diffs
Fri Jul 23 09:36:50 1999 UTC (12 years, 6 months ago) by asami
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +7 -1 lines
Makefile:
(1) Sort INDEX lines since with the new parallel patch, the lines can
    come in out of order.  (see 2)

Mk/bsd.port.subdir.mk:
(2) Make the targets parallelizable.
Submitted by:	hoek
Reviewed by:	steve, among others

Mk/bsd.port.mk:
(3) Serious speedup of bsd.port.mk startup.  In particular, this helps
    cut down "make index" time from an hour and a half to 8 minutes on
    our system with a parallel make describe (see 2).  Try to pass
    unchanged variables down from parent makes instead of rerunning
    commands to define them, etc.
Submitted by:	hoek
Reviewed by:	steve, among others

(4) Change a bunch of "FreeBSD.ORG"s and "freebsd.org"s to "FreeBSD.org".

(5) XFree86 is now at version 3.3.4.

(6) Update for gnome master sites.
Submitted by:	mharo

(7) Remove old system tcl check, I don't think people with systems
    from way back are still submitting ports.

(8) Fix comment on "make describe" line description (www site was missing).

Revision 1.49: download - view: text, markup, annotated - select for diffs
Sat Jun 26 22:29:57 1999 UTC (12 years, 7 months ago) by asami
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +4 -1 lines
Add new categories irc, java and x11-servers.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Fri Jun 4 17:30:31 1999 UTC (12 years, 8 months ago) by billf
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +11 -7 lines
Better logic and typo fixing.

Submitted by:	mharo

Revision 1.47: download - view: text, markup, annotated - select for diffs
Tue Jun 1 02:55:43 1999 UTC (12 years, 8 months ago) by billf
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +17 -1 lines
'make update' in the ports directory.

Revision 1.46: download - view: text, markup, annotated - select for diffs
Tue Jan 26 03:58:55 1999 UTC (13 years ago) by asami
Branches: MAIN
CVS tags: RELEASE_3_2_0, RELEASE_3_1_0
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +2 -2 lines
(1) Rename "templates" to "Templates".  The toplevel is getting
    crowded and I don't want to confuse cvsup about what's in
    ports-base and what is not.  (I.e., all uppercase
    files/directories are, all lowercase ones are not.)  While I'm
    here, move the make_index script from templates to Tools.

(2) Adjust the MASTER_SITE_OVERRIDE logic a bit.  Formerly, it was not
    possible to specify both MASTER_SITE_OVERRIDE while still using
    MASTER_SITE_BACKUP as a backup, as they were tied in the
    implementation of MASTER_SITE_FREEBSD.  You can now specify them
    independently if MASTER_SITE_FREEBSD is not set (in which case
    MASTER_SITE_BACKUP will be moved to the beginning of the list,
    like before).

Revision 1.45: download - view: text, markup, annotated - select for diffs
Fri Jan 22 10:32:32 1999 UTC (13 years ago) by asami
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +5 -2 lines
Break "all" target into subtargets according to category.  Change to
cope with new directory structure in ${buildroot}.

Revision 1.44: download - view: text, markup, annotated - select for diffs
Wed Jan 13 04:08:05 1999 UTC (13 years, 1 month ago) by jkh
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +2 -2 lines
Make the search target a bit looser in its matching.

Revision 1.43: download - view: text, markup, annotated - select for diffs
Sat Jan 9 08:52:08 1999 UTC (13 years, 1 month ago) by asami
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -1 lines
Move Palm*-related programs to new "palm" category.

Reviewed by:	the ports list

Revision 1.42: download - view: text, markup, annotated - select for diffs
Sat Jan 9 03:19:17 1999 UTC (13 years, 1 month ago) by asami
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +1 -2 lines
Break up the "plan9" category -- all the ports are where they belong, and
"plan9" is a virtual category now.

Reviewed by:	the ports list

Revision 1.41: download - view: text, markup, annotated - select for diffs
Mon Dec 28 12:35:10 1998 UTC (13 years, 1 month ago) by asami
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +4 -1 lines
Add new target "parallel" which creates a parallelizable Makefile for
building all packages.  This is to be used in conjunction with the scripts
under the "Tools" directory.  Note this version has hardcoded paths and
other general badness -- those will be fixed later.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sat Dec 12 07:41:46 1998 UTC (13 years, 2 months ago) by asami
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +3 -2 lines
Fast INDEX generation.  See bsd.port.mk rev. 1.300 for details.
Submitted by:	steve

Revision 1.39: download - view: text, markup, annotated - select for diffs
Fri Oct 30 23:38:26 1998 UTC (13 years, 3 months ago) by jkh
Branches: MAIN
CVS tags: RELEASE_2_2_8
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +2 -2 lines
Make the search target home in a little better on what users are
actually looking for.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Fri Aug 7 23:25:58 1998 UTC (13 years, 6 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_3_0_0
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +7 -1 lines
Now that they are populated, add deskutils and
x11-{clocks,fm,fonts,toolkits,wm} to the SUBDIR list.

Revision 1.37: download - view: text, markup, annotated - select for diffs
Sat Dec 13 05:55:08 1997 UTC (14 years, 2 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_2_2_7, RELEASE_2_2_6
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -1 lines
Add biology.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Sat Oct 4 15:54:31 1997 UTC (14 years, 4 months ago) by jkh
Branches: MAIN
CVS tags: RELEASE_2_2_5
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +2 -2 lines
By popular demand, make the search target use grep -i.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Aug 19 07:10:01 1997 UTC (14 years, 5 months ago) by fenner
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -2 lines
Re-sort SUBDIRS

Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Jul 31 09:33:05 1997 UTC (14 years, 6 months ago) by asami
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -1 lines
Add german.

Revision 1.33: download - view: text, markup, annotated - select for diffs
Sun Apr 27 00:48:09 1997 UTC (14 years, 9 months ago) by asami
Branches: MAIN
CVS tags: RELEASE_2_2_2
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +3 -1 lines
Turn on new categories `converters' and `textproc' now that all the
work is done.  Let me know if I missed something.

Revision 1.32: download - view: text, markup, annotated - select for diffs
Sat Apr 26 20:38:05 1997 UTC (14 years, 9 months ago) by asami
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +1 -2 lines
Don't turn on textproc yet, the rest of the world is not ready.

Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Apr 26 20:20:16 1997 UTC (14 years, 9 months ago) by jfieber
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +2 -1 lines
Turn on the textproc category.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Mar 10 22:59:36 1997 UTC (14 years, 11 months ago) by jkh
Branches: MAIN
CVS tags: RELEASE_2_2_1
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +9 -1 lines
Add a search target.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Mar 6 05:52:26 1997 UTC (14 years, 11 months ago) by asami
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -1 lines
Add korean, right next to japanese (like on the map).

Revision 1.28: download - view: text, markup, annotated - select for diffs
Thu Dec 5 11:09:04 1996 UTC (15 years, 2 months ago) by asami
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +2 -1 lines
Add vietnamese.

Revision 1.27: download - view: text, markup, annotated - select for diffs
Thu Nov 7 12:30:23 1996 UTC (15 years, 3 months ago) by asami
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -1 lines
Add mbone.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Thu Oct 24 11:20:46 1996 UTC (15 years, 3 months ago) by asami
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +2 -1 lines
Add new category: astro.

Revision 1.25: download - view: text, markup, annotated - select for diffs
Sat Sep 14 02:07:26 1996 UTC (15 years, 5 months ago) by asami
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +2 -1 lines
Added chinese.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Mon Apr 1 11:17:56 1996 UTC (15 years, 10 months ago) by asami
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +3 -1 lines
Change required to make the ports README auto-generation work: declare
this directory as "top of ports tree".

Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Mar 6 08:53:45 1996 UTC (15 years, 11 months ago) by asami
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
Update print-index rule to reflect change in INDEX format.  Deleted
"Keywd:", added "B-deps:" and "R-deps:" (I know I know, but I needed
it to fit in before the first tabstop! ;).

Revision 1.22: download - view: text, markup, annotated - select for diffs
Mon Nov 27 03:50:07 1995 UTC (16 years, 2 months ago) by asami
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +3 -2 lines
Move utils to misc.  Add www.

Revision 1.21: download - view: text, markup, annotated - select for diffs
Mon Aug 14 04:08:46 1995 UTC (16 years, 6 months ago) by asami
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -1 lines
Add plan9.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Thu Jul 13 00:57:24 1995 UTC (16 years, 7 months ago) by asami
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +4 -1 lines
Added benchmarks, security and sysutils to SUBDIR list.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat Jul 1 07:58:11 1995 UTC (16 years, 7 months ago) by asami
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +23 -3 lines
Add "emulators", also convert SUBDIR list to a bunch of "+="'s.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Mon May 1 11:55:37 1995 UTC (16 years, 9 months ago) by ache
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -2 lines
Add russian

Revision 1.17: download - view: text, markup, annotated - select for diffs
Sat Apr 1 13:24:03 1995 UTC (16 years, 10 months ago) by jkh
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +4 -2 lines
Make forced rebuilds of the INDEX file work properly.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sat Apr 1 13:05:35 1995 UTC (16 years, 10 months ago) by jkh
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -2 lines
A new print-index rule.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Thu Mar 23 21:03:32 1995 UTC (16 years, 10 months ago) by gpalmer
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2 lines
The describe target now uses `\' as a separator, so correct the print-index
target in here. Also make the print-index target display the maintainers
address for easy griping.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Mar 21 03:57:19 1995 UTC (16 years, 10 months ago) by jkh
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
Use new ECHO_MSG override properly.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Mar 21 03:12:17 1995 UTC (16 years, 10 months ago) by jkh
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +8 -3 lines
New index file format, plus a simple rule (print-index) for making it
more human-readable.  This should probably be a more capable perl script
at some point.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Tue Mar 21 01:46:29 1995 UTC (16 years, 10 months ago) by jkh
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -3 lines
Change the index target - this is more generally useful now.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Thu Mar 16 00:12:23 1995 UTC (16 years, 11 months ago) by asami
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2 lines
Added japanese to subdir list.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Jan 23 01:30:57 1995 UTC (17 years ago) by jkh
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -2 lines
Fix the index rule.  From Richard Wackerbarth.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Jan 15 06:43:30 1995 UTC (17 years ago) by ache
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -3 lines
Add missing directories

Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Jan 14 11:27:06 1995 UTC (17 years, 1 month ago) by jkh
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +7 -1 lines
1. Make an index rule
2. Commit an INDEX file containing information on the various ports.

Revision 1.7: download - view: text, markup, annotated - select for diffs
Thu Oct 6 01:41:37 1994 UTC (17 years, 4 months ago) by jkh
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +3 -2 lines
Get this thing up-to-date; lots of new catagories added recently!

Revision 1.6: download - view: text, markup, annotated - select for diffs
Thu Oct 6 01:19:13 1994 UTC (17 years, 4 months ago) by jkh
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -2 lines
Add math to Makefile

Revision 1.5: download - view: text, markup, annotated - select for diffs
Tue Oct 4 15:11:23 1994 UTC (17 years, 4 months ago) by jkh
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -2 lines
Add games hierarchy.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Aug 23 10:20:17 1994 UTC (17 years, 5 months ago) by jkh
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -0 lines
Add $Id$ lines to all the directory level Makefiles.
Submitted by:	jkh

Revision 1.3: download - view: text, markup, annotated - select for diffs
Mon Aug 22 11:26:00 1994 UTC (17 years, 5 months ago) by jkh
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -1 lines
Change ports Makefiles to use bsd.port.subdir.mk
Submitted by:	jkh

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Aug 21 19:15:42 1994 UTC (17 years, 5 months ago) by jkh
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
Add lang and x11 to SUBDIRS
Submitted by:	jkh

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Sun Aug 21 13:19:26 1994 UTC (17 years, 5 months ago) by jkh
Branches: ports
CVS tags: ports_2_0
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
The start of the 2.0 ports collection.  No sup repository yet, but I'll
make one when I wake up again.. :)
Submitted by:	jkh

Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Aug 21 13:19:25 1994 UTC (17 years, 5 months ago) by jkh
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options