1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
Commit Graph

2031 Commits

Author SHA1 Message Date
Xin LI
38231e45ad - Overhaul the way we handle with LDAP data directory, populate
the data directory upon start, not upon install. [1]
 - Update to OpenLDAP 2.4.11.
 - Modify bsd.port.mk to fit with the shared libary version bump [2]
   This has no impact to package building yet as 2.4.x is not the
   default version.

Submitted by:	Mikhail Goriachev <mikhailg webanoide org> [1]
Approved by:	portmgr (marcus) [2]
2008-07-20 03:35:42 +00:00
Kris Kennaway
54e565eedc 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.
2008-07-19 17:59:41 +00:00
Alex Dupre
bd20f68ed5 Add pecl-APC module support.
PR:		ports/121240
Submitted by:	Greg Larkin <glarkin@sourcehosting.net>
2008-07-11 10:57:15 +00:00
Adam Weinberger
675a13e8a4 Add a quick-reference comment block at the beginning directing end-users
how to use the WITH_GECKO mechanism.
2008-07-04 08:14:21 +00:00
Jeremy Messenger
903b45dfc5 First all, ahze did most of work. Thanks ahze! Last week or so, I am just
merely pick up and help him. Thanks to many testers in both private and
mailing list emails for report a few of build and dependencies problems.
Also, thanks to marcus and Chess Griffin for test in their tinderboxes.

x11/pixman: Update to 0.10.0
-------------------------------------------------------
Firefox 3 needs it. Orignal, the shared library was bumped and ahze has
added a new feature in our USE_GNOME=ltverhack by can control the number
of shared library. To control the number of shared library, add the
ltverhack:N. Right now pixman has USE_GNOME=ltverhack:9 to make it stays
same at libpixman-1.so.9. If anyone want to use ltverhack:N in one of your
port, you need to make sure the ABI doesn't change to use it..
-------------------------------------------------------

graphics/cairo: Update to 1.6.4
-------------------------------------------------------
Firefox 3 needs it. We have updated most cairo binding ports too.
-------------------------------------------------------

graphics/poppler: Update to 0.8.3
-------------------------------------------------------
The shared libraries version have been changed. All ports that depend on
poppler have PORTREVISION bump. The graphics/py-poppler has been updated
to 0.8.1 to work with newer poppler better. As for the poppler-qt, there
is no shared library version change.
-------------------------------------------------------

www/firefox3 and gecko ports related: Update to 3.0 final
-------------------------------------------------------
The bsd.gecko.mk has been moved from www/mozilla/ to Mk/. You no longer
need to include bsd.gecko.mk/Makefile.common by manual. We are keeping it
in backward compatibility, so the rest ports won't be break. We haven't
add some other ports to have Firefox 3 support yet, so feel free to send
us patch or commit it by yourself (to committers). However, view in
bsd.gecko.mk for document.
-------------------------------------------------------

Approved by:	portmgr (marcus)
2008-06-30 20:16:22 +00:00
Gerald Pfeifer
f51e2a7fcc Provide the test-gcc target and at least key information there even if
USE_GCC has not been specified.  This is relevant for USE_FORTRAN, but
should be useful in general.
2008-06-28 16:52:40 +00:00
Stanislav Sedov
5027cd7b72 - Add a couple of other patches from ruby SVN repo:
* fix integer overflow in bignums;
  * correctly check for string length in regexps;
  * fix memory leak in parse.c.

- Bump portrevision.
2008-06-25 23:00:28 +00:00
Jose Alonso Cardenas Marquez
45536b357d - Add support for freepascal based ports
Approved by:	portmgr (pav)
2008-06-24 14:56:06 +00:00
Tim Bishop
a3deac7d14 mirror.ac.uk closed down during 2007:
"JISC ceased funding for the JISC Mirror service during 2007.
	If you came to this page via a referring site, you may wish to
	let that site know that its links are out of date."
2008-06-23 12:18:35 +00:00
Stanislav Sedov
1fc6f981bf - Fix possible memory corruption when using String;
- fix integer overflow in Array;
- fix overflow in String;
- bump PORTREVISION.

Obtained from:	ruby VCS
2008-06-21 10:34:53 +00:00
Dirk Meyer
28bb14d6a1 - update gnustep-back to 0.14.x 2008-06-20 15:13:50 +00:00
Pav Lucistnik
0dbf0836b8 - Refresh MASTER_SITE_SAVANNAH 2008-06-18 19:47:22 +00:00
Vanilla I. Shu
d226c4cace Add db47 to bsd.databases.mk. 2008-06-09 06:01:41 +00:00
Boris Samorodov
23f3a4a858 - Update editors/emacs to 22.2.
- Change bsd.emacs.mk accordingly.
- Fix comment about emacs-devel in bsd.emacs.mk.
- Some lisp directories are changed, add a note to UPDATING.

PR:		122783
Submitted by:	KIMURA Yasuhiro <yasu at utahime.org>
Approved by:	keramida (maintainer timeout, 6 weeks)
2008-06-03 14:36:50 +00:00
Ion-Mihai Tetcu
29ff44b08b - GENTOO mirror from RoEduNet, this should unbreak at least
emulators/linux_base-gentoo-stage1 and emulators/linux_dist-gentoo-stage1
fetching.

Prompted by by:		ionbot (my alter ego) QA tindy run
2008-06-02 07:42:56 +00:00
Hye-Shik Chang
724489c253 Update python23 to 2.3.7. 2008-05-30 05:50:03 +00:00
Jeremy Messenger
6ae533c6e1 Add one more hack for pkg-config path in gnomehack, (prefix)/lib/pkgconfig.
PR:		ports/124096
Submitted by:	Björn König <bkoenig@alpha-tierchen.de>
2008-05-29 16:34:11 +00:00
Lars Thegler
9680598cb0 Doc change: PERL_ARCH is *always* mach. 2008-05-28 12:38:27 +00:00
Martin Wilke
18dd6954f3 - Add common code to support for cmake based ports.
- Update devel/cmake to 2.6.0 (also fix ports/123092)
- Use the new CMAKE build framework in all ports using cmake

Approved by:	portmgr (pav)
2008-05-27 22:12:09 +00:00
Martin Wilke
97728e3198 - Add support for drupal6*
PR:		123784
Submitted by:	Nick Hilliard <nick@foobar.org> (maintainer)
2008-05-27 07:38:59 +00:00
Jeremy Messenger
ad3db301ce Instead of move to bottom and remove it. The GNOME has many mirrors anyway.
Requested by:	dougb
2008-05-27 00:36:03 +00:00
Jeremy Messenger
05de22beaa Remove a dead mirror and move http://rpmfind.net/linux/gnome.org to more
bottom since /gnome.org doesn't exist. Maybe it will be back later, so keep
it in bottom for now. Will need to recheck in next week to see if it should
be remove or not.
2008-05-26 22:35:07 +00:00
Jeremy Messenger
d286861e9b Looks like farbror.acc.umu.se doesn't carry GNOME tarballs anymore (404 error),
so replace it to gemmei.acc.umu.se.
2008-05-26 20:02:17 +00:00
Stanislav Sedov
15f93e6560 - Add a knob to generate pkg-plist for ocaml findlib
ports automatically. Now if USE_OCAMLFIND_PLIST is defined
  all files under findlib target directories will be added
  to pkg-plist and thus requires no entries in static pkg-plist.
  This is important since a number of ocaml ports install its
  package files conditionally depending on platform and ocaml
  configurations and thus static entries are not possible.

PR:		ports/122844 (based on)
Submitted by:	Jaap Boender <jaapb@kerguelen.org>
2008-05-19 07:05:35 +00:00
Gerald Pfeifer
93e37fc5a3 Add support for GCC 4.3 (lang/gcc43), to be enabled by USE_GCC=4.3+.
No objections by:	portmgr (linimon, marcus, erwin)
2008-05-05 23:26:30 +00:00
Dirk Meyer
1b9f926d36 - add WITH_GNUSTEP_DEVEL 2008-05-04 21:13:22 +00:00
Ion-Mihai Tetcu
e2f9abce24 Move heanet SF mirror at the end of the list, for e few weeks now it resets the
connection while downloading files > ~1MB.

Reviewed by:	simon@
2008-05-01 07:33:19 +00:00
Boris Samorodov
a2d5cc6798 Add valid values fc6, f7 and f8:
. to USE_LINUX variable, so users can install linux ports which  [1]
  use AUTOMATIC_PLIST (while those values are assigned to
  OVERRIDE_LINUX_BASE_PORT variable);
. to IGNORE message.

netchild said: "I don't think it will hurt if the fix for fc6 is committed.
There are users out there which already use the experimental 2.6.16 support,
and it would make their life easier."

me decided: "Why should we segragate f7/f8 users?" and committed f7/f8
parts as well.

PR:		ports/122826  [1]
Submitted by:	Naram Qashat <cyberbotx at cyberbotx.com>  [1]
2008-04-29 19:20:52 +00:00
Edwin Groothuis
5dcff294ec Add support for SDL_console
PR:		ports/123171
Submitted by:	Yen-Ming Lee <leeym@cn1.leeym.com>
Reviewed by:	edwin@
2008-04-28 23:20:54 +00:00
Dirk Meyer
4262e05575 - note reason why INSTALL_SHLIBS is needed 2008-04-24 05:04:25 +00:00
Vanilla I. Shu
b0735936dd Remove mirror.tw from MASTER_SITE_FEDORA_LINUX,
it's really slow :(  As I know, they use adsl to build very slow sites.

coreutils-6.9-16.fc8.i386.rpm                  61% of 3406 kB 3073  Bps 07m22s
2008-04-24 04:27:34 +00:00
Dirk Meyer
c5cfffa2e6 - back out last (approved) commit
substitution fails, pointhat run did not reveal the problem.
using USE_LDCONFIG+=${i} does not work.
USE_LDCONFIG is still broken with custom PREFIX
2008-04-23 05:51:23 +00:00
Martin Wilke
3e4ed01146 - Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
	Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
	ehaupt, nox, itetcu, flz, pav

PR:		116263
Tested on:	pointyhat
Approved by:	portmgr (pav)
2008-04-19 17:56:05 +00:00
Pav Lucistnik
7829467dfb caliu.info domain is gone 2008-04-16 21:58:03 +00:00
Pav Lucistnik
a616189c8c Support @rmtry in pkg-plist, analogous to @dirrmtry but for single file rm.
PR:		ports/116219
Submitted by:	edwin

Make USE_DISPLAY more general: set up virtual X server when USE_DISPLAY is
defined and no DISPLAY variable is in environment; pass DISPLAY value in
CONFIGURE_ENV and MAKE_ENV.

PR:		ports/116244
Submitted by:	edwin

Define ${PW}.

PR:		ports/119821
Submitted by:	Matthew Seaman <m.seaman@infracaninophile.co.uk>

Move SHA256, MD5, GMAKE and XMKMF to bsd.commands.mk.

PR:		ports/119879
Submitted by:	edwin

Fix a build failure for ports that define their own MTREE File.

PR:		ports/120200
Submitted by:	dinoex

Don't recreate mtree symlinks if they are already present.

PR:		ports/121681
Submitted by:	sobomax

Fix LIB_DEPENDS for libraries whose name contains plus sign. Both intuitive and
old escaped syntax works.

PR:		ports/121741 (based on)
Submitted by:	fjoe

Disable post-install security checks if DISABLE_SECURITY_CHECK variable is
defined.

PR:		ports/122224
Submitted by:	Bjoern Koenig <bkoenig@alpha-tierchen.de>

Remove versioned Tcl/Tk categories.

PR:		ports/122622
Submitted by:	pav
2008-04-14 16:46:41 +00:00
Vsevolod Stakhov
2db89a42eb Add WITH_PGSQL_VER macro to bsd.database.mk, that allows to specify
in make.conf which version of pgsql client is required for this build.

Reviewed by:	skv
2008-04-11 13:52:57 +00:00
Martin Wilke
0112a7cadc - Add SFJP macro for SOURCEFORGE_JP 2008-04-10 20:32:51 +00:00
Rong-En Fan
26fc161977 - Update emacs-devel version
PR:		ports/121495
Submitted by:	keramida (maintainer of emacs-devel)
2008-04-07 01:18:10 +00:00
Stanislav Sedov
662f637eb4 - Fix webrick vulnerability
- Update rexml to 3.1.7.2
- Bump portrevision.

Obtained from:	ruby svn
2008-04-06 10:29:54 +00:00
Stanislav Sedov
2ef3a8e563 - Update ruby 1.9 to patchlevel 1. Forgotten in previous commit. 2008-04-06 09:25:27 +00:00
Stanislav Sedov
fae8e0f615 - Add ruby 1.9 support
- Implement new knobs for gems and rake (these are included in
  ruby 1.9 distribution already). Also move gem bits from
  ruby-gems/Makefile.common to bsd.ruby.mk[1]. Now to depend
  on gems or rake you should define USE_RUBYGEMS/USE_RAKE
  accordingly. Also RAKE_BIN variable is provided for
  pointing to the right rake executable.
- Rewrite RUBY_SCHEBANG in awk to eliminate build dependency
  on ruby.

Discussed with:	Jonathan Weiss <jw@innerewut.de> [1] (gems maintainer)
Tested by:	ports@
2008-04-06 08:58:21 +00:00
Marcus Alves Grando
009ec786da - Fix when USE_SQLITE != yes
- Fix lib version of sqlite34
2008-04-05 18:26:35 +00:00
Marcus Alves Grando
e3998d8884 - Fix .endif. Maybe works now :)
Pointy hat to:	mnag
Reported by:	bsam
2008-04-05 18:11:59 +00:00
Marcus Alves Grando
1444568e77 - Fix wrong .endif
Submitted by:	cperciva
2008-04-05 15:58:47 +00:00
Marcus Alves Grando
99c9326aa1 - Add option to databases/sqlite34 2008-04-05 14:55:43 +00:00
Pav Lucistnik
bd7f7d69f0 - Remove progeny.com, it's parked domain now 2008-03-31 15:00:38 +00:00
Pav Lucistnik
52ec918c8e - Add ring.nict.go.jp to Ringserver group
PR:		ports/119555
Submitted by:	KIMURA Yasuhiro <yasu@utahime.org>
2008-03-31 14:58:22 +00:00
Dirk Meyer
19ec198baa - bugfix, commited wrong patch 2008-03-30 11:38:02 +00:00
Dirk Meyer
2d78d2b61d - remove OPENSSL_OVERWRITE_BASE
Suggestet by:	tmclaugh

- ignore returncode from grep to be kind to portmaster
2008-03-30 11:36:47 +00:00
Emanuel Haupt
f3173bc0b1 Add MASTER_SITE_CRITICAL 2008-03-27 16:43:21 +00:00