Commit graph

932 commits

Author SHA1 Message Date
Edwin Groothuis
0eac08c2c8 Implement @dirrmtry for my ports. 2006-01-21 22:00:03 +00:00
Joe Marcus Clarke
a4ee4ef133 Update to 2.8.2.
* Update quoting requirements for new bsd.port.mk
* Warn on use of USE_REINPLACE [1]
* Recommend @dirrmtry instead of @unexec rmdir [1]

Requested by:	pav [1]
2006-01-21 21:54:05 +00:00
Edwin Groothuis
5c5e8d6063 [patch] misc/tinderbox does not install php4-pgsql (or mysql)
misc/tinderbox does not install the php extension for the
    selected database, because the extension is added to USE_PHP
    after bsd.port.pre.mk inclusion.

PR:		ports/92065
Submitted by:	Vasil Dimov <vd@FreeBSD.bg>
2006-01-20 21:55:30 +00:00
Sam Lawrance
311ed2b34a Re-add portmanager, which we now have permission to redistribute.
Submitted by:	outgoing maintainer Michael C. Shultz <ringworm01@gmail.com>
		(taking a break)
2006-01-20 08:54:25 +00:00
Mark Linimon
bc343ddcb1 Remove portmanager. Author has withdrawn permission to distribute it.
Hat: 	portmgr
2006-01-19 23:13:10 +00:00
Edwin Groothuis
c6091421f0 After a wise lesson of linimon@, make it IGNORE instead of BROKEN 2006-01-19 06:35:35 +00:00
Edwin Groothuis
69a333dfd3 [patch] misc/tinderbox shouldn't allow no database to be selected
PR:		ports/91943
Submitted by:	Vasil Dimov <vd@datamax.bg>
Approved by:	edwin@mavetju.org
2006-01-18 10:29:26 +00:00
Joe Marcus Clarke
59cfa6b679 Update to a snapshot of HEAD from today (01-13-2006). 2006-01-13 06:38:06 +00:00
Erwin Lansing
8c4394af66 Bump the useful version for this port to 4.10 and lower.
Submitted by:	pav
2006-01-12 14:32:44 +00:00
Mark Linimon
d2ff21c877 Bring these up to date with what is currently being tested on the cluster. 2006-01-07 21:12:02 +00:00
Edwin Groothuis
69ec329aa4 sysutils/portupgrade: Fix yet another infinite loop.
Check and avoid infinite loop when MOVED has an entry such as:

	    games/scummvm|emulators/scummvm|2004-04-06|new category
	    emulators/scummvm|games/scummvm|2004-04-13|new category

	    (games/scummvm -> emulators/scummvm -> games/scummvm -> ...)

	Reported by: Bohdan Horst <nexus at hoth dot amu dot edu dot pl>

PR:		ports/91402
Submitted by:	KOMATSU Shinichiro <koma2@lovepeers.org>
2006-01-07 01:04:28 +00:00
Norikatsu Shigemura
879e335dc3 Update to 2.0.1.
* portversion(1) also reads MOVED and trace origin change,
  and, when invoked with "-v", displays the new origin.

  Example:

      % portversion -v screen
      screen-4.0.2_2   <  needs updating (port has 4.0.2_3) (=> 'sysutils/screen')

* Add "--ignore-moved" to portupgrade(1) and portversion(1).
  When invoked with this option, both programs totally ignore MOVED.
  If you encounter strange behaviour of these programs, try this out.

* Add IGNORE_MOVED option to pkgtools.conf.
  This can be used to selectively ignore MOVED by pkgs.
  See pkgtools.conf.sample for details.

* Keep the order of MOVED entries, and do not trace back to old entries.
  Previously, when encounters the following entries,

	editors/emacs|editors/emacs19|2004-03-20|emacs 19.x moved to a non-default port location
	editors/emacs21|editors/emacs|2004-03-20|emacs 21.x moved to default port location

  portupgrade traces as "editors/emacs21" -> "editors/emacs" -> "editors/emacs19".
  I thought this behavior should not be what we want to, so added this change.

