Commit Graph

4904 Commits

Author SHA1 Message Date
Steve Wills
70eb32067e lang/ruby21: fix bug in bundled rdoc
Obtained from:	55fbd8947f
2015-03-30 15:30:30 +00:00
Steve Wills
fed7471248 Update ruby-gems to 2.4.5
Note this is a big upgrade and the way gemspecs are generated changed. As a
result, all patched gemspecs had to have new patches.
2015-03-30 02:47:07 +00:00
Bryan Drewery
52131930a1 Fix duplicate values in ENV vars and X_BUILD_FOR truncating BUILD_DEPENDS.
PKG_NOTES/PKG_ENV/CONFIGURE_ENV/MAKE_ENV/CO_ENV/QA_ENV were using += before the
double include check so any port using bsd.port.options.mk or bsd.port.pre.mk
would have duplicated items in these vars.

All ports would have their BUILD_DEPENDS truncated with X_BUILD_FOR.

PR:		198803 (exp run by antoine)
Differential Revision:	https://reviews.freebsd.org/D2113
With hat:	portmgr
2015-03-29 19:45:39 +00:00
Baptiste Daroussin
8f30b87c72 Add USES=metaport to simplify writing metaports 2015-03-28 14:50:22 +00:00
John Marino
9e002d2aee Mk/bsd.gecko.mk: Fix typo from yesterday
Reported by:	danfe (good catch!)
2015-03-27 07:05:29 +00:00
John Marino
b5485e708b Mk/bsd.options.mk: Add OPTIONS_EXCLUDE_${OPSYS}
This simple addition greatly simplifies the removal of options as a
function of operating system, e.g. OPTIONS_EXCLUDE_DragonFly.

Approved by:	portmgr (bdrewery)
2015-03-26 17:31:20 +00:00
Mathieu Arnold
1519d9cae4 MASTER_SITE_{PNET,RUBY_DBI,RUBY_GNOME} have been retired some time ago, remove
their magic macros.

Sponsored by:	Absolight
2015-03-26 16:46:02 +00:00
John Marino
c560a85625 Mk: remove PTHREAD_LIBS and PTHREAD_CFLAGS variable
For bsd.gecko.mk, replace PTHREAD_LIBS with "-pthread", the same value
it was using before.

Approved by:	PTHREAD blanket (completes task)
Approved by:	portmgr (bapt)
2015-03-26 08:57:36 +00:00
Bryan Drewery
a79013b978 Fix 20 year old doc bug. MASTER_SITE_OVERRIDE has not 'overridden' since r2004.
With hat:	portmgr
2015-03-25 21:12:07 +00:00
Bryan Drewery
266f7e411b USE_GITHUB: Tighten the GH_TAGNAME stripping of 'v' from r382120 to only do so
for v[0-9] as Github does. If a tag is 'v.1' github will return that exact value.
This also fixed named tags that are word starting with 'v'.

PR:		198869
With hat:	portmgr
Reported by:	antoine
2015-03-24 18:15:17 +00:00
Bryan Drewery
0803843ae4 Github's main archive link silently is converting tags starting with 'v' to
not have 'v' in the filename downloaded or the extraction directory. The
filename is not an issue since we force to use DISTNAME via the ?dummy trick
to fetch(1). Due to this though we must make the same replacement for tags
since we are not using their filename (which matches the extraction dir).

Incidentally this is working if DISTVERSIONPREFIX=v is used since that value
was not used in WRKSRC.

With hat:	portmgr
PR:		198869
2015-03-24 16:42:38 +00:00
Mark Felder
f582bb666a Speed up checking for stripped binaries
Skip ascii files. This significantly speeds up stage-qa on ports with a
considerable amount of text files being installed.

Differential Revision:	https://reviews.freebsd.org/D2121
Approved by:	bdrewery
2015-03-23 20:41:13 +00:00
Bryan Drewery
b4623773d9 Introduce a BSDMAKE?= /usr/bin/make and use it as the default MAKE_CMD.
With hat:	portmgr
2015-03-23 04:03:00 +00:00
Bryan Drewery
e6709289f1 Allow user to override MAKE_CMD without breaking gmake/fmake/scons ports.
With hat:	portmgr
2015-03-23 03:59:04 +00:00
Baptiste Daroussin
66d439f626 Disable fontpath.d support as it overwrites the default fontrootdir making non
fontconfig application like xcalc not to find their fonts

Reported by:	Jakub Lach <jakub_lach@mailplus.pl>, Stefan Thurner <stthur@gmail.com>
2015-03-22 19:49:09 +00:00
Bryan Drewery
6faf9b65ab Unbreak ccache after r359201 set HOME in MAKE_ENV/CONFIGURE_ENV rather than
in the global scope as bsd.ccache.mk expected.

This was causing ccache to use WKRDIR/.ccache for obj caching. 'make clean'
would then lose all cached files.  This worked in in Poudriere though as
CCACHE_DIR is explicitly defined.

