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) combination for a given watch list. This is what FreshPorts will look for.

non port: print/cups-base/Makefile

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

1 | 2 | 3  »  

Sunday, 14 Feb 2016
05:35 pi search for other commits by this committer
print/cups-base: bump port revision

PR:		190434
Pointy hat to:	pi
Original commitRevision:408846 
05:34 pi search for other commits by this committer
print/cups-base: revert change for ICONS option

- This does not really solve the problem

PR:		190434
Pointy hat to:	pi
Original commitRevision:408845 
Saturday, 13 Feb 2016
22:35 pi search for other commits by this committer
print/cups-base: rename ICONS option to X11

Why this change ?
- When compiling print/cups-base, if WITHOUT_X11=yes is present in
  /etc/make.conf, CUPS still tries to update the "Icons cache".
- For this, it tries to build graphics/gtk-update-icon-cache,
  which in turns requires graphics/cairo, but Cairo builds without
  X11 support as requested, and graphics/gtk-update-icon-cache
  fails to build because it needs X11.

PR:		190434
Submitted by:	Tobias Kortkamp <t@tobik.me>
Reported by:	hjf@hjf.com.ar
Original commitRevision:408833 
Monday, 17 Aug 2015
14:20 mat search for other commits by this committer
Remove UNIQUENAME and LATEST_LINK.

UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.

Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.

Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)

Reviewed by:	antoine, bapt
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D3336
Original commitRevision:394508 
Monday, 22 Jun 2015
18:33 antoine search for other commits by this committer
Convert to USES=jpeg
Original commitRevision:390310 
Friday, 12 Jun 2015
18:08 antoine search for other commits by this committer
Attempt to fix runtime on FreeBSD 10

Reported by:	pkg-fallout
Original commitRevision:389291 
Thursday, 11 Jun 2015
12:06 girgen search for other commits by this committer
Add missing iconv library.

PR:	200755
Original commitRevision:389195 
Wednesday, 10 Jun 2015
05:33 delphij search for other commits by this committer
Add a missing file to plist when Avahi is selected.
Original commitRevision:389020 
00:43 jkim search for other commits by this committer
CUPS 2.x does not support OpenSSL any more.  Switch to GNU TLS by default.

MFH:		2015Q2
Original commitRevision:389015 
Tuesday, 9 Jun 2015
22:15 delphij search for other commits by this committer
Security update to 2.0.3.
Original commitRevision:389006 
Sunday, 17 May 2015
13:14 amdmi3 search for other commits by this committer
- Add CPE info

Approved by:	portmgr blanket
Original commitRevision:386611 
Tuesday, 24 Mar 2015
22:17 marino search for other commits by this committer
3 ports categories: Remove $PTHREAD_LIBS

Categories: print, science, emulators

approved by:	PTHREAD blanket
Original commitRevision:382185 
Sunday, 4 Jan 2015
13:50 bsam search for other commits by this committer
print/cups-client via print/cups-base: treat avahi/dnssd explicitely

1. The port's configure script is auto-detecting if avahi exists
(unless avahi is explicitely disabled):
---
   9096 if test "x$PKGCONFIG" != x -a x$enable_avahi != xno; then
   9097         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Avahi" >&5
   9098 $as_echo_n "checking for Avahi... " >&6; }
   9099         if $PKGCONFIG --exists avahi-client; then
   9100                 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes"
>&5
   9101 $as_echo "yes" >&6; }
---

So if avahi-lib is installed one get config.log:
---
configure:9097: checking for Avahi
configure:9100: result: yes
[...]
#define HAVE_AVAHI 1
---

And later avahi is used while building:
---
Using LIBS=-lcups  -lssl -lcrypto -L/usr/local/lib -lavahi-common -lavahi-client
  -lz -pthread -lm -lcrypt   -lz
---

Then print/cups-client installs libraries which are linked with avahi, ex.:
---
% ldd libcups.so | grep avahi
        libavahi-common.so.3 => /usr/local/lib/libavahi-common.so.3
(0x801cda000)
        libavahi-client.so.3 => /usr/local/lib/libavahi-client.so.3
(0x801ee6000)
---

Which leads to print/cups-base build failure (even if avahi is unset by
options):
---
Linking ippserver...
cc -L../cgi-bin -L../cups -L../filter -L../ppdc -L../scheduler -L/usr/local/lib
-Wl,-rpath,/usr/lib:/usr/local/lib -fstack-protector -Wl,-R/usr/local/lib  
-Wall -Wno-format-y2k -Wunused -fPIC -Os -g -fstack-protector
-Wno-tautological-compare -o ippserver ippserver.o  ../cups/libcups.a \
         -lssl -lcrypto -ldns_sd -pthread -lm -lcrypt   -lz -lz