PR:		ports/91272
Submitted by:	KOMATSU Shinichiro <koma2@lovepeers.org> (maintainer)
2006-01-03 16:57:46 +00:00
Edwin Groothuis
be6bc69b0f Add patches as supplied in ports/91151
PR:		ports/91151
Submitted by:	Andrey Slusar <anray@freebsd.org>
2006-01-03 00:00:47 +00:00
Edwin Groothuis
1d2994d56b Problem with portupgrade 2.0
Thank you for reporting. I also discovered this problem a few hours ago.

    The source of this trouble is that the following line exists in MOVED,

    lang/php4|lang/php4|2003-05-22|re-separated from www/mod_php4

    where "moved from" and "moved to" is the same, but portupgrade
    does not check this case and infinite loop occurs.

    Fix to this problem will be in the next portupgrade release,
    but in the meanwhile, whould you commit the following patch,
    please?

PR:		ports/91209
Submitted by:	KOMATSU Shinichiro <koma2@lovepeers.org>
2006-01-02 11:03:25 +00:00
Edwin Groothuis
1eda9ddc55 Fix @dirrm in pkg-plist
Noticed by: YAPHR
2006-01-02 06:36:34 +00:00
Norikatsu Shigemura
e81a09cb91 A happy new year updated to 2.0.0.
(1) Change the versioning scheme of portupgrade.
    portupgrade now becomes 2.0.0!

(2) Add FreshPorts support to portcvsweb(1).
    You can view CVS history via FreshPorts instead of CVSweb
    by using "portcvsweb -F". See the man page of portcvsweb(1) for details.

(3) If the change of the origin is written in MOVED,
    portupgrade reads and chases it.
    You no longer need to supply the origin of the new pkg by "-o" option.

    Example:

        When ftp/wget-devel is moved to ftp/wget, previously you had to run,

	    % portupgrade -o ftp/wget wget

	Now, just run

	    % portupgrade wget

	and portupgrade will do what you want to do.

(4) Try to guess the pkg to be upgraded, when no pkgname is supplied
    as a command line argument.
    This can be done only when the current directory is under $PORTSDIR.

    Example:

	Running

	    % cd /usr/ports/ftp/wget
	    % portupgrade

	will upgrade ftp/wget.

(5) The frequency of INDEX generation on official site is now sufficient,
    recommend to run "portsdb -F" (fetch INDEX from official site)
    instead of "portsdb -U" (make INDEX by yourself) in portsdb(1). [1]

PR:		ports/91164
Submitted by:	KOMATSU Shinichiro <koma2@lovepeers.org> (maintainer)
Pointed out by:	Enrique Matias <cronopios at gmail dot com> [1]
2006-01-01 15:43:35 +00:00
Pav Lucistnik
7788e6b3f8 - Install menu entry
PR:		ports/90971
Submitted by:	Panagiotis Astithas <past@ebs.gr>
Approved by:	Seth Kingsley <sethk@meowfishies.com> (maintainer)
2005-12-30 06:06:55 +00:00
Pav Lucistnik
6cb2475345 - Update to 20051228
- add switch ('-g') to automatically generate the exclude file from kept or
    installed packges
  - improve command line processing
  - improve recursive cutting of leaves

PR:		ports/91021
Submitted by:	Stefan Walter <sw@gegenunendlich.de> (maintainer)
2005-12-28 15:43:42 +00:00
Pav Lucistnik
fc78da6f48 - Update to 0.4.1_4:
if portmanager has been installed for the first time it can't copy
  pm-020.conf-SAMPLE to pm-020.conf.