With hat:	portmgr
2015-03-22 19:41:44 +00:00
Baptiste Daroussin
a5da770e67 Make fonts repecting XDG
Xorg is now looking in ${LOCALBASE}/share/fonts by default
Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1))
Large cleanup on lots of font ports
All fonts are now properly dynamically generating fonts.dir and fonts.scale
instead of sometime overwriting existing ones)
All fonts are generating fontconfig's cache
Improve consistency in fonts ports
2015-03-21 23:05:19 +00:00
Dmitry Sivachenko
b6023a1b41 Add shared descriptions for netlib/atlas/openblas implementations of BLAS. 2015-03-21 12:00:12 +00:00
Bryan Drewery
945a87d01c Fix fetching x11-fonts/sourcesanspro-ttf from r381780; Don't modify GH_TAGNAME.
Pointyhats to:	bdrewery
With hat:	portmgr
Reported by:	antoine
2015-03-20 22:32:00 +00:00
Bryan Drewery
ecd7d7f387 USE_GITHUB: Strip slashes from GH_TAGNAME which impacts WRKSRC and DISTNAME.
The DISTNAME setting in bsd.sites.mk was moved lower due to GH_TAGNAME using
:= and DISTNAME depending on GH_TAGNAME.

With hat:	portmgr
2015-03-20 20:34:29 +00:00
Bryan Drewery
37a1520519 For the new USE_GITHUB with only GH_TAGNAME set default DISTNAME to
include GH_PROJECT/GH_ACCOUNT/GH_TAGNAME. This prevents the distfile
having the same name despite changing one of these values and causing
a bad checksum.

Differential Revision:	https://reviews.freebsd.org/D2103
Reviewed by:	mat
With hat:	bdrewery
2015-03-20 20:07:50 +00:00
Bryan Drewery
69d5e85c26 Default the WRKSRC to the proper extracted name for USE_GITHUB when
GH_TAGNAME is defaulted to the new DISTVERSIONPREFIX/DISTVERSION/DISTVERSIONSUFFIX
change in r381689.

This actually fixes the build for sysutils/zfstools, broken in r381704.

With hat:	portmgr
2015-03-20 07:25:43 +00:00
Baptiste Daroussin
4b5be23683 Removing font-alias was a mistake, readd it which fixes tigervnc (and more)
Pointyhat to:	bapt
Reported by:	Corey <merlincorey@hushmail.me>
2015-03-20 07:19:51 +00:00
Bryan Drewery
25700d1dc3 These lines are being expanded badly. Fix syntax error. 2015-03-20 07:05:00 +00:00
Bryan Drewery
cf1458db51 Fix order of change in r381706.
With hat:	portmgr
2015-03-20 02:07:01 +00:00
Bryan Drewery
10b2398f3b Add a sanity check for deprecating the old USE_GITHUB syntax.
With hat:	portmgr
2015-03-20 02:05:57 +00:00
Baptiste Daroussin
6bc7b7ce5d Rework XORG_CAT= font
Fonts are now generating the fonts.scale and fonts.dir at install time
font-alias is not needed anymore for the above reason
extract font-util and encodings out of XORG_CAT=fonts because they do not
install any fonts
make XORG_CAT=fonts use USES=fonts
2015-03-20 01:12:20 +00:00
Bryan Drewery
5ff7bfff7f Fix typo from r381689
With hat:	portmgr
2015-03-19 20:46:51 +00:00
Bryan Drewery
965611a692 Fix renamed distfiles missed in r381688. Also fix the GHR ports updated in
r381648 which were expecting DISTVERSIONPREFIX/SUFFIX to be used in the
tag fetched from github by defaulting GH_TAGNAME to the same value
as DISTVERSION would get by only when GH_COMMIT is not set (when using the
new scheme).

With hat:	portmgr
2015-03-19 20:45:03 +00:00
Bryan Drewery
db55af0fea Fix the new USE_GITHUB to rename the distfile such that it does not
conflict with the old scheme and cause a "reroll" or "invalid checksums".  This
also avoids clobbering the FreeBSD distcache.

Use a revision in the DISTNAME for USE_GITHUB in case we need to bump this
again for anything. It's more a hint of how to handle it in the future.

Reported by:	mat
Discused with:	mat, antoine, swills
With hat:	portmgr
2015-03-19 20:30:19 +00:00
Bryan Drewery
adc9e2d9a6 r381618 also made GH_ACCOUNT optional. 2015-03-19 19:47:44 +00:00
Baptiste Daroussin
0618c3a70e Prevent from overwriting PLIST_SUB and SUB_LIST
Reported by:	pgollucci
2015-03-19 18:52:19 +00:00
Baptiste Daroussin
f75f2f43bc Prepopulate FONTSDIR 2015-03-19 18:36:11 +00:00
Bryan Drewery
4ff4a2663a Add a hint on how to deal with github download failures.
PR:		194898
2015-03-19 18:16:52 +00:00
Bryan Drewery
010d8c7d9a Remove GITHUB_RELEASE MASTER_SITE from r375010 as it is now redundant with GITHUB.
The new GITHUB MASTER_SITE from r381618 now supports not setting GH_COMMIT and
only having GH_TAGNAME default to DISTVERSION.

All of these ports as-is.

