non port: print/cups-base/Makefile |
Number of commits found: 234 (showing only 100 on this page) |
Sunday, 14 Feb 2016
|
05:35 pi
print/cups-base: bump port revision
PR: 190434
Pointy hat to: pi
|
05:34 pi
print/cups-base: revert change for ICONS option
- This does not really solve the problem
PR: 190434
Pointy hat to: pi
|
Saturday, 13 Feb 2016
|
22:35 pi
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
|
Monday, 17 Aug 2015
|
14:20 mat
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
|
Monday, 22 Jun 2015
|
18:33 antoine
Convert to USES=jpeg
|
Friday, 12 Jun 2015
|
18:08 antoine
Attempt to fix runtime on FreeBSD 10
Reported by: pkg-fallout
|
Thursday, 11 Jun 2015
|
12:06 girgen
Add missing iconv library.
PR: 200755
|
Wednesday, 10 Jun 2015
|
05:33 delphij
Add a missing file to plist when Avahi is selected.
|
00:43 jkim
CUPS 2.x does not support OpenSSL any more. Switch to GNU TLS by default.
MFH: 2015Q2
|
Tuesday, 9 Jun 2015
|
22:15 delphij
Security update to 2.0.3.
|
Sunday, 17 May 2015
|
13:14 amdmi3
- Add CPE info
Approved by: portmgr blanket
|
Tuesday, 24 Mar 2015
|
22:17 marino
3 ports categories: Remove $PTHREAD_LIBS
Categories: print, science, emulators
approved by: PTHREAD blanket
|
Sunday, 4 Jan 2015
|
13:50 bsam
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>
|
Friday, 2 Jan 2015
|
18:46 pi
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)
|
Thursday, 25 Dec 2014
|
20:54 bapt
Bump portrevision after png update
|
19:04 antoine
Change libpng15.so to libpng.so in LIB_DEPENDS to prepare the upgrade
|
Friday, 28 Nov 2014
|
11:51 marino
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)
|
Thursday, 27 Nov 2014
|
19:05 amdmi3
Properly strip libraries in cups-base, cups-client and cups-image ports
|
Friday, 7 Nov 2014
|
13:03 tijl
- 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]
|
Friday, 24 Oct 2014
|
16:43 mva
- Convert ports of news/ and print/ to new USES=python
Approved by: portmgr (implicit)
|
Sunday, 17 Aug 2014
|
10:05 tijl
DOCS isn't optional. The files provide the cups web interface.
|
Wednesday, 30 Jul 2014
|
03:57 pi
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)
|
Monday, 28 Jul 2014
|
19:22 marino
print/cups-base: Don't use avahi when MDNSRESPONDER option is selected
PR: 191619
Submitted by: Don Lewis
Approval: Not required; port is unmaintained
|
Wednesday, 23 Jul 2014
|
09:54 tijl
- 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)
|
Tuesday, 1 Jul 2014
|
19:15 jhale
- 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
|
Friday, 20 Jun 2014
|
11:15 amdmi3
- Switch print/libpaper to USES=libtool, drop .la files
- Bump dependent ports as .so version has changed
Approved by: portmgr blanket
|
Wednesday, 11 Jun 2014
|
14:50 tijl
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)
|
Thursday, 22 May 2014
|
12:40 bsam
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]
|
Monday, 19 May 2014
|
19:09 pi
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)
|
Friday, 25 Apr 2014
|
19:31 bsam
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]
|
Wednesday, 23 Apr 2014
|
19:56 bsam
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).
|
Tuesday, 22 Apr 2014
|
19:32 bsam
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
|
Monday, 21 Apr 2014
|
01:14 bdrewery
- 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
|
Friday, 11 Apr 2014
|
14:00 bsam
A try (since I can't reproduce it at CURRENT) to fix "make index":
include USES+=compiler unconditionally.
Reported by: Poersnap buildbox
|
11:45 bsam
. fix cross-building; [1];
. refine comment.
Reported by: gjb [1]
Suggested by: bdrewery [1]
MFH: 2014Q2
|
Wednesday, 9 Apr 2014
|
00:56 gjb
Remove an unused configure flag.
configure: WARNING: unrecognized options: --disable-slp
Sponsored by: The FreeBSD Foundation
|
Tuesday, 8 Apr 2014
|
07:41 bsam
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
|
Friday, 4 Apr 2014
|
19:27 bsam
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
|
Sunday, 30 Mar 2014
|
21:16 bapt
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
|
Wednesday, 19 Feb 2014
|
13:19 tijl
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>
|
Sunday, 16 Feb 2014
|
21:17 bsam
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.
|
Wednesday, 5 Feb 2014
|
05:41 miwi
- Stage support part1 for client and image
Submitted by: antoine
|
Wednesday, 22 Jan 2014
|
23:37 mandree
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).
|
Monday, 9 Dec 2013
|
14:49 bsam
Guess I should take those ports...
|
Friday, 25 Oct 2013
|
13:31 sunpoet
- Use USES=gmake
|
Wednesday, 23 Oct 2013
|
20:45 ak
- Return ports to the pool
PR: ports/183244
Submitted by: Chris Petrik <c.petrik.sosa@gmail.com> (former maintainer)
|
Tuesday, 24 Sep 2013
|
22:53 madpilot
- Add explicit LDFLAGS for iconv
Submitted by: marino
Approved by: portmgr (bapt)
|
Friday, 20 Sep 2013
|
22:44 bapt
Add NO_STAGE all over the place in preparation for the staging support (cat:
print)
|
Friday, 9 Aug 2013
|
12:10 crees
Only cups-base INSTALLS_ICONS
Submitted by: Scott Allendorf <scott-allendorf@uiowa.edu>
|
Monday, 5 Aug 2013
|
10:32 crees
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)
|
Sunday, 2 Jun 2013
|
12:14 eadler
- 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)
|
Friday, 3 May 2013
|
16:36 ehaupt
Chase security/libgcrypt update
|
Monday, 29 Apr 2013
|
16:43 rene
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)
|
Saturday, 27 Apr 2013
|
18:25 mva
- 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
|
Tuesday, 23 Apr 2013
|
14:20 bapt
Finish converting the whole ports tree to USES=pkgconfig
|
Thursday, 7 Mar 2013
|
03:25 bdrewery
- 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
|
Tuesday, 5 Feb 2013
|
16:17 novel
- Add UPDATING entry for gnutls update
- Chase shlib version bump for dependant ports
|
Friday, 28 Dec 2012
|
15:42 pawel
Fix file installation when MDNSRESPONDER=on
PR: ports/174352 (based on)
Submitted by: Geraud CONTINSOUZAS <geraud@gcu.info>
|
Sunday, 9 Dec 2012
|
21:37 dinoex
- update to 1.5.4
|
Monday, 5 Nov 2012
|
20:10 dinoex
- drop maintainership
Feature safe: yes
|
Saturday, 13 Oct 2012
|
06:56 dinoex
- fix option XPDF
PR: 172579
Submitted by: Kris Moore
Feature safe: yes
- cleanup comments
|
Wednesday, 19 Sep 2012
|
15:34 dinoex
- use WITH_OPENSSL_HACK7
|
Wednesday, 22 Aug 2012
|
17:59 dinoex
- fix option PYTHON
PR: 170801
Submitted by: Artis Caune
|
Thursday, 26 Jul 2012
|
05:40 bapt
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)
|
Friday, 6 Jul 2012
|
08:55 dinoex
- fix option XPDF
PR: 169648
Submitted by: John Levine
|
Saturday, 30 Jun 2012
|
11:37 dinoex
- shorter desc for options
|
Monday, 11 Jun 2012
|
06:20 dinoex
- fix option GHOSTSCRIPT
- use LIBPAPER as default
|
06:02 dinoex
- use OPTIONS_DEFINE
|
Friday, 1 Jun 2012
|
05:26 dinoex
- update png to 1.5.10
|
Monday, 19 Mar 2012
|
18:21 dinoex
- rename broken option DNSSD to AVAHI
- new option MDNSRESPONDER
PR: 165206
Suggested by: Matthieu Volat
Feature safe: yes
|
Monday, 20 Feb 2012
|
05:51 dinoex
- fix build for FreeBSD 7.x
|
Friday, 17 Feb 2012
|
15:44 dinoex
- add USE_ICONV to cups-client
|
Monday, 13 Feb 2012
|
20:11 dinoex
- update to 1.5.2
PR: 164293
Submitted by: Eygene Ryabinkin
|
Wednesday, 19 Oct 2011
|
17:31 dinoex
- add some hooks
|
Wednesday, 5 Oct 2011
|
17:42 dinoex
- force build with same cups client installed
|
06:01 dinoex
- update to 1.5.0
- unbreak option WITH_GNUTLS
|
Friday, 23 Sep 2011
|
22:26 amdmi3
- 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
|
Monday, 29 Aug 2011
|
05:33 dinoex
- better wording of BROKEN
Submitted by: crees
|
Thursday, 25 Aug 2011
|
14:54 dinoex
- add BROKEN fro option GNUTLS
|
14:53 dinoex
- better wording of GNUTLS option
Submitted by: mandree
|
05:19 dinoex
- update to 1.4.8
- option GNUTLS default off
Security: http://www.cups.org/str.php?L3914
|
Sunday, 5 Jun 2011
|
18:43 novel
Chase security/gnutls update and add an UPDATING entry.
|
Thursday, 12 May 2011
|
11:25 dinoex
- bump PORTREVISION
Reported by: Sunpoet Po-Chuan Hsieh
|
Wednesday, 11 May 2011
|
18:15 dinoex
PR: 156866
Submitted by: Alex Deiter
|
Thursday, 17 Mar 2011
|
20:05 pav
- Bump PORTREVISION to advertise recent plist fix
Reported by: pointyhat
|
Monday, 7 Mar 2011
|
20:49 dinoex
- fix build with lang/gcc45
PR: 155334
Submitted by: Ron MacNeil
|
20:43 dinoex
- preserve modified etc/pam.d/cups
PR: 155218
Sumbitted by: mm
|
Sunday, 20 Feb 2011
|
21:49 dinoex
- add lpr-cups
Suggested by: avilla
|
Sunday, 13 Feb 2011
|
12:49 dinoex
- fix unexistent PAM module
PR: 154361
Submitted by: Daisuke Ban
Feature safe: yes
|
Friday, 7 Jan 2011
|
21:24 dinoex
- better devd scripts
PR: 150891
Submitted by: Garrett Wollman
- udpate to 1.4.6
|
Saturday, 27 Nov 2010
|
09:06 dinoex
- add BROKEN
PR: 152388
Submitted by: Doug Barton
|
Friday, 19 Nov 2010
|
07:22 dinoex
- fix pam module
PR: 148816
Submitted by: O. Hartmann
|
Monday, 15 Nov 2010
|
09:06 dinoex
- add LICENSE
|
06:31 dinoex
- Security update to 1.4.5
Security: CVE-2010-2941
Security: http://www.cups.org/str.php?L3648
|
06:30 dinoex
- fix options by forcing UNIQUENAME
PR: 150309
Submitted by: Marcin Wisnicki
|
Saturday, 25 Sep 2010
|
15:08 dinoex
- revert patch
PR: 150309
|
Tuesday, 7 Sep 2010
|
19:35 dinoex
- fix options by forcing UNIQUENAME
PR: 150309
Submitted by: Marcin Wisnicki
|
Tuesday, 27 Jul 2010
|
13:18 dinoex
- update to 1.4.4
|
Saturday, 19 Jun 2010
|
04:09 dinoex
- 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
|
Saturday, 5 Jun 2010
|
19:53 dinoex
LICENSE GPLv2
|
Number of commits found: 234 (showing only 100 on this page) |