PR:		ports/90957
Submitted by:	Michael C. Shultz <ringworm01@gmail.com> (maintainer)
2005-12-27 05:18:42 +00:00
Mark Linimon
567865debb Correct slight mis-merge. Should not affect anything. 2005-12-26 23:12:54 +00:00
Edwin Groothuis
23234a5533 - Improve pkg-message
- Change dependency on net/cvsup-without-gui (itetcu@#bsdports)
2005-12-26 23:00:05 +00:00
Edwin Groothuis
189e89ae53 don't overwrite user configuration files. 2005-12-26 21:43:31 +00:00
Edwin Groothuis
e53b47e707 Add an usefull pkg-descr. 2005-12-26 10:42:10 +00:00
Edwin Groothuis
9b434230e6 Port maintainers, commiters and update submitters. Please behold,
here is the tinderbox port which should give you a tinderbox system
to test your ports before submitting it. It's unnmissable for
everybody making ports, and belongs to the range of tools like
portlint and porttools.
2005-12-26 10:40:21 +00:00
Renato Botelho
b655781482 - Add a patch to reverted execve command used when running make to
system( "make" ) so entire environment may be passed when building
  apache22.
- Bump PORTREVISION

PR:		ports/90790
Submitted by:	maintainer
2005-12-22 09:53:42 +00:00
Mark Linimon
5c230e44cc Once again, remove local change that crept in. 2005-12-20 04:00:49 +00:00
Mark Linimon
93d6aaebf5 Do not quote IGNORE. Fix formatting. 2005-12-20 02:45:11 +00:00
Mark Linimon
6525ced36b Really bring these up to date with the latest patch being tested on the
cluster.  The previous commit message was bogus.
2005-12-20 02:30:51 +00:00
Mark Linimon
71f79f775f Update to ports/Mk/bsd.php.mk version 1.21. Previous comment was bogus. 2005-12-20 01:56:26 +00:00
Mark Linimon
90b5216d85 Remove the multiple copies of these files that crept in here. I hate
patch(1).
2005-12-20 01:51:49 +00:00
Mark Linimon
f029e7b0f3 Catch up with ports/Mk/bsd.apache.mk 1.6. Previous checkin comment was
bogus.
2005-12-20 01:49:26 +00:00
Sam Lawrance
e9098e3606 Ports like ghostscript-gnu that insist on blue screening during make instead of
make config have their video scrambled.  Fixed by adding TERM= back to environment
during make.

PR:		ports/90633
Submitted by:	Michael C. Shultz <ringworm01@gmail.com> (maintainer)
2005-12-19 11:36:28 +00:00
Mark Linimon
e1792e1018 Bring portmk/devel up to the status of the next patchset to be tested. 2005-12-19 06:08:26 +00:00
Pav Lucistnik
469cee06eb - Fixes seg fault when run on FreeBSD 7.0, reported by Jiawei Ye
PR:		ports/90583
Submitted by:	Michael C. Shultz <ringworm01@gmail.com> (maintainer)
2005-12-18 14:21:33 +00:00
Joe Marcus Clarke
c20953d63f Update to 2.8.1.
* Warn on use of .tar.bz2 as an EXTRACT_SUFX [1]
* Throw a fatal error if INFO is defined, and install-info is called
  directly [2]
* Throw a warning if install-info is called directly and INFO is not
  defined [2]

PR:		89952 [2]
Requested by:	Kövesdán Gábor <gabor.kovesdan@t-hosting.hu> [1]
2005-12-17 16:36:36 +00:00
Mark Linimon
96969570b6 These now lag their ports/Mk counterparts and are thus OBE. 2005-12-16 02:45:53 +00:00
Mark Linimon
c8ffb7fd36 Conditionalize the inclusion of local copies of bsd.*.mk. They will only
be included if they exist in devel/portmk/Mk; otherwise, the fallback file
from ports/Mk will be used.  This will allow us to remove local copies of
files once their changes are merged back into ports/Mk, so that not every
single change in ports/Mk needs to have a tracking commit made back into
devel/portmk/Mk.  In theory this should allow us to integrate changes a
little more quickly.
2005-12-16 02:25:16 +00:00
Mark Linimon
1e29810185 OK, now that I've given you the example of how this file was developed,
remove the example :-)
2005-12-16 02:13:01 +00:00
Mark Linimon
1d5fc60b5e A sandbox for local modifications to bsd.port.mk. This little bit of
framework is designed so that such things as FreshPorts, portsmon, and
the distfile survey can more easily maintain local changes without having
to re-merge them into their copies of bsd.port.mk all the time.
2005-12-16 02:11:14 +00:00
Mark Linimon
9c6cc68380 Add a comment about a line that is from ports/86106 (USE_GMAKE change).
This is a reminder that this change is not yet tested sufficiently to
go into the main bsd.port.mk.
2005-12-16 02:01:20 +00:00
Mark Linimon
80637bd6b9 Diff reduction to ports/Mk. This was apparently some late change to the
patch in ports/79123.
2005-12-16 00:12:45 +00:00
Mark Linimon
eef7ddb5fb Add patch from ports/78596 for diff reduction. 2005-12-15 23:59:09 +00:00
Renato Botelho
389eb11dbe - Update to 0.4.1
PR:		ports/90403
Submitted by:	maintainer
2005-12-15 12:41:58 +00:00
Marcus Alves Grando
761d966221 Update to 0.4.0_1
* Fixes potential seg fault on 4.11 systems.
* Added log entry times

