notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: mail/bogofilter/Makefile

Number of commits found: 158 (showing only 100 on this page)

1 | 2  »  

Thursday, 27 Jan 2022
00:08 Matthias Andree (mandree) search for other commits by this committer
mail/bogofilter*: change default database

* The default version of mail/bogofilter now uses LMDB instead
  of Berkeley DB. It is not compatible and cannot read databases.

* bogofilter was renamed to bogofilter-bdb
* bogofilter-lmdb was renamed to bogofilter

* MOVED/UPDATING entries included.
commit hash: c443b6628ed1c2b7e5cd65ee4f8cc12340fad8e3 commit hash: c443b6628ed1c2b7e5cd65ee4f8cc12340fad8e3 commit hash: c443b6628ed1c2b7e5cd65ee4f8cc12340fad8e3 commit hash: c443b6628ed1c2b7e5cd65ee4f8cc12340fad8e3 c443b66
Wednesday, 12 Jan 2022
19:41 Tobias C. Berner (tcberner) search for other commits by this committer
math/gsl: bump portrevision of consumers after update to 2.7.1

PR:		260201
commit hash: 654acd81409d31495f8b1b11db61e1afbf640981 commit hash: 654acd81409d31495f8b1b11db61e1afbf640981 commit hash: 654acd81409d31495f8b1b11db61e1afbf640981 commit hash: 654acd81409d31495f8b1b11db61e1afbf640981 654acd8
Monday, 10 Jan 2022
15:15 Stefan Eßer (se) search for other commits by this committer
Fix CONFLICTS entries of multiple ports

There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.

This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.

Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).

A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.

These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,