../cups/libcups.a(http-support.o): In function `_httpResolveURI':
---

Let's reflect this fact.

2. Bump PORTREVISION for print/cups-client, it's default options and
dependencies
were changed.

PR:		ports/195743
Submitted by:	O. Hartmann <ohartman@zedat.fu-berlin.de>
Discussed at:	ports@
Tested by:	O. Hartmann <ohartman@zedat.fu-berlin.de>
Original commitRevision:376233 
Friday, 2 Jan 2015
18:46 pi search for other commits by this committer
security/libgcrypt: 1.6.1 -> 1.6.2, bump depends

Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
  with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
  error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code.  Take
	care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in
- Fix building for the x32 target without asm modules in
  mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI.
- Fix ARM assembly when building __PIC__
- mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit.
  * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear
    allocated but not used bits before resizing.
  * tests/t-mpi-bits.c (set_bit_with_resize): New.
- Use internal malloc function in fips.c.
  * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
- pubkey: Re-map all deprecated RSA algo numbers.
- cipher: Fix possible NULL dereference in cipher/md.c for being NULL.
- Fix ARMv6 detection when CFLAGS modify target CPU architecture.

PR:		193264
Approved by:	cpm@fbsd.es (maintainer)
Original commitRevision:376062 
Thursday, 25 Dec 2014
20:54 bapt search for other commits by this committer
Bump portrevision after png update
Original commitRevision:375598 
19:04 antoine search for other commits by this committer
Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade
Original commitRevision:375594 
Friday, 28 Nov 2014
11:51 marino search for other commits by this committer
print/cups-base: Fix build when PAM option is enabled

The @sample keyword fixes the config file based error.  While here,
clean refactor the port a bit.

PR:		194854
Submitted by:	Adrian Waters
Final fix by:	Takefu (airport.fm)
Original commitRevision:373559 
Thursday, 27 Nov 2014
19:05 amdmi3 search for other commits by this committer
Properly strip libraries in cups-base, cups-client and cups-image ports
Original commitRevision:373513 
Friday, 7 Nov 2014
13:03 tijl search for other commits by this committer
- Let the rc script require the mdnsd or avahi_daemon rc scripts [1]
- Fix two getsockopt calls so they return peer credentials correctly [2]

PR:		194856 [1], 191515 [2]
Submitted by:	Adrian Waters <draenan@gmail.com> [1]
Submitted by:	Bengt Ahlgren <bengta@sics.se> [2]
Original commitRevision:372260 
Friday, 24 Oct 2014
16:43 mva search for other commits by this committer
- Convert ports of news/ and print/ to new USES=python

Approved by: portmgr (implicit)
Original commitRevision:371452 
Sunday, 17 Aug 2014
10:05 tijl search for other commits by this committer
DOCS isn't optional.  The files provide the cups web interface.
Original commitRevision:365165 
Wednesday, 30 Jul 2014
03:57 pi search for other commits by this committer
security/libgcrypt: 1.5.3_3 -> 1.6.1

- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
  https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
  https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
  security/shishi with PR 192164 is already committed
  [1] devel/ccrtp
  [2] editors/abiword
  [3] security/p5-Crypt-GCrypt

PR:		191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by:	Carlos Jacobo Puga Medina <cjpugmed@gmail.com>
Approved by:	maintainer timeout, antoine (exp-run), portmgr (implicit)
Original commitRevision:363436 
Monday, 28 Jul 2014
19:22 marino search for other commits by this committer
print/cups-base: Don't use avahi when MDNSRESPONDER option is selected

PR:		191619
Submitted by:	Don Lewis
Approval:	Not required; port is unmaintained
Original commitRevision:363233 
Wednesday, 23 Jul 2014
09:54 tijl search for other commits by this committer
- Replace security/gnutls with security/gnutls3 and update to 3.2.15
- Bump PORTREVISION on all ports that depend on security/gnutls and
  adjust all ports that depend on security/gnutls3
- Update mail/anubis to version 4.2 which supports gnutls 3.x
- Update mail/libvmime to a development snapshot (recommended by upstream
  developers)

PR:		191274
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:362645 
Tuesday, 1 Jul 2014
19:15 jhale search for other commits by this committer
- Update to 1.7.3
- Add DOCS option
- PHP option no longer installs a PHP module (it was eliminated in 1.6)
- Add options for other interpreters
- Add OPENSSL option to make it clearer that it is enabled instead of GNUTLS
- Fix build when ZEROCONF is disabled
- Fix detection of libusb on FreeBSD < 10 as they do not have .pc files for it
- Use @sample directive in pkg-plist
- Remove some old cruft
Original commitRevision:360086 
Friday, 20 Jun 2014
11:15 amdmi3 search for other commits by this committer
- Switch print/libpaper to USES=libtool, drop .la files
- Bump dependent ports as .so version has changed

Approved by:	portmgr blanket
Original commitRevision:358556 
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 
Thursday, 22 May 2014
12:40 bsam search for other commits by this committer
print/cups-base: remove files/cups_browsed.in, it does not belong here

. remove using cups_browsed.in;  [1]
. bump PORTREVISION.

PR:		ports/190085  [1]
Submitted by:	Fafael Ostertag <rafi@guengel.ch>  [1]
Original commitRevision:354831 
Monday, 19 May 2014
19:09 pi search for other commits by this committer
print/cups-base: unbreak AVAHI option and add missing rc script

- Add missing rc script for cups-browsed [1]
- Enable building CUPS with native Avahi backend [2]
- Disable AVAHI if not selected [3]

PR:             ports/188550 [1],
                ports/189757 [2],
                ports/188751 [3]
Submitted by:   Rafael Ostertag <rafi@guengel.ch> [1],
                Raivo Hool <raivo.hool@gmail.com> [2],
                Dan Lukes <dan@obluda.cz> [3]
Approved by:    culot (mentor)
Original commitRevision:354583 
Friday, 25 Apr 2014
19:31 bsam search for other commits by this committer
print/cups-base: add an options ICONS to install desktop icons

When unchecked this option greatly reduces the package depends list  [1]
(from 82 to 42).

Defaults to "on" for ordinary package users sake.

Submitted by:	Hilko Meyer <Hilko.Meyer@gmx.de>  [1]
Original commitRevision:352145 
Wednesday, 23 Apr 2014
19:56 bsam search for other commits by this committer
print/cups{,-base,-client,-image}: update to version 1.7.2

MDNSRESPONDER id now the default option for print/cups-base
(can't be compiled without dnssd).
Original commitRevision:351968 
Tuesday, 22 Apr 2014
19:32 bsam search for other commits by this committer
print/cups-base: remove BLOCKS detection from cups/cups.h

It appears to be the best option here, i.e. just remove BLOCKS
detection from cups/cups.h: there are some other ports which
use cups/cups.h and get broken by a BLOCKS detection. So:
. patch cups/cups.h to remove the offending code;
. remove traces of previous attempts to fix cups-* ports;
. bump PORTREVISION;
. at PORTNAME block add a note that PORTREVISION is defined
  later for all ports.

Discussed at:	freebsd-ports
Suggested by:	tijl
MFH:		2014Q2
Original commitRevision:351878 
Monday, 21 Apr 2014
01:14 bdrewery search for other commits by this committer
- Fix plist to have proper 'rmdir DIR' ordering.
  Pkgng will not detect the directory otherwise. This was due to
  incorrectly advise in the check-stagedir.sh script, fixed in
  r351587

With hat:	portmgr
Original commitRevision:351663 
Friday, 11 Apr 2014
14:00 bsam search for other commits by this committer
A try (since I can't reproduce it at CURRENT) to fix "make index":
include USES+=compiler unconditionally.

Reported by:	Poersnap buildbox
Original commitRevision:350953 
11:45 bsam search for other commits by this committer
. fix cross-building;  [1];
. refine comment.

Reported by:	gjb [1]
Suggested by:	bdrewery [1]
MFH:		2014Q2
Original commitRevision:350926 
Wednesday, 9 Apr 2014
00:56 gjb search for other commits by this committer
Remove an unused configure flag.
configure: WARNING: unrecognized options: --disable-slp

Sponsored by:	The FreeBSD Foundation
Original commitRevision:350654 
Tuesday, 8 Apr 2014
07:41 bsam search for other commits by this committer
print/cups-base: add CFLAGS+=-fno-blocks to print/cups-image at gcc systems

In additiond to print/cups-client (r350154):
Use CFLAGS+=-fno-blocks to unbreak systems with default gcc compiler.
This is a band-aid that should be reworked for systems with blocks
and libdispatch support.

Reported by:	Anton Shterenlikht <mexas@bris.ac.uk>
Tested by:	Anton Shterenlikht <mexas@bris.ac.uk>
Discussed at:	freebsd-ports@
MVH:		2014Q2
Original commitRevision:350583 
Friday, 4 Apr 2014
19:27 bsam search for other commits by this committer
Use CFLAGS+=-fno-blocks to unbreak systems with default gcc compiler.
This is a band-aid that should be reworked for systems with blocks
and libdispatch support.

Reported by:	Anton Shterenlikht <mexas@bris.ac.uk>
Discussed at:	freebsd-ports@
MFH:		2014Q2
Original commitRevision:350154 
Sunday, 30 Mar 2014
21:16 bapt search for other commits by this committer
Update to cups to 1.7.1
- Stage all cups related ports
- Cleanup (it still needs more cleanup)

Base on [1]

PR:		ports/186824 [1]
Submitted by:	bsam
Original commitRevision:349679 
Wednesday, 19 Feb 2014
13:19 tijl search for other commits by this committer
Fix installation of cups-base when libiconv is installed: do not descend
into the cups subdirectory.  That directory is already installed by the
cups-client port and it requires USES=iconv.

Reported by:	Mark Knight <markk@knigma.org>
Original commitRevision:345090 
Sunday, 16 Feb 2014
21:17 bsam search for other commits by this committer
Release cups-* nad foomatic-* ports. Currently I have no enough
spare time for those ports.

I've submitted ports/186824 to update cups-* ports to version 1.7.0.
Original commitRevision:344633 
Wednesday, 5 Feb 2014
05:41 miwi search for other commits by this committer
- Stage support part1 for client and image

Submitted by:	antoine
Original commitRevision:342633 
Wednesday, 22 Jan 2014
23:37 mandree search for other commits by this committer
Update master sites for some ports formerly hosted on easysw.com, now extinct.

Remove easysw.com domain from MASTER_SITE_EASYSW, and drop tu-bs.de from mirror
list (is no longer mirroring easysw.com).
Original commitRevision:340749 
Monday, 9 Dec 2013
14:49 bsam search for other commits by this committer
Guess I should take those ports...
Original commitRevision:335993 
Friday, 25 Oct 2013
13:31 sunpoet search for other commits by this committer
- Use USES=gmake
Original commitRevision:331575 
Wednesday, 23 Oct 2013
20:45 ak search for other commits by this committer
- Return ports to the pool

PR:	ports/183244
Submitted by:	Chris Petrik <c.petrik.sosa@gmail.com> (former maintainer)
Original commitRevision:331423 
Tuesday, 24 Sep 2013
22:53 madpilot search for other commits by this committer
- Add explicit LDFLAGS for iconv

Submitted by:	marino
Approved by:	portmgr (bapt)
Original commitRevision:328212 
Friday, 20 Sep 2013
22:44 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
print)
Original commitRevision:327765 
Friday, 9 Aug 2013
12:10 crees search for other commits by this committer
Only cups-base INSTALLS_ICONS

Submitted by:	Scott Allendorf <scott-allendorf@uiowa.edu>
Original commitRevision:324428 
Monday, 5 Aug 2013
10:32 crees search for other commits by this committer
Fix reinstall

Correct IGNORE messages

INSTALLS_ICONS

PR:		ports/174815
Submitted by:	nemysis <nemysis@gmx.ch>
Approved by:	Chris Petrik <c.petrik.sosa@gmail.com> (maintainer)
Original commitRevision:324269 
Sunday, 2 Jun 2013
12:14 eadler search for other commits by this committer
- Fix typo w.r.t. XDG_OPEN option
- Add a a backported patch from cups 1.6 which fixes an issue with regard to a
timed out TCP connection. it should be
deleted once the port is updated to 1.6.
- Pet portlint a bit
- remove unused CONFLICTS line

PR:		178987
Submitted by:	"r4721@tormail.org" <r4721@tormail.org>
PR:		179194
Submitted by:	Sayetsky Anton <vsjcfm@gmail.com>
Approved by:	c.petrik.sosa@gmail.com (maintainer)
Original commitRevision:319651 
Friday, 3 May 2013
16:36 ehaupt search for other commits by this committer
Chase security/libgcrypt update
Original commitRevision:317220 
Monday, 29 Apr 2013
16:43 rene search for other commits by this committer
In preparation of removing devel/libusb (expires 2013-04-30), remove it
from these ports.

Other changes:
- convert Makefile header
- convert to optionsNG
- remove indefinite article from comment
- drop support for FreeBSD < 8.0
- pet portlint (leave library ABI versions in LIB_DEPENDS)
- net-mgmt/spectools: change option name from GTK to GTK2 to use default
  description from bsd.options.desc.mk

Approved by:	portmgr (bapt)
Original commitRevision:316831 
Saturday, 27 Apr 2013
18:25 mva search for other commits by this committer
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and
  USE_GETTEXT=yes to USES=gettext while here
Original commitRevision:316683 
Tuesday, 23 Apr 2013
14:20 bapt search for other commits by this committer
Finish converting the whole ports tree to USES=pkgconfig
Original commitRevision:316355 
Thursday, 7 Mar 2013
03:25 bdrewery search for other commits by this committer
- Please welcome back Chris Petrik as maintainer of
  these ports [1]
- Trim headers
- Remove indefinite article from COMMENT
- Convert tab to space in WWW lines

PR:		ports/175415 [1]
Submitted by:	Chris Petrik <c.petrik.sosa@gmail.com> [1]
Discussed with:	bapt
Original commitRevision:313559 
Tuesday, 5 Feb 2013
16:17 novel search for other commits by this committer
- Add UPDATING entry for gnutls update
- Chase shlib version bump for dependant ports
Original commitRevision:311722 
Friday, 28 Dec 2012
15:42 pawel search for other commits by this committer
Fix file installation when MDNSRESPONDER=on

PR:		ports/174352 (based on)
Submitted by:	Geraud CONTINSOUZAS <geraud@gcu.info>
Original commitRevision:309572 
Sunday, 9 Dec 2012
21:37 dinoex search for other commits by this committer
- update to 1.5.4
Original commitRevision:308569 
Monday, 5 Nov 2012
20:10 dinoex search for other commits by this committer
- drop maintainership
Feature safe: yes
Original commitRevision:307030 
Saturday, 13 Oct 2012
06:56 dinoex search for other commits by this committer
- fix option XPDF
PR:		172579
Submitted by:	Kris Moore
Feature safe: yes

- cleanup comments
Original commitRevision:305816 
Wednesday, 19 Sep 2012
15:34 dinoex search for other commits by this committer
- use WITH_OPENSSL_HACK7
Original commitRevision:304534 
Wednesday, 22 Aug 2012
17:59 dinoex search for other commits by this committer
- fix option PYTHON
PR:		170801
Submitted by:	Artis Caune
Original commit
Thursday, 26 Jul 2012
05:40 bapt search for other commits by this committer
new devel/pkgconf added to replace devel/pkg-config. new version of pkg-config
are no more self hosting so we are stuck with 0.25 version while pkgconf provide
the same set of features as 0.27 and a compatible frontend. A symlink to
pkg-config has been added for convenience and compatibility

This also introduces a new macro to use pkgconf in your ports:
USE_PKGCONFIG

it can take the following arguments:
 - yes (meaning build only dep)
 - build (meaning build only dep)
 - run (meaning run only dep)
 - both (meaning run and build dep)

From now USE_GNOME= pkgconfig is deprecated in favour of USE_PKGCONFIG
The old gnome macro has been modified to use pkgconf but still the sameway: run
and build dep to avoid large breakage.

While here fix some ports relying on pkg-config but not specifying it, fix some
ports broken because testing wrong .pc files, and fix ports using pkg-config
--version to determine pkg-config version instead of
pkg-config --modversion pkg-config like recommanded by pkg-config

With Hat:	portmgr
Exp-runs by:	bapt (pointhat-west), beat (pointyhat)
Original commit
Friday, 6 Jul 2012
08:55 dinoex search for other commits by this committer
- fix option XPDF
PR:             169648
Submitted by:   John Levine
Original commit
Saturday, 30 Jun 2012
11:37 dinoex search for other commits by this committer
- shorter desc for options
Original commit
Monday, 11 Jun 2012
06:20 dinoex search for other commits by this committer
- fix option GHOSTSCRIPT
- use LIBPAPER as default
Original commit
06:02 dinoex search for other commits by this committer
- use OPTIONS_DEFINE
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Monday, 19 Mar 2012
18:21 dinoex search for other commits by this committer
- rename broken option DNSSD to AVAHI
- new option MDNSRESPONDER
PR:             165206
Suggested by:   Matthieu Volat
Feature safe:   yes
Original commit
Monday, 20 Feb 2012
05:51 dinoex search for other commits by this committer
- fix build for FreeBSD 7.x
Original commit
Friday, 17 Feb 2012
15:44 dinoex search for other commits by this committer
- add USE_ICONV to cups-client
Original commit
Monday, 13 Feb 2012
20:11 dinoex search for other commits by this committer
- update to 1.5.2
PR:             164293
Submitted by:   Eygene Ryabinkin
Original commit
Wednesday, 19 Oct 2011
17:31 dinoex search for other commits by this committer
- add some hooks
Original commit
Wednesday, 5 Oct 2011
17:42 dinoex search for other commits by this committer
- force build with same cups client installed
Original commit
06:01 dinoex search for other commits by this committer
- update to 1.5.0
- unbreak option WITH_GNUTLS
Original commit
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
Monday, 29 Aug 2011
05:33 dinoex search for other commits by this committer
- better wording of BROKEN
Submitted by:   crees
Original commit
Thursday, 25 Aug 2011
14:54 dinoex search for other commits by this committer
- add BROKEN fro option GNUTLS
Original commit
14:53 dinoex search for other commits by this committer
- better wording of GNUTLS option
Submitted by:   mandree
Original commit
05:19 dinoex search for other commits by this committer
- update to 1.4.8
- option GNUTLS default off
Security: http://www.cups.org/str.php?L3914
Original commit
Sunday, 5 Jun 2011
18:43 novel search for other commits by this committer
Chase security/gnutls update and add an UPDATING entry.
Original commit
Thursday, 12 May 2011
11:25 dinoex search for other commits by this committer
- bump PORTREVISION
Reported by:    Sunpoet Po-Chuan Hsieh
Original commit
Wednesday, 11 May 2011
18:15 dinoex search for other commits by this committer
PR:             156866
Submitted by:   Alex Deiter
Original commit
Thursday, 17 Mar 2011
20:05 pav search for other commits by this committer
- Bump PORTREVISION to advertise recent plist fix

Reported by:    pointyhat
Original commit
Monday, 7 Mar 2011
20:49 dinoex search for other commits by this committer
- fix build with lang/gcc45
PR:             155334
Submitted by:   Ron MacNeil
Original commit
20:43 dinoex search for other commits by this committer
- preserve modified etc/pam.d/cups
PR:             155218
Sumbitted by:   mm
Original commit
Sunday, 20 Feb 2011
21:49 dinoex search for other commits by this committer
- add lpr-cups
Suggested by:   avilla
Original commit
Sunday, 13 Feb 2011
12:49 dinoex search for other commits by this committer
- fix unexistent PAM module
PR:     154361
Submitted by:   Daisuke Ban
Feature safe:   yes
Original commit
Friday, 7 Jan 2011
21:24 dinoex search for other commits by this committer
- better devd scripts
PR:             150891
Submitted by:   Garrett Wollman

- udpate to 1.4.6
Original commit
Saturday, 27 Nov 2010
09:06 dinoex search for other commits by this committer
- add BROKEN
PR:             152388
Submitted by:   Doug Barton
Original commit
Friday, 19 Nov 2010
07:22 dinoex search for other commits by this committer
- fix pam module
PR:             148816
Submitted by:   O. Hartmann
Original commit
Monday, 15 Nov 2010
09:06 dinoex search for other commits by this committer
- add LICENSE
Original commit
06:31 dinoex search for other commits by this committer
- Security update to 1.4.5
Security:       CVE-2010-2941
Security:       http://www.cups.org/str.php?L3648
Original commit
06:30 dinoex search for other commits by this committer
- fix options by forcing UNIQUENAME
PR:             150309
Submitted by:   Marcin Wisnicki
Original commit
Saturday, 25 Sep 2010
15:08 dinoex search for other commits by this committer
- revert patch
PR:             150309
Original commit
Tuesday, 7 Sep 2010
19:35 dinoex search for other commits by this committer
- fix options by forcing UNIQUENAME
PR:             150309
Submitted by:   Marcin Wisnicki
Original commit
Tuesday, 27 Jul 2010
13:18 dinoex search for other commits by this committer
- update to 1.4.4
Original commit
Saturday, 19 Jun 2010
04:09 dinoex search for other commits by this committer
- Security update to 1.4.4
- Security fix for deny of service vulnerability
Security: CVE-2009-3553
Security: CVE-2010-0302
PR:             147978
Approved by:    portmgr (erwin)
Feature safe:   yes
Original commit
Saturday, 5 Jun 2010
19:53 dinoex search for other commits by this committer
LICENSE GPLv2
Original commit

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

1 | 2 | 3  »