| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
* Both of these ports are EoL upstream. Remove them per the DEPRECATED
and EXPIRATION_DATE entries added previously
* Note that bootstrap-openjdk6 is left solely to be able to bootstrap
java/openjdk7
Notes:
svn path=/head/; revision=512663
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Java 6 public releases ended April 2013, and extended support on
December 2018. With upstream support ending, this is marked as
deprecated and users are encouraged to upgrade to openjdk8.
* Provide an expiration date set one month from now (2019-09-20).
PR: 234792
Notes:
svn path=/head/; revision=509411
|
|
|
|
| |
Notes:
svn path=/head/; revision=508880
|
|
|
|
|
|
|
|
| |
PR: 238227
Approved by: jkim
Notes:
svn path=/head/; revision=503399
|
|
|
|
|
|
|
| |
Approved by: portmgr (blanket)
Notes:
svn path=/head/; revision=495604
|
|
|
|
| |
Notes:
svn path=/head/; revision=493634
|
|
|
|
| |
Notes:
svn path=/head/; revision=470063
|
|
|
|
| |
Notes:
svn path=/head/; revision=462201
|
|
|
|
| |
Notes:
svn path=/head/; revision=450711
|
|
|
|
|
|
|
|
| |
Note PORTREVISION is not bumped because it only affects a kernel without
"options COMPAT_FREEBSD11".
Notes:
svn path=/head/; revision=449381
|
|
|
|
| |
Notes:
svn path=/head/; revision=449169
|
|
|
|
| |
Notes:
svn path=/head/; revision=442136
|
|
|
|
| |
Notes:
svn path=/head/; revision=442038
|
|
|
|
| |
Notes:
svn path=/head/; revision=431831
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
Notable change is the inclusion of Let's Encrypt CA.
Notes:
svn path=/head/; revision=424546
|
|
|
|
|
|
|
|
|
|
| |
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Notes:
svn path=/head/; revision=424411
|
|
|
|
|
|
|
| |
MFH: 2016Q3
Notes:
svn path=/head/; revision=420883
|
|
|
|
| |
Notes:
svn path=/head/; revision=420766
|
|
|
|
| |
Notes:
svn path=/head/; revision=419369
|
|
|
|
| |
Notes:
svn path=/head/; revision=419367
|
|
|
|
|
|
|
|
|
| |
by default anyway and don't need to be listed
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=415742
|
|
|
|
|
|
|
| |
MFH: 2016Q2
Notes:
svn path=/head/; revision=414705
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412347
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
print/cups and update it to 2.1.3. Also remove print/cups-pstoraster,
improve print/cups-filters, print/foomatic-* and update print/hplip to
3.16.2.
Long description:
First some background. When you hand a file to cups it sets up a chain of
filter programs that converts the file to something a printer understands.
Each filter has a cost associated with it and cups tries to find the
cheapest chain. Costs used to be configured in such a way that files were
first converted to PostScript. This could then be manipulated further (e.g.
putting multiple pages on one sheet) before finally being sent to a
PostScript printer or another filter like pstoraster which produces a raster
format understood by non-PostScript printer drivers. Nowadays most filters
have been moved from cups to cups-filters and they have been configured to
use PDF as an intermediate format instead of PostScript.
Merging of cups-base, cups-client and cups-image into print/cups:
- cups-image provides a library to work with the cups raster format. It is
only used to implement filters and printer drivers and these only exist
in the context of a cups server so there's no need to separate this from
cups-base.
- cups-client provides a library that allows applications to print via cups.
It is possible to use the library to access a remote cups server without
running a local cups server, but such a setup is discouraged and the
configuration file to set this up has been marked deprecated. It is
better to run a local cups server and let that talk to the remote cups
server because then you have the benefits of local job queuing in case the
remote server is down or busy. Given this and the fact that without
filters cups-base is now smaller than it used to be it makes sense to
merge the ports. The patch also adds options IPPTOOL, DOCS and NLS which
when disabled make the new cups package smaller than the current
cups-client package. Merging the ports also prevents problems with
options like ZEROCONF being configured differently in both ports.
- print/cups was a metaport that depended on cups-base and some filters.
There isn't really a need for such a metaport so cups-base can be renamed
to cups. The filters can be depended on by printer drivers such as hplip
if they need them.
Additional changes to the new print/cups:
- Clean up the patches. They seem to have been regenerated with post-patch
changes included.
- Add a patch to prevent intermediate conversion to PDF when a PostScript
file is sent to a PostScript printer when cups-filters is installed.
- Fix the PAM configuration file.
- Add a patch to let the server search /usr/local/share/ppd like on Linux so
other ports don't have to add links to it.
- Remove ulpt(4) helper scripts. The port uses libusb with ugen(4).
- Remove support for mDNSResponder. cups-filters only supports Avahi.
- Combine ICONS and XDG_OPEN options into an X11 option to support WITHOUT_X11.
- Optionally depend on colord for ICC profile support.
- Various smaller changes.
Changes to print/cups-filters:
- Let the cups_browsed rc.d script depend on cupsd and avahi_daemon instead
of LOGIN.
- Development of foomatic-filters has been moved to cups-filters so let this
port install foomatic related files and add foomatic-filters to CONFLICTS.
- Fix location of liblouis tables.
- Add patch to fix ICC support.
Changes to print/cups-pstoraster:
This port is essentially an old version of Ghostscript plus a cups filter.
It's no longer developed. This commit removes it and changes existing
dependencies to print/cups-filters which depends on print/ghostscript* and
includes a gstoraster filter that can handle both PostScript and PDF.
Changes to print/foomatic-db*:
Remove old MASTER_SITES and dependencies and eliminate PKGNAMEPREFIX.
Changes to print/foomatic-filters:
Install beh backend with its original name again and add cups-filters to
CONFLICTS.
Changes to print/hplip:
- Stop installing hpijs/foomatic-rip support. This is no longer supported
upstream.
- Stop installing hpcups PPDs. These are now automatically generated. The
bundled PPDs are generated for an older version of cups.
- Rename the QT option to X11 to support WITHOUT_X11.
- Simplify the patches now that ports are installed in a staging area.
- Add a patch to set SO_REUSEPORT (next to SO_REUSEADDR) on the mDNS socket
like avahi-daemon does. This fixes Zeroconf support for HP network
printers.
PR: 207746
Exp-run by: antoine
Approved by: portmgr (antoine)
Notes:
svn path=/head/; revision=410825
|
|
|
|
|
|
|
|
|
| |
- Use Apache Ant 1.9.6 to build.
MFH: 2016Q1
Notes:
svn path=/head/; revision=407245
|
|
|
|
|
|
|
|
| |
Noticed by: ohauer
MFH: 2015Q4
Notes:
svn path=/head/; revision=401961
|
|
|
|
|
|
|
| |
MFH: 2015Q4
Notes:
svn path=/head/; revision=401795
|
|
|
|
|
|
|
|
|
| |
- Fix default core file location in crash report.
MFH: 2015Q3
Notes:
svn path=/head/; revision=393281
|
|
|
|
|
|
|
| |
MFH: 2015Q3
Notes:
svn path=/head/; revision=391178
|
|
|
|
|
|
|
| |
- Optimize fontconfig.properties.
Notes:
svn path=/head/; revision=390990
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=387021
|
|
|
|
|
|
|
|
|
|
| |
http://bugs.java.com/bugdatabase/view_bug.do?bug_id=7154517
Obtained from: OpenJDK project [1]
MFH: 2015Q2
Notes:
svn path=/head/; revision=386893
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=386312
|
|
|
|
| |
Notes:
svn path=/head/; revision=382176
|
|
|
|
| |
Notes:
svn path=/head/; revision=382173
|
|
|
|
| |
Notes:
svn path=/head/; revision=382061
|
|
|
|
|
|
|
|
|
| |
pkg-install
to a package name, as the former can't be attributed to a package
Notes:
svn path=/head/; revision=377795
|
|
|
|
| |
Notes:
svn path=/head/; revision=377775
|
|
|
|
|
|
|
| |
With hat: portmgr
Notes:
svn path=/head/; revision=375862
|
|
|
|
| |
Notes:
svn path=/head/; revision=374824
|
|
|
|
|
|
|
|
|
|
|
| |
https://bugs.openjdk.java.net/browse/JDK-8041620
Note this is an attempt to fix build with upcoming Clang 3.5.
Obtained from: jdk9
Notes:
svn path=/head/; revision=374780
|
|
|
|
|
|
|
|
|
|
|
|
| |
is being removed. No portrev bump needed since the kernel will continue to
accept this flag for old binaries even after support for it in new binaries
is removed.
PR: 193961
Approved by: portmgr (antoine)
Notes:
svn path=/head/; revision=371117
|
|
|
|
|
|
|
| |
- Update TimeZoneNames to tzdata2014g.
Notes:
svn path=/head/; revision=371027
|
|
|
|
|
|
|
|
| |
- Update TimeZoneNames to tzdata2014b.
- Enlist openjdk6 users as testers of ant 1.9.4.
Notes:
svn path=/head/; revision=362118
|
|
|
|
|
|
|
|
|
|
|
| |
fixes a test case in the following Apache Solr bug report.
https://issues.apache.org/jira/browse/SOLR-6204
Reported by: Dawid Weiss <dawid.weiss@gmail.com>
Notes:
svn path=/head/; revision=359595
|
|
|
|
|
|
|
|
|
|
| |
Please note that lots of invocation of MAKE_CMD here are wrong as they do not
properly respect MAKE_ENV and friends
With hat: portmgr
Notes:
svn path=/head/; revision=359185
|
|
|
|
| |
Notes:
svn path=/head/; revision=357294
|
|
|
|
| |
Notes:
svn path=/head/; revision=356867
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to print a generated PostScript file. When lpd(8) is used, lpr(1) from base
must be used. Also, status command for lpc(8) requires a printer name. If
no argument is specified, i.e., "/usr/sbin/lpc status", then it displays the
command usage, i.e., "usage: status {all | printer ...}". Unfortunately,
"usage" is interpreted as a printer name because ":" is included. Add "all"
and adjust an expression for grep(1).
PR: ports/178856
Notes:
svn path=/head/; revision=354759
|