aboutsummaryrefslogtreecommitdiff
path: root/news/cnews
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* - fix build with -fno-commonDirk Meyer2020-05-041-0/+11
| | | | Notes: svn path=/head/; revision=533914
* Convert to UCL & cleanup pkg-message (categories n)Mathieu Arnold2019-08-141-0/+6
| | | | | | | (and missed 3 missed files from previous categories.) Notes: svn path=/head/; revision=508903
* - update to pgpverify-1.29Dirk Meyer2017-09-172-9/+16
| | | | | | | - new option GPGPV Notes: svn path=/head/; revision=450004
* - remove obsolte option PGP2Dirk Meyer2017-08-021-2/+1
| | | | Notes: svn path=/head/; revision=447097
* - make portlint happierDirk Meyer2017-01-2910-66/+41
| | | | Notes: svn path=/head/; revision=432719
* The output of tools like awk, date, sort, tr,... depends on the currentTijl Coosemans2017-01-181-2/+2
| | | | | | | | | | | | | | | | | | | | | locale set by the user. Add LANG=C and LC_ALL=C at the beginning of bsd.port.mk and export them so all commands are executed with the C locale. LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3) as default value for LC_* variables, so normally it isn't used when LC_ALL is set, but there's code out there that looks at LANG directly so it's safer to set it as well. The only commands not captured by this are != assignments before any inclusion of bsd.port.*mk. Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a different locale (e.g. USE_LOCALE=en_US.UTF-8). PR: 215882 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=431796
* - fix include and prototype problems with ansi patchesDirk Meyer2016-11-0834-628/+28
| | | | Notes: svn path=/head/; revision=425688
* - fix regressions on FreeBSD 10.3Dirk Meyer2016-08-111-2/+3
| | | | Notes: svn path=/head/; revision=420097
* Fix build with clang and getline(3)Baptiste Daroussin2016-07-311-2/+6
| | | | | | | | | | | The getline(3) failure was hidden by the fact the port was said to build with gcc from ports which occulted the getline(3) change because it bundles the system headers from when it was built (WTF???) Adding -Wno-return-type to cflags allows to build with clang Notes: svn path=/head/; revision=419391
* - Modernize plistDmitry Marakasov2015-12-012-41/+35
| | | | | | | | | PR: 204047 Submitted by: amdmi3 Approved by: maintainer timeout (dinoex, 1 month) Notes: svn path=/head/; revision=402733
* - cleanupDirk Meyer2015-09-282-27/+1
| | | | Notes: svn path=/head/; revision=398145
* - support disk with more than 4G blocks freeDirk Meyer2015-08-012-1/+12
| | | | Notes: svn path=/head/; revision=393387
* - remove @cwdDirk Meyer2014-09-291-15/+14
| | | | Notes: svn path=/head/; revision=369511
* - fix build for pkg-1.3.4Dirk Meyer2014-08-042-1/+4
| | | | Notes: svn path=/head/; revision=363963
* - rename patch filesDirk Meyer2014-08-037-104/+104
| | | | | | | - rename MACROS Notes: svn path=/head/; revision=363906
* Rename news/ patch-xy patches to reflect the files they modify.Adam Weinberger2014-07-292-0/+0
| | | | Notes: svn path=/head/; revision=363286
* Add EXAMPLES to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MEXAMPLES.Adam Weinberger2014-07-151-1/+1
| | | | Notes: svn path=/head/; revision=361989
* Remove indefinite articles and trailing periods from COMMENT, plus minorJimmy Olgeni2014-07-101-1/+1
| | | | | | | | | | | | COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category N. CR: D307 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=361440
* - revert r346880Dirk Meyer2014-03-1911-64/+357
| | | | | | | | | | Approved by: bapt - update LICENSE - fix build with new clang Notes: svn path=/head/; revision=348620
* Fix build with clangBaptiste Daroussin2014-03-031-4/+2
| | | | Notes: svn path=/head/; revision=346880
* - new options PGP2 PGPIN PGPGPGDirk Meyer2013-12-291-1/+15
| | | | | | | - do not default to security/pgp, which is broken on amd64 Notes: svn path=/head/; revision=337942
* - apply gawk patch in any caseDirk Meyer2013-12-281-5/+2
| | | | Notes: svn path=/head/; revision=337840
* - reset owner/groupDirk Meyer2013-12-211-0/+2
| | | | Notes: svn path=/head/; revision=337119
* - use STAGEDIRDirk Meyer2013-12-186-107/+160
| | | | | | | | | | - use OPTIONS_DEFINE - honor option EXAMPLES - use pkg-message - change default path for over.view, note in UPDATING Notes: svn path=/head/; revision=336846
* - fix misplaced NO_STAGE in slaveports and ifdefsDirk Meyer2013-09-211-1/+2
| | | | Notes: svn path=/head/; revision=327804
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | news) Notes: svn path=/head/; revision=327759
* - cleanup headerDirk Meyer2013-01-271-5/+1
| | | | Notes: svn path=/head/; revision=311067
* Force numerous ports that fail to build with clang over to instead alwaysMark Linimon2012-10-091-0/+2
| | | | | | | | | | | | | | | | | | | | | | rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings. Notes: svn path=/head/; revision=305610
* - fix missing includesDirk Meyer2011-11-2722-0/+267
| | | | | | | | - fix build with clang Feature safe: yes Notes: svn path=/head/; revision=286497
* - Get Rid MD5 supportMartin Wilke2011-03-201-18/+0
| | | | Notes: svn path=/head/; revision=271346
* - add LICENSE_FILEDirk Meyer2010-06-101-0/+1
| | | | Notes: svn path=/head/; revision=256299
* - fix build with LICENSEDirk Meyer2010-06-101-0/+1
| | | | Notes: svn path=/head/; revision=256298
* LICENSE BSDDirk Meyer2010-06-041-0/+1
| | | | Notes: svn path=/head/; revision=255721
* - MAKE_JOBS_UNSAFEDirk Meyer2009-03-271-0/+2
| | | | Notes: svn path=/head/; revision=231134
* - add LICENSE:Dirk Meyer2009-02-151-0/+2
| | | | Notes: svn path=/head/; revision=228419
* - not chown all dirsDirk Meyer2008-09-071-1/+5
| | | | Notes: svn path=/head/; revision=220133
* Remove support for OSVERSION < 5Edwin Groothuis2007-10-031-1/+1
| | | | Notes: svn path=/head/; revision=200763
* - new option WITH_SEDMAIL / WITH_CNEWS_SENDMAILDirk Meyer2006-10-082-0/+15
| | | | | | | Submitted by: Scott Hazen Mueller Notes: svn path=/head/; revision=174920
* - fix build for gcc41Dirk Meyer2006-10-081-0/+51
| | | | | | | Obtained from: Andreas Jochens (debian) Notes: svn path=/head/; revision=174919
* - disable regression test on pointyhatDirk Meyer2006-07-021-2/+0
| | | | | | | | | | the test sends 2 mails, pointyhat consider this fatal: Fatal error: filesystem was touched prior to 'make install' phase http://pointyhat.freebsd.org/errorlogs/i386-5-latest/cnews-cr.g_9.log Notes: svn path=/head/; revision=166746
* - drop support for FreeBSD 2.xDirk Meyer2006-06-241-10/+5
| | | | | | | | | | Submitted by: linimon - perfomace gain by dropping gawk workaround - activate regression-test Notes: svn path=/head/; revision=166176
* - add SHA checksumDirk Meyer2005-11-131-0/+18
| | | | Notes: svn path=/head/; revision=148088
* - fix left over tempfiles in sendbatchesDirk Meyer2005-03-092-4/+4
| | | | | | | Submitted by: Peter Much Notes: svn path=/head/; revision=130675
* - preserve configuration even when extracting the packageDirk Meyer2004-03-072-22/+40
| | | | | | | - set shell and home for news when running intactive Notes: svn path=/head/; revision=103174
* - add SIZEDirk Meyer2004-02-261-0/+18
| | | | Notes: svn path=/head/; revision=102162
* - change ECHO -> ECHO_MSGDirk Meyer2003-09-241-10/+10
| | | | Notes: svn path=/head/; revision=89255
* - clean up PATCH_SITESDirk Meyer2003-07-022-3/+4
| | | | | | | | - add patch for regression on CURRENT Fixes incorrect memset, causes .overview gets not cleaned of nonexisted entries. Notes: svn path=/head/; revision=84066
* - make plist more flexible in pathDirk Meyer2003-06-122-48/+45
| | | | Notes: svn path=/head/; revision=82880
* - retire pkg-commentDirk Meyer2003-02-211-1/+0
| | | | Notes: svn path=/head/; revision=76006