Approved by:	portmgr (implicit)
commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 commit hash: bcaf25a8c8046b094f6b5ab5bc258333bc326ee1 bcaf25a
Tuesday, 23 Nov 2021
22:11 Stefan Eßer (se) search for other commits by this committer
*/*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL

The conflict checks compare the patterns first against the package
names without version (as reported by "pkg query "%n"), then - if
there was no match - agsinst the full package names including the
version (as reported by "pkg query "%n-%v").

Approved by: portmgr (blanket)
commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af commit hash: 5933ac0b099d61d98eb531d373cf57a8927bc7af 5933ac0
Wednesday, 16 Jun 2021
19:31 Tobias C. Berner (tcberner) search for other commits by this committer
math/gsl: update to 2.7

From [1]

* What is new in gsl-2.7:
	* fixed doc bug for gsl_histogram_min_bin (lhcsky at 163.com)
	* fixed bug #60335 (spmatrix test failure, J. Lamb)
	* fixed bug #36577
	* clarified documentation on interpolation accelerators (V. Krishnan)
	* fixed bug #45521 (erroneous GSL_ERROR_NULL in ode-initval2, thanks to M.
Sitte)
	* fixed doc bug #59758
	* fixed bug #58202 (rstat median for n=5)
	* added support for native C complex number types in gsl_complex
	   when using a C11 compiler
	* upgraded to autoconf 2.71, automake 1.16.3, libtool 2.4.6
	* updated exponential fitting example for nonlinear least squares
	* added banded LU decomposition and solver (gsl_linalg_LU_band)
	* New functions added to the library:
	      - gsl_matrix_norm1
	      - gsl_spmatrix_norm1
	      - gsl_matrix_complex_conjtrans_memcpy
	      - gsl_linalg_QL: decomp, unpack
	      - gsl_linalg_complex_QR_* (thanks to Christian Krueger)
	      - gsl_vector_sum
	      - gsl_matrix_scale_rows
	      - gsl_matrix_scale_columns
	      - gsl_multilarge_linear_matrix_ptr
	      - gsl_multilarge_linear_rhs_ptr
	      - gsl_spmatrix_dense_add (renamed from gsl_spmatrix_add_to_dense)
	      - gsl_spmatrix_dense_sub
	      - gsl_linalg_cholesky_band: solvem, svxm, scale, scale_apply
	      - gsl_linalg_QR_UD: decomp, lssolve
	      - gsl_linalg_QR_UU: decomp, lssolve, QTvec
	      - gsl_linalg_QR_UZ: decomp
	      - gsl_multifit_linear_lcurvature
	      - gsl_spline2d_eval_extrap
	* bug fix in checking vector lengths in gsl_vector_memcpy (dieggsy@pm.me)
	* made gsl_sf_legendre_array_index() inline and documented
	      - gsl_sf_legendre_nlm()

[1] http://git.savannah.gnu.org/cgit/gsl.git/tree/NEWS

PR:		256423
Exp-run by:	antoine
commit hash: 63e653adaa7493aa98f17f9fbc834c0aed7e096e commit hash: 63e653adaa7493aa98f17f9fbc834c0aed7e096e commit hash: 63e653adaa7493aa98f17f9fbc834c0aed7e096e commit hash: 63e653adaa7493aa98f17f9fbc834c0aed7e096e 63e653a
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Sunday, 26 Apr 2020
09:00 tijl search for other commits by this committer
Update devel/automake to 1.16.2.

mail/bogofilter security/ipsec-tools:
Patch Makefile.in instead of Makefile.am so automake is not required.

PR:		245599
Approved by:	portmgr (antoine)
Exp-run by:	antoine
Original commitRevision:532998 
Friday, 25 Oct 2019
23:41 tcberner search for other commits by this committer
math/gsl: update to 2.6

- math/p5-Math-GSL does not seem to have any upstream activity to make it work
with this version -> mark it broken
  - this also breaks the two consumers of this port

- biology/gemma: has a conflict with cblas, and is makred broken.

PR:		241363
Exp-run by:	antoine
Original commitRevision:515671 
Friday, 11 Oct 2019
21:51 mandree search for other commits by this committer
Bogofilter 1.2.5 has been released with no changes, update to it.
Original commitRevision:514301 
Thursday, 19 Sep 2019
13:53 tobik search for other commits by this committer
mail/bogofilter: Spell GSL_CONFIGURE_OFF correctly

There is no opt_CONFIGURE_ARGS_OFF helper.
Original commitRevision:512340 
Sunday, 8 Sep 2019
21:46 mandree search for other commits by this committer
Update bogofilter to 1.2.5.r1, add new database variants.

There are now -kc and -lmdb slave ports that use
KyotoCabinet and LMDB databases.

Since KyotoCabinet is supposed to relieve TokyoCabinet from duty,
sunset the -tc port some 15 months from now.

Clean up CONFLICTS.

Run self-tests in post-build. This reveals Berkeley DB issues
on the various RISC architectures (mips64, aarch64).
Original commitRevision:511600 
Friday, 2 Nov 2018
13:32 rene search for other commits by this committer
Remove compatibility code for FreeBSD < 11.2 from all ports.

Simplify some ports where DragonFlyBSD no longer needs to be special-cased.
Submitted by:	rene
Reviewed by:	bapt, jbeich
Differential Revision:	https://reviews.freebsd.org/D17724
Original commitRevision:483807 
Tuesday, 10 Jul 2018
04:21 linimon search for other commits by this committer
This is still broken on armv*/10.  It works on 11 and later.

Reported by:	maintainer
Original commitRevision:474322 
Sunday, 8 Jul 2018
01:30 linimon search for other commits by this committer
These ports have been confirmed to build on armv6.

While here, pet portlint.

Reported by:	manu
Approved by:	portmgr (tier-2 blanket)
Original commitRevision:474151 
Saturday, 23 Jun 2018
08:27 tcberner search for other commits by this committer
Update math/gsl to 2.5

PR:		229067
Original commitRevision:473116 
Thursday, 30 Nov 2017
06:13 linimon search for other commits by this committer
For ports that are marked BROKEN on armv6, and also fail to build on
armv7, mark them so.

This is part two of a multipart commit to bring armv7 ports to parity
with armv6.

Approved by:	portmgr (tier-2 blanket)
Obtained from:	lonesome.com -exp run
Original commitRevision:455167 
Monday, 3 Jul 2017
20:38 tcberner search for other commits by this committer
Update math/gsl to 2.4

Exp-Run by:	antoine
PR:		220408
Original commitRevision:444988 
Saturday, 27 May 2017
20:33 linimon search for other commits by this committer
Mark some ports failing on armv6, for errors classified as "configure_error".

Note: this skips all the ports that _sometimes_ fail with CMake errors.  We
need to investigate that problem, and find out if it is specific to the qemu
environment.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
Original commitRevision:441874 
Tuesday, 2 May 2017
05:26 tcberner search for other commits by this committer
Update math/gsl to 2.3

This release introduces some new features and fixes several bugs:
	http://savannah.gnu.org/forum/forum.php?forum_id=8751

* update to 2.3 and take maintainership
* update math/py-gsl to 2.2.0 for gsl2 support
* update math/rubygem-rb-gsl to 2.1.0.2 for gsl2 support

PR:		218952
Exp-run by:	antoine
Reviewed by:	mat, rakuco
Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D10522
Original commitRevision:439928 
Thursday, 3 Nov 2016
16:18 linimon search for other commits by this committer
Now builds on sparc64.

Approved by:	portmgr (tier-2 blanket)
Original commitRevision:425249 
Monday, 8 Aug 2016
13:46 mat search for other commits by this committer
USE_BDB cleanup.

- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx  -> USES=bdb:xx.

Other modernisations when I see them.

PR:		209183
Sponsored by:	Absolight
Original commitRevision:419843 
Wednesday, 13 Apr 2016
07:38 mandree search for other commits by this committer
Support "make test" by defining TEST_TARGET. [1]

Define LICENSE.

Remove regression-test target in favor of the framework "make test"
feature. (ports/CHANGES 20150928)

Submitted by:	jbeich@ [1]
Original commitRevision:413175 
Tuesday, 12 Apr 2016
23:15 mandree search for other commits by this committer
Add a convenience 'regression-test' target.
Original commitRevision:413164 
22:05 mandree search for other commits by this committer
Un-deprecate [1], but block db48.

Reported by: adamw@ [1]
Original commitRevision:413160 
05:58 mandree search for other commits by this committer
Deprecate bogofilter now that databases/db* are no longer in my maintenance.
bogofilter-sqlite and bogofilter-tc are unaffected.
Original commitRevision:413098 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Sunday, 10 Jan 2016
17:01 antoine search for other commits by this committer
Unbreak bogofilter-sqlite
Original commitRevision:405727 
Thursday, 17 Dec 2015
17:19 mat search for other commits by this committer
Fix usage of ${PERL5}.

${PERL5} points to a specific version of perl, say, perl5.22.1, it is
fine to use it in a ports Makefile to do Perly things, but ports using
it must use ${PERL}, that points to /usr/local/bin/perl so that if the
minor version is updated, the shebang keep working.

While there, make some ports use shebangfix, regen a few patches, and
bump PORTREVISION where a shebang went from PERL5 to PERL.

PR:		205367
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:403913 
Monday, 13 Jul 2015
19:02 amdmi3 search for other commits by this committer
- Fix shebangs (actually affects slave bogofilter-tc port)

Approved by:	portmgr blanket
MFH:		2015Q3 (blanket)
Original commitRevision:391938 
Tuesday, 14 Apr 2015
02:19 amdmi3 search for other commits by this committer
- Add CPE info

Approved by:	portmgr blanket
Original commitRevision:383973 
Thursday, 21 Aug 2014
22:50 mandree search for other commits by this committer
Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
  where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
  versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
  for new Berkeley DB, but are untested.

NOTE: please read UPDATING and the Wiki page before proceeding!

Announcement:	http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference:	https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR:		192690
Approved by:	portmgr (implicit, PORTREVISION bump on unstaged ports)
Original commitRevision:365599 
Sunday, 17 Aug 2014
13:09 tijl search for other commits by this committer
math/gsl:
- Add USES=libtool and bump dependent ports
- Add USES=pathfix and INSTALL_TARGET=install-strip