PR:		90339
Submitted by:	maintainer
2005-12-13 19:52:43 +00:00
Marcus Alves Grando
7437628588 Update to 0.4.0
PR:		90283
Submitted by:	maintainer
2005-12-12 17:29:24 +00:00
Jean-Yves Lefort
daa3b56d78 Fix runtime failure by linking against libpthread (GnomeVFS needs
pthread, and bpm may use GnomeVFS via GtkFileChooser).
2005-12-08 16:24:32 +00:00
Edwin Groothuis
99dbdd022e sysutils/portupgrade: fix the problem that portupgrade sometimes runs slow, and bump PORTVERSION to 20051204.
(1) For years, I have experienced that portupgrade sometimes
	runs very slow.  After some investigation, I found that
	"pkgdb -aF" is invoked from portupgrade or other programs
	(such as portversion) without having sufficient privilege
	to modify /var/db/pkg/, and that error is not caught by the
	caller program, and "pkgdb -aF" is invoked repeatedlly.

	So, I fixed the following things:

	- When pkgdb internally invoked from other program exits
	  with error, make the caller program also exit with error.

	- Display the error messages of pkgdb that run internally
	  from other program.

	When portupgrade or other programs die with the following error,

	    ** You do not own /var/db/pkg. (use -f to force or run as root)
	    Command failed [exit code 1]: /usr/local/sbin/pkgdb -aFQ

	please run "pkgdb -aF" as the user that owns /var/db/pkg (usually root).

	(2) Make new tarball that contains the above fix and all
	patches in files/.  Bump PORTVERSION to 20051204 and change
	MASTER_SITES.

PR:		ports/89917
Submitted by:	KOMATSU Shinichiro <koma2@lovepeers.org>
2005-12-04 06:39:12 +00:00
Edwin Groothuis
964fbeb0f7 [MAINTAINER] update sysutils/portmanager
update sysutils/portmanager to 0.3.9_7

	1. Fixes portmanager not honoring STOP/START statements
	  from its own config file, reported by Gerard Seibert
	  <gerard@seibercom.net>, Thanks!

PR:		ports/89913
Submitted by:	Michael C. Shultz <ringworm01@gmail.com>
2005-12-04 06:16:40 +00:00
Mark Linimon
4c1874e220 Unbreak INDEX building for those of us using devel/portmk. This is not
all the changes from Mk/bsd.apache.mk that need to be merged.

Pointy hat to:	clement
2005-12-04 05:29:04 +00:00
Philip Paeps
bd8ff515e8 Update to 0.3.9_6. From the maintainer:
1, Fixes corruption of +CONTENTS files when portmanager is compiled in
   BUILD_DEPENDS_ARE_LEAVES mode Bug identified by Jiawei Ye
   <leafy7382@gmail.com>

2. Fixes parsing pkgtools.conf when arrays are used, patch
   provided by dan@slightlystrange.org, thank you!

PR:		ports/89903
Submitted by:	Michael C. Shultz <ringworm01 -at- gmail.com> (maintainer)
2005-12-03 23:34:28 +00:00