With hat:	portmgr
2015-03-19 18:08:25 +00:00
Bryan Drewery
79a21ca825 Note that GH_TAGNAME can be any length of the git hash. 2015-03-19 17:57:19 +00:00
Baptiste Daroussin
b85dca8ae0 Add FONTSDIR to PLIST_SUB and SUB_LIST 2015-03-19 17:27:31 +00:00
Baptiste Daroussin
9e93906c65 Add a new USES=fonts to simplify handling of fonts ports 2015-03-19 17:03:01 +00:00
Bryan Drewery
5b5a90256d Update USE_GITHUB so it does not require GH_COMMIT.
Using this new scheme allows only setting the _tag_ or _commit hash_ in
GH_TAGNAME and not having to know the hash for a tag.  This scheme will
download a tarball that has a different checksum than before due to a changed
directory name for extraction.

The following MASTER_SITES are provided to retain the old checksum and
directory structure (that require GH_COMMIT):
  GH -> GHL
  GITHUB -> GITHUB_LEGACY

Differential Revision:	https://reviews.freebsd.org/D748
Submitted by:	amdmi3
Reviewed by:	mat, swills, antoine, bdrewery
With hat:	portmgr
2015-03-19 16:44:57 +00:00
Raphael Kubo da Costa
ccb0759749 Update Qt5 to 5.4.1.
This is probably the first time our Qt 5 ports are tracking the latest
upstream release :-)

There isn't much to report in this update, thanks to the effort spent in the
5.2->5.3 update: a lot of the work is just small plist and patch updates.
Thankfully, several patches have been upstreamed and are not needed on our
side anymore.

I would like to thank Alex Richardson <arichardson.kde@gmail.com> and Tobias
Berner <tcberner@gmail.com> for their help with the plist updates and
general testing.

PR:		198585
2015-03-18 09:37:42 +00:00
John Marino
b4e583add0 Mk/Uses/ada.mk: Fix missed previously substitution 2015-03-17 13:27:09 +00:00
John Marino
71dfc66f7b Mk/Uses/ada.mk: Add argument "49"
To be complete, ada.mk needs to support having ADA_DEFAULT=5 and the port
explicitly requesting lang/gcc-aux.  There is no identified use case for
this yet, but not supporting it is a hole.
2015-03-16 08:11:58 +00:00
John Marino
82c628e214 Mk/Uses/ada.mk: Add gcc5-based Ada compiler support
A new argument has been added to USES=ada, "5", which will select the
gcc5-aux compiler (gcc 5) instead of the gcc-aux compiler (gcc 4.9).

Additionally, it will check if ADA_DEFAULT is defined and equal to "5".
If that is the case, gcc5-aux will be used by default, even if no
arguments are defined.  The use case is to define it in make.conf so that
all Ada ports are built with same compiler.  This capability will be used
to confirm all Ada ports build correctly with gcc5-aux before the default
compiler is switched.
2015-03-16 01:04:14 +00:00
Sunpoet Po-Chuan Hsieh
47e904ae1e - Cleanup Mk/bsd.ruby.mk and remove no-op knobs in ruby ports
Reviewed by:	bapt
Reviews:	https://reviews.freebsd.org/D2030
2015-03-14 14:36:13 +00:00
Alonso Schaich
63ff0b60db Update KDE SC to 4.14.3
The kde@ team presents KDE SC 4.14.3, the last planed release
of the KDE SC 4 series.

In addition to the updates provided by the KDE SC developers, this
update also addresses numerous FreeBSD and PORTS specific
issues, found and solved by the kde@ team and area51 testers,
most notorously Tobias C. Berner <tcberner@gmail.com>

PR:		197751
PR:		197871
PR:		184996
Reviewed by:	rakuco (mentor)
Differential:	https://reviews.freebsd.org/D1950
2015-03-11 23:11:47 +00:00
Antoine Brodin
c977e8cc17 Remove a debug line from actual-package-depends
With hat:	portmgr
2015-03-11 22:08:31 +00:00
Romain Tartière
ca0407d054 Set an arbitrary time-zone.
mdoc(1) will fail if no time-zone information is available, so provide one.

PR:		ports/198414
Reported by:	antoine
2015-03-10 12:58:43 +00:00
Jan Beich
cde5d2117f - Update SeaMonkey to 2.33
- Check if NS_NewNativeLocalFile() succeeds before using [1]

Changes:	http://www.seamonkey-project.org/releases/seamonkey2.33/
Obtained from:	PkgSrc [1]
MFH:		2015Q1
X-MFH-With:	r380090
Security:	https://vuxml.freebsd.org/freebsd/99029172-8253-407d-9d8b-2cfeab9abf81.html
2015-03-10 03:00:25 +00:00
Adam Weinberger
f06704ea69 Add XS: Use XS libraries for speed boost 2015-03-09 16:15:47 +00:00
Steve Wills
83c1767ceb lang/ruby22: update to 2.2.1
PR:		198338
Submitted by:	Yasuhiro KIMURA <freebsd.org@pob01.utahime.jp>
2015-03-09 13:30:51 +00:00