Approved by:	portmgr (implicit, bump unstage port)
Original commitRevision:365182 
Wednesday, 11 Jun 2014
14:50 tijl search for other commits by this committer
Support LIBS like LDFLAGS.

- Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV.
- Add an option helper for LIBS.
- Adjust all ports that already use LIBS.  Also remove references to
  PTHREAD_CFLAGS and PTHREAD_LIBS while here.
- Some ports did not support having a LIBS environment variable and
  required additional patches.

Somewhat simplified a linker command line looks like:

${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS}

where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and
LIBS can be controlled by us.  If possible -L and -l flags need to be
added to LIBS to make sure they appear after any -L and -l flags set by
upstream.  Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this
may appear too early on the command line causing installed libraries to
be linked in instead of freshly built ones.

Additional changes:
benchmarks/netio: Replace WITH_IPV6 with an IPV6 option.
comms/gnokii: Replace some patches with USES=pathfix.  Also remove -fPIC.
graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR.
graphics/visionworkbench: Remove FreeBSD 7 support.
multimedia/libmovtar: New LIB_DEPENDS syntax.
multimedia/opencinematools: Use standard do-build.
net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins)
net-mgmt/nagios: Remove -fPIC.
net-mgmt/nagios4: Remove -fPIC.
print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036.
security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with
ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS.  This skips a test
in configure that falsely detects pthread_mutexattr_init in our libc.
sysutils/dar: Fix iconv detection.
x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD
hack and use $CXX as linker as on other platforms.

PR:		190592
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:357486 
Tuesday, 20 May 2014
16:54 mandree search for other commits by this committer
USE_BZIP2 modernized to USES=tar:bzip2.
Original commitRevision:354656 
Wednesday, 30 Apr 2014
13:26 adamw search for other commits by this committer
Make it possible to fully disable DOCS by considering
everything in DOCSDIR to be part of PORTDOCS. Really,
the "contrib" stuff belong in EXAMPLESDIR.

While here, use OPTIONS helpers, add DOCS to the
OPTIONS_DEFINE list, and bump PORTREVISION.

Maintainer should consider moving the contrib pieces
to EXAMPLESDIR, and moving the pkg-install to a
pkg-message so that it can be viewed later.
Original commitRevision:352681 
Tuesday, 1 Oct 2013
14:21 mandree search for other commits by this committer
Support staging.
Original commitRevision:328952 
Friday, 20 Sep 2013
19:59 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
mail)
Original commitRevision:327742 
Sunday, 15 Sep 2013
08:15 az search for other commits by this committer
- convert to the new perl5 framework
- convert USE_GMAKE to Uses

Approved by:	portmgr (bapt@, blanket)
Original commitRevision:327334 
Wednesday, 4 Sep 2013
18:06 madpilot search for other commits by this committer
- Make ports use the libc provided iconv implementation on 10-CURRENT
  after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc

Reviewed by:	bapt
Approved by:	portmgr (bapt)
Discussed with:	bapt, bsam (who both contributed ideas and code)
Original commitRevision:326307 
Monday, 26 Aug 2013
16:06 bf search for other commits by this committer
Update math/gsl to 1.16 and adjust some dependent ports
Original commitRevision:325401 
Monday, 29 Jul 2013
21:29 mandree search for other commits by this committer
Cleanup.
Original commitRevision:323925 
20:57 mandree search for other commits by this committer
Update LIB_DEPENDS for gsl to new format.
Original commitRevision:323918 
Tuesday, 16 Jul 2013
05:42 ade search for other commits by this committer
- Update devel/automake to 1.14
- Update devel/gettext to 0.18.3
- Fix known-broken (from exp-runs) ports
- Clean up a lot of cruft in the devel/gettext port itself,
  based on work from tijl@

PR:		178883
Submitted by:	ade
Sponsored by:	Wadsworth 6X
Original commitRevision:323088 
Thursday, 4 Jul 2013
06:37 mandree search for other commits by this committer
Update to new upstream release 1.2.4 which basically only contained what
patches we hade in the 1.2.3 port.
Original commitRevision:322264 
Monday, 1 Jul 2013
06:26 mandree search for other commits by this committer
Fix read-from-NULL-pointer crashes when command line option arguments
are missing from long options --syslog-tag, --timestamp-date, or
--db-cachesize (the short option equivalents were unaffected); or when
BOGODIR/BOGOFILTER_HOME/HOME environment variables are all three
missing when running bogotune. (This is all under the invoking user's
control and not believed to be security relevant.)

Reported by Alexandre Rebert, found within the Mayhem project he is with.

Obtained from:	http://svn.code.sf.net/p/bogofilter/code/trunk
Original commitRevision:322117 
Thursday, 9 May 2013
12:06 bdrewery search for other commits by this committer
- Fix build after USES=iconv conversion in r316662,
  USES must be defined before bsd.port.pre.mk

Reported by:	John Marino <draco@marino.st>
Original commitRevision:317736 
Saturday, 27 Apr 2013
11:59 mva search for other commits by this committer
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here

Reviewed by:	zeising
Original commitRevision:316662 
Thursday, 21 Mar 2013
20:27 mandree search for other commits by this committer
- remove three self-tests again, two because they were meant to be
  disabled due to timings on the package builders,
  one (t.abort) because it fails on pointyhat.

Submitted by:	miwi
Original commitRevision:314868 
Sunday, 6 Jan 2013
11:13 mandree search for other commits by this committer
Convert to Options NG.
Clean up Makefile header.
Original commitRevision:309977 
Monday, 3 Dec 2012
20:16 mandree search for other commits by this committer
Update bogofilter to new upstream release 1.2.3.
Security update to fix a heap corruption bug with invalid base64 input,
reported and fixed by Julius Plenz, FU Berlin, Germany.

Feature safe:   yes
Security:       CVE-2012-5468
Security:       f524d8e0-3d83-11e2-807a-080027ef73ec
Original commitRevision:308171 
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Wednesday, 31 Aug 2011
10:32 mandree search for other commits by this committer
Demote CONFLICTS to CONFLICTS_INSTALL.

Bump PORTREVISION on slave ports to pull in master port bugfix for trainbogo.sh.
Original commit
10:19 mandree search for other commits by this committer
Fix contrib/trainbogo.sh to use md5 rather than md5sum.
Reported by: RW

Split CPPFLAGS from CONFIGURE_ENV.
Reported by: portlint
Original commit
Monday, 9 May 2011
16:42 bf search for other commits by this committer
Update math/gsl to 1.15, and adjust PORTREVISION
and LIB_DEPENDS of dependent ports
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Saturday, 16 Oct 2010
11:52 ade search for other commits by this committer
Punt autoconf267->autoconf268
Original commit
Tuesday, 5 Oct 2010
19:57 ade search for other commits by this committer
Round one migration of ports from automake{19,110} to automake111
Original commit
Wednesday, 15 Sep 2010
18:35 ade search for other commits by this committer
Autotools update.   Read ports/UPDATING 20100915 for details.

Approved by:    portmgr (for Mk/bsd.port.mk part)
Tested by:      Multiple -exp runs
Original commit
Monday, 19 Jul 2010
22:43 mandree search for other commits by this committer
Update to new upstream version 1.2.2. Remove now-obsolete patch.
Original commit
Tuesday, 6 Jul 2010
09:03 mandree search for other commits by this committer
Fix crash in base64 decoder. Pending CVE assignment from oss-security@.
Also pending vulndb entry.

Approved by:  garga (mentor, implicit)
Feature safe: yes
Original commit
Monday, 29 Mar 2010
01:12 wen search for other commits by this committer
- Bump PORTREVISION to chase the update of math/gsl
Original commit
Thursday, 7 Jan 2010
15:17 mandree search for other commits by this committer
Update to new upstream release 1.2.1.

Submitted by: lwhsu@
PR:           ports/141417
Approved by:  garga@ (mentor)
Original commit
Sunday, 27 Dec 2009
03:17 pgollucci search for other commits by this committer
forced commit for QAT
Original commit
Tuesday, 1 Dec 2009
20:33 makc search for other commits by this committer
Chase math/gsl update,
bump PORTREVISION
Original commit
Saturday, 22 Aug 2009
00:28 amdmi3 search for other commits by this committer
- Switch SourceForge ports to the new File Release System: categories starting
with M
Original commit
Sunday, 16 Aug 2009
04:32 linimon search for other commits by this committer
Mark as broken on sparc64: fails self-tests.

Hat:            portmgr
Original commit
Tuesday, 2 Jun 2009
21:43 miwi search for other commits by this committer
Update to late May SVN snapshot to
- Fix quoted-printable decoding in the presence of excess CR characters
  (continuation lines)
- Fix parallel build by removing two files that were accidentally shipped

PR:             135149
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Friday, 29 May 2009
04:26 linimon search for other commits by this committer
Mark as broken on sparc64: fails self-tests.
Original commit
Sunday, 17 May 2009
06:35 pgollucci search for other commits by this committer
- Update to 1.4.20
- Bump PORTREVISION for SHLIB bump

PR:             ports/134596
Submitted by:   lwshu
Original commit
Wednesday, 13 May 2009
08:49 miwi search for other commits by this committer
- Update to 1.2.0, resetting PORTREVISION where set.
- use bsd.database.mk framework (USE_BDB/USE_SQLITE)
- set MAKE_JOBS_SAFE for parallel builds

PR:             134323
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Saturday, 25 Apr 2009
00:34 pgollucci search for other commits by this committer
- Update to 4.1.16
- Bump PORTREVISION for SHLIB bump
Original commit
Tuesday, 3 Feb 2009
06:16 linimon search for other commits by this committer
Mark bogofilter and slave ports as broken on sparc64: coredump while
installing.
Original commit
Monday, 12 Jan 2009
20:37 miwi search for other commits by this committer
- Chase gsl shlib bump
Original commit
Thursday, 8 Jan 2009
16:00 miwi search for other commits by this committer
- Set CONFLICT with mail/bogofilter-tc.

PR:             127039
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Thursday, 21 Aug 2008
06:18 rafan search for other commits by this committer
Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:             126524 (obsoletes 52917)
Submitted by:   rafan
Tested on:      two pointyhat 7-amd64 exp runs (by pav)
Approved by:    portmgr (pav)
Original commit
Tuesday, 6 May 2008
22:21 itetcu search for other commits by this committer
- update to 1.1.7 [1]
- use SF macro [2]

PR:             ports/123420 [1]
Submitted by:   maintainer [1], itetcu@ (me) [2]
Original commit
Tuesday, 8 Apr 2008
13:53 jadawin search for other commits by this committer
- Chase the gsl shared lib bump.

Approved by:    thierry (mentor)
Original commit
Saturday, 22 Dec 2007
00:16 miwi search for other commits by this committer
- Update to 1.1.6

PR:             118846
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Tuesday, 14 Aug 2007
10:13 clsung search for other commits by this committer
- Add missing file in pkg-plist.
- bump PORTREVISION

PR:             ports/114425
Submitted by:   Sunpoet Po-Chuan Hsieh <sunpoet_AT_sunpoet dot net>
Reviewed by:    maintainer (Matthias Andree)
Approved by:    maintainer
Original commit
Monday, 23 Jul 2007
09:36 rafan search for other commits by this committer
- Set --mandir and --infodir in CONFIGURE_ARGS if the configure script
  supports them.  This is determined by running ``configure --help'' in
  do-configure target and set the shell variable _LATE_CONFIGURE_ARGS
  which is then passed to CONFIGURE_ARGS.
- Remove --mandir and --infodir in ports' Makefile where applicable
  Few ports use REINPLACE_CMD to achieve the same effect, remove them too.
- Correct some manual pages location from PREFIX/man to MANPREFIX/man
- Define INFO_PATH where necessary
- Document that .info files are installed in a subdirectory relative to
  PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and
  subdirectory detection.

PR:             ports/111470
Approved by:    portmgr
Discussed with: stas (Mk/*), gerald (info related stuffs)
Tested by:      pointyhat exp run
Original commit
Friday, 29 Jun 2007
05:46 ijliao search for other commits by this committer
chase math/gsl lib version
Original commit
Tuesday, 16 Jan 2007
06:14 clsung search for other commits by this committer
- Update to 1.1.5

PR:             ports/107967
Submitted by:   maintainer (Matthias Andree)
Original commit
Monday, 15 Jan 2007
15:10 miwi search for other commits by this committer
- Update to 1.1.4
- Add mandir to INSTALL_TARGET

PR:             ports/107907
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Tuesday, 11 Jul 2006
14:07 itetcu search for other commits by this committer
- Update to 1.0.3

PR:             ports/100085
Submitted by:   maintainer
Original commit
Saturday, 6 May 2006
01:28 mnag search for other commits by this committer
- Bump PORTREVISION and change lib version because math/gsl are updated.
- portlint(1)
Original commit
Wednesday, 15 Mar 2006
15:11 pav search for other commits by this committer
- Update to 1.0.2

PR:             ports/94468
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Tuesday, 3 Jan 2006
20:14 anray search for other commits by this committer
- Update to 1.0.1

PR:             ports/91269
Submitted by:   maintainer
Original commit
Friday, 2 Dec 2005
13:41 ehaupt search for other commits by this committer
- Update to 1.0.0
- Skip t.lock3 which is prone to run out of retries on busy machines
- Revise pkg-descr
- Nuke files/patch-tests-nolocalconfig (merged upstream)

PR:             89823
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Sunday, 13 Nov 2005
22:08 mnag search for other commits by this committer
Update to 0.96.6

PR:             88951
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Tuesday, 8 Nov 2005
12:06 mnag search for other commits by this committer
Update to 0.96.5

PR:             88654
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Friday, 28 Oct 2005
11:17 garga search for other commits by this committer
- update contrib/ to match upstream
- fix up bash-isms from contrib/randomtrain (patch), that should be the last
  bash-ism in contrib/ (also fixed in upcoming upstream 0.96.4 release)
- Remove bash dependency

PR:             ports/88121
Submitted by:   maintainer
Original commit
Wednesday, 26 Oct 2005
19:56 mnag search for other commits by this committer
Fix string size in files/patch-mimetypes

PR:             88054
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
13:02 mnag search for other commits by this committer
Update to 0.96.3

PR:             88016
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Monday, 24 Oct 2005
14:25 garga search for other commits by this committer
- Fix NOPORTDOCS "make install" and packaging,
  reported by Stanislaw Halik (bcc'd to protect his mail address).
- Clean up CONFLICTS
- Run t.lock3 in bogofilter-sqlite again
- Bump port revision after pkg-plist change.

PR:             ports/87890
Submitted by:   maintainer
Original commit
Saturday, 22 Oct 2005
00:06 mnag search for other commits by this committer
Update to 0.96.2

PR:             87820
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Original commit
Monday, 29 Aug 2005
02:55 ahze search for other commits by this committer
- Update to 0.96.0

PR:             ports/85421
Submitted by:   Matthias Andree (maintainer)
Original commit
Monday, 25 Jul 2005
15:15 vsevolod search for other commits by this committer
Update to 0.95.2

PR:             ports/83906
Submitted by:   Matthias Andree <matthias.andree@gmx.de> (maintainer)
Approved by:    perky (mentor)
Original commit
Tuesday, 21 Jun 2005
14:44 flz search for other commits by this committer
- Fix bf_resize bash'isms.

PR:             ports/82441
Submitted by:   maintainer
Noticed by:     ache
Original commit
Tuesday, 14 Jun 2005
13:13 jylefort search for other commits by this committer
Update to 0.94.14

PR:             ports/82208
Submitted by:   maintainer
Original commit
Tuesday, 31 May 2005
17:32 flz search for other commits by this committer
- Bump PORTREVISION.
Original commit

Number of commits found: 158 (showing only 100 on this page)

1 | 2  »