Commit graph

6653 commits

Author SHA1 Message Date
Hiroki Sato
118978bf4c Resurrect print/ghostscript7{,-commfont,-jpnfont,-korfont,-nox11}. 2014-11-23 06:14:21 +00:00
Danilo Egea Gondolfo
d33d406d5d - Fix an incorrect usage of stagedir. The program was looking for its files in
stagedir.

PR:		195109
Reported by:	Nils M. Holm <bsdbugs@t3x.org>
Tested by:	Nils M. Holm <bsdbugs@t3x.org>
MFH:		2014Q4
2014-11-18 13:49:58 +00:00
Baptiste Daroussin
91a1caa242 Reset miwi's maintainership per his demand
Hope to see you back! Thank for all the work!
2014-11-18 09:37:31 +00:00
Antoine Brodin
115aba45f3 Cleanup plist 2014-11-13 07:41:17 +00:00
Johannes Jost Meixner
80b6c31429 Upgrade CentOS to 6.6
- Upgrade all things linux-c6- to CentOS 6.6
- Add ports:
  devel/linux-c6-libsigc++20
  graphics/linux-c6-gdk-pixbuf [1]
  graphics/linux-c6-glx-utils
- Add pkg-plists for net/linux-c6-openldap
  and security/linux-c6-cyrus-sasl2
- Misc. cleanups

Differential Revision:	https://reviews.freebsd.org/D1108
Submitted by:	kmoore [1]
Reviewed by:	rene (emulation)
Approved by:	portmgr (swills)
Approved by:	swills (mentor)
Sponsored by:	Perceivon Hosting Inc.
2014-11-11 13:06:39 +00:00
Tijl Coosemans
7888e65fff - 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]
2014-11-07 13:03:09 +00:00
John Marino
abe5c774d3 print/foomatic-db-engine: Not jobs safe
Some times man page isn't ready before installing starts.
2014-11-07 08:14:25 +00:00
Alex Kozlov
22e20c2aa1 - Remove a few remaining $Id$ from pkg-plists
Approved by:	portmgr (mat)
2014-11-06 16:30:27 +00:00
Ashish SHUKLA
85f56adb6e - Chase GNU Emacs updates
PR:		194624
2014-11-05 13:19:31 +00:00
Raphael Kubo da Costa
a9662ed949 Update Qt5 ports to 5.3.2.
Proudly presented by the KDE on FreeBSD team, with several guest stars.

This update took way longer than initially expected due to us previously
accumulating assumptions and changes to Qt's build system that finally bit
us back with the 5.3 release series, so we had to do a fair amount of
cleanup.

New ports:
- comms/qt5-serialport: Qt functions to access serial ports, originally
                        based on work by Fernando Apesteguia. [1]
- devel/qt5-qdoc: Qt documentation generator, the Qt5 equivalent of
                  devel/qt4-qdoc3. Originally worked on by Tobias Berner.
                  It had already been half-split from devel/qt5-buildtools,
                  we just needed to finish the work.

Dead ports:
- devel/qt5-qmldevtools: Merged into lang/qt5-qml.

Minor changes:
- devel/qt5: Add x11/qt5-x11extras and the new ports to the dependency list.
- graphics/qt5-imageformats: The port now supports the JPEG2000, WEBP,
                             Direct Draw Surface and ICNS formats.
- multimedia/qt5-multimedia: The ALSA and PULSEAUDIO options are now
                             mutually exclusive due to changes introduced in
                             Qt 5.3.0 (the ALSA code is now a proper plugin
                             that is only built if PulseAudio is not used).
- x11/qt5-x11extras: Add USE_LDCONFIG since the port installs a shared
                     library.

The big changes:
- bsd.qt.mk: Set QMAKESPEC instead of QMAKEPATH. [3]
  QMAKEPATH does much more than we want now that we call qmake from the top
  of ${WRKSRC}. qmake uses QMAKEPATH when evaluating the QMAKE_MKSPECS
  property, which is in turn used by qt_config.pri to load the .pri files in
  mkspecs/modules.

  In practice, this means that if people have an older Qt installation those
  files will be used and QT_CONFIG will have values such as "gui" even if
  one is building a port like textproc/qt5-xml, which passes -no-gui to the
  configure script. Consequently, unintended code paths may be enabled or
  the configuration step can just fail if the .pro files expect values that
  are not present in the system-wide, older .pri files.

  We avoid all those problems if we use QMAKESPEC, as qmake does not take
  its value into account when evaluating the QMAKE_MKSPECS property and will
  only parse the files in the mkspec's directory (mkspecs/freebsd-clang, for
  example, instead of all the files in mkspecs).

- Stop explicitly passing ${LOCALBASE} to the compiler. [3]
  qmake's behavior has changed in Qt 5, and the paths set in QMAKE_INCDIR
  and QMAKE_LIBDIR in the mkspecs are passed before any others, such as the
  ones in the build directory themselves.

  In practice, this means that we end up with linker calls like this:

  c++ -o libfoo.so foo.o bar.o -L/usr/local/lib -L/wrkdir/build/lib
      -lQt5Gui -lQt5Core

  So if one already has Qt installed in the system, the older, already
  present version of the libraries in /usr/local/lib will be used instead of
  the newly-built ones in /wrkdir/build/lib.

  QTBUG-40825 discusses this behavior upstream, but there has been no
  agreement on a solution yet.

  For now, the solution adopted is to make the compiler and the linker aware
  of those paths but only try them last after all others, and this is
  achieved by setting the CPATH and LIBRARY_PATH environment variables when
  qmake is being used.

  In addition to setting them in CONFIGURE_ENV and MAKE_ENV, we also need to
  stop changing QMAKE_INCDIR and QMAKE_LIBDIR as well as filter those paths
  from the pkg-config calls qtbase's configure script makes.

- Call qmake from the root of the ${WRKSRC}.

  In Qt 5.3, Qt's build infrastructure has undergone some changes that make
  our previous approach of calling qmake from the directories we want to
  build stop working. Things would break even more in Qt 5.4, in which
  qtbase's configure script does not accept the -process, -fully-process and
  -dont-process arguments anymore (it always behaves as if -process had been
  used).

  Bite the bullet and start calling qmake from ${WRKSRC}. The largest part of
  this change involves changing lines in Makefiles from
    WRKSRC_SUBDIR=	foo/bar
  to
    BUILD_WRKSRC=		${WRKSRC}/foo/bar
    INSTALL_WRKSRC=		${WRKSRC}/foo/bar
  as well as adding patches to .pro files to avoid entering other
  subdirectories and removing post-configure targets that are not necessary
  anymore.

  Since qmake needs to be called from the top of ${WRKSRC} anyway, we can
  also simplify the configuration process for the qtbase ports a little.
  Looking at r10019 it is not clear why we started calling qmake in the
  pre-configure target in addition to the post-configure one (while also
  skipping it in do-configure), but we can now drop this call since letting
  configure behave as if -process had been passed means it will call qmake
  on its own and overwrite the files generated by the pre-configure call. We
  still need to call qmake in post-configure though, as the configure script
  does not pass -recursive when calling qmake and we need to be able to call
  make from any subdirectory when building.

PR:		194762 [1]
PR:		194566 # exp-run with base GCC and clang
PR:		194088 [3]
2014-11-05 09:39:21 +00:00
Hiroki Sato
118aac5596 Fix build with old make.
Reported by:	Scott Allendorf
2014-11-03 22:06:22 +00:00
Hiroki Sato
065e33f3e8 Update to 11.88. 2014-11-03 14:50:20 +00:00
Hiroki Sato
d5acd8954a Fix a warning message when \usepackage[magyar]{babel} and utf8 inputenc
are used at the same time.

PR:		194349
Submitted by:	Zsolt Udvari
2014-11-02 20:49:59 +00:00
Bartek Rutkowski
51f8d8562a print/hp2xx: multiple fixes
- Fix building on -CURRENT
- Add LICENSE
- Pet portlint

PR:		194500
Submitted by:	Kato Tsuguru <tkato432@yahoo.com>
Approved by:	mentors (implicit)
2014-11-02 14:24:07 +00:00
Antoine Brodin
0c42c7cae7 Allow building with bison 3
PR:		ports/194680
2014-11-02 08:23:37 +00:00
Max Brazhnikov
6fe5cdb342 print/hplip-plugin:
- Update MASTER_SITES to fix fetch
- Clean up plist from @dirrm

Reported by:	pkg-fallout
MFH:		2014Q4
2014-10-31 09:58:31 +00:00
Antoine Brodin
081d17467e Allow stripping as a regular user 2014-10-25 11:30:11 +00:00
Marcus von Appen
d45fbf3040 - Convert ports of news/ and print/ to new USES=python
Approved by: portmgr (implicit)
2014-10-24 16:42:59 +00:00
Raphael Kubo da Costa
990a62701e Remove @dirrm and @dirrmtry entries from the Qt ports. 2014-10-23 21:35:14 +00:00
John Marino
15dccb3a0d Add USES=alias to several ports
Alias is a new USES tool that allows DragonFly to masquerade as FreeBSD
by setting CFLAGS+= -D__FreeBSD__.  For some ports, this fixes the build
without the need for additional patches.

Approved by:	portmgr (bapt, blanket)
2014-10-20 10:09:19 +00:00
Max Brazhnikov
0ea52f99b4 KDE/FreeBSD team presents KDE SC 4.14.2 and KDE Workspace 4.11.13!
USE_KDE4=kdehier component has been deprecated, new components added:
 baloo			- Baloo core libraries
 baloo-widgets		- Baloo widgets library
 kfilemetadata		- KDE library for extracting file metadata

New ports:
  graphics/kqtquickcharts	- QtQuick plugin to render interactive charts
  misc/artikulate		- Pronunciation trainer for KDE
				(not usable currently, links to both
				GStreamer 1.x and 0.10.x via dependencies)
  sysutils/baloo[-widgets]	- KDE framework for searching and
				managing user metadata
  sysutils/kfilemetadata	- Library for extracting file metadata

l10n ports:
- Farsi (Persian) and Indonesian translations has been readded
- Vietnamese didn't pass threshold for inclusion into release

astro/kstars:
- switch dependency from math/eigen2 to math/eigen3
- add PYKDE option for updating supernovae data

deskutils/kdepim4:
- update dependencies: add libkgapi and baloo,
  remove now needless clucene, link-grammar, strigi
- add patch to fix build with gcc42
- update COMMENT and description for all KDE PIM ports

devel/ruby-krossruby:
- remove BROKEN, it builds with ruby 2.x now

editors/kate:
- add patch to disable memory-hungry build of the kate tests [1]

graphics/okular:
- add dependency on graphics/libkscreen

math/cantor:
- add optional dependency on lang/luajit for LuaJIT backend
- fix gfortran detection [2]

misc/kdehier4:
- adapt to new pkg world. Now the purpose of kdehier4 only
  to link some stuff between KDE4_PREFIX and LOCALBASE.

science/kalzium:
- switch dependency from math/eigen2 to math/eigen3
- add dependence on science/chemical-mime-data

x11-themes/kdeartwork4
- switch dependency from math/eigen2 to math/eigen3

among other changes:
- drop deprecated USE_KDE4=kdehier
- drop @dirrm from plist
- clean up pkg-descr
- convert to options helpers
- other portlint fixes

The area51 repository features commits by alonso, rakuco and myself.

PR:		187150 [1]
Reported by:	pe.freethread@live.com
Patch by:	Tobias Berner <tcberner@gmail.com>

PR:		180674 [2]
Reported by:	torsten.eichstaedt@web.de

PR:		194316
Exp-run:	antoine
2014-10-19 15:57:27 +00:00
Bartek Rutkowski
6bed4b9cff print/cups-filters: update 1.0.58 -> 1.0.61
- Fixes in pkg-plist

PR:		194172
Submitted by:	Naram Qashat <cyberbotx@cyberbotx.com>
Approved by:	mentors (implicit)
2014-10-17 13:24:46 +00:00
Baptiste Daroussin
f86f503095 libmspub01 replaces libmspub 2014-10-17 11:20:36 +00:00
Baptiste Daroussin
3d7e062d1a Update to 0.1.1 2014-10-17 11:19:04 +00:00
Dmitry Marakasov
88e291012c - Clarify LICENSE
- Add LICENSE_FILE
- Drop @dirrm* from plist
2014-10-14 11:09:32 +00:00
Alex Kozlov
803a90b661 - Switch MASTER_SITES to googledrive.com for my ports. 2014-10-14 08:59:35 +00:00
Kurt Jaeger
a519bf8eea print/muttprint:
- remove recently-added run_deps on print/texlive-full and print/tex-dvipsk
- change USE_TEX to the sufficient set of 'latex dvipsk'

Submitted by:	mat
Approved by:	Matthias Apitz <guru@unixarea.de> (maintainer)
2014-10-13 18:18:27 +00:00
Pietro Cerutti
7e933d9737 - Some demos need to be linked against libm.so
Approved by:	maintainer
2014-10-13 13:48:05 +00:00
William Grzybowski
665bdeccca print/hplip: switch from py-imaging to py-pillow
- USES python

With hat:	python
Approved by:	portmgr (bdrewery, implicit)
2014-10-12 15:35:19 +00:00
Kurt Jaeger
45d0014640 print/muttprint: add run_deps, change maintainer to submitter
Patch see
https://lists.freebsd.org/pipermail/freebsd-ports/2014-October/095916.html
- Submitter wants to be maintainer

Submitted by:	Matthias Apitz <guru@unixarea.de>
2014-10-11 11:50:13 +00:00
Alex Dupre
671f53dc3b Update to 1.8.7 release. 2014-10-08 09:19:04 +00:00
Baptiste Daroussin
5279b4ba31 Remove zlib from pc files 2014-10-07 13:33:25 +00:00
Baptiste Daroussin
bb5bb8d881 Fix fetching 2014-10-07 12:02:50 +00:00
Baptiste Daroussin
ea204d50b5 Import libmspub01
Ensure it does not conflicts with libmspub
2014-10-06 19:30:09 +00:00
William Grzybowski
4533d49124 print/pkpgcounter: switch from py-imaging to py-pillow
- USES python

With hat:	python
Approved by:	portmgr (bdrewery, implicit)
2014-10-06 17:53:53 +00:00
William Grzybowski
e34f57b8cd print/scribus: switch from py-imaging to py-pillow
- USES python

With hat:	python
Approved by:	portmgr (bdrewery, implicit)
2014-10-06 17:53:25 +00:00
Lars Engels
d93f281bb6 - Add a dependecy on net/linux-c6-avahi-libs which allows FoxitReader to start
- Bump PORTREVISION

Approved by:	portmgr (bapt, implicit)
2014-10-06 09:33:41 +00:00
Tijl Coosemans
49d24ca548 graphics/djvulibre:
- Add USES=libtool and bump dependent ports
- Remove threading related patches
2014-10-05 21:30:26 +00:00
Antoine Brodin
a30f5cb990 Unbreak py-satchmo, it depended on both py-imaging (self+via py-sorl-thumbnail) and py-pillow (via py-trml2pdf) 2014-10-05 06:59:24 +00:00
William Grzybowski
b2304fa09e print/py-reportlab2: switch from py-pillow to py-imaging
- USES python

With hat:	python
Approved by:	portmgr (bdrewery, implicit)
2014-10-04 15:07:33 +00:00
Baptiste Daroussin
9f00a1c091 Convert to USES=pear 2014-09-30 21:26:13 +00:00
Bryan Drewery
5dd7d06dc3 Clarify SDK is also for ports building. cups-filters requires it. 2014-09-29 22:38:09 +00:00
Steve Wills
37b5ed38b0 print/rubygem-prawn: update to 1.3.0
print/rubygem-ttfunk: update to 1.4.0
print/rubygem-pdf-core: update to 0.4.0

Update rubygem-prawn and friends to the latest versions. These are all
committed at the same time to avoid breakage.

PR:		193833
PR:		194012
PR:		194013
Submitted by:	Michael Moll <kvedulv@kvedulv.de>
2014-09-29 21:05:03 +00:00
Marcus von Appen
8a799114da - Convert to USES=python
- Fix staging behaviour for python bits

PR:		194007
Submitted by:	mysefl
Approved by:	gnome@ (kwm)
2014-09-29 15:42:16 +00:00
Raphael Kubo da Costa
f8f2eb0309 Update to 2.1.2 2014-09-28 18:37:05 +00:00
Tijl Coosemans
a6d2f30533 - Set CPPFLAGS and LIBS in a number of ports so configure can find libintl.h
and libintl.so.  This fixes a problem where DATADIRNAME gets an incorrect
  value which causes locale files to be installed in the wrong place.
- The only configure checks that still need to be patched are related
  to intltool so move DATADIRNAME patching from USES=pathfix to
  USE_GNOME=intlhack.

- games/klavaro: remove excessive dependencies
- japanese/libskk: add INSTALL_TARGET=install-strip
- math/libqalculate: add INSTALL_TARGET=install-strip and remove pthread
  patching
- multimedia/freetuxtv: remove excessive dependencies
- science/gramps: fix shared-mime-info use

Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-09-25 15:18:27 +00:00
Eitan Adler
4ea635fd2d Hand back my ports to the pool.
Ports require time and TLC which I no longer have.
2014-09-24 06:00:09 +00:00
Dmitry Marakasov
b6131dc868 - Drop @dirrm* from plist
- Don't include options.mk needlessly
2014-09-23 16:12:22 +00:00
Johannes Jost Meixner
05317facbe Update CentOS base to 6.5, add userland ports
The Fedora 10 infrastructure ports have been in use since June 2009 and, while
having served a great deed, have become unsupported upstream and hence affected
by unfixed security vulnerabilities. In addition to that, many recent Linux
binaries need newer libc / stdlibc++ versions.

This commit adds the linux-c6- userland as drop-in replacement for the -f10
infrastructure, as well as upgrading the linux_base-c6 port to CentOS 6.5.

If you want to switch to linux-c6 ports, please define at /etc/make.conf:

    OVERRIDE_LINUX_BASE_PORT=c6
    OVERRIDE_LINUX_NONBASE_PORTS=c6

Additionally, please add the following line to /etc/sysctl.conf:

    compat.linux.osrelease=2.6.18

Upgrading procedures are shown in /usr/ports/UPDATING.

This work has been inspired by Artyom Mirgorodskiy's post to emulation@ in
November 2013, using and extending mav@'s work. It has been tested extensively
and most reported issues were already fixed. Please report any additional bug
or "features" to the emulation mailing list.

Many thanks to: mav@, rene@, allanjude@, netchild@, antoine@, everyone who's
filed Issues and Pull requests on GitHub,

PR:		186820
Differential Revision:	https://reviews.freebsd.org/D793
Reviewed by:	allanjude, antoine, bapt, rene
Approved by:	portmgr (antoine, bapt)
Approved by:	koobs (mentor)
Sponsored by:	Perceivon Hosting Inc.
2014-09-22 10:40:00 +00:00
Pawel Pekala
4bef358a6c Update to version 1.0.58
PR:		ports/193780
Submitted by:	maintainer
2014-09-20 20:45:11 +00:00
Tijl Coosemans
d9aa7a8cbf print/freetype:
- Remove old libtool patch
- Remove :oldver from USES=libtool and bump dependent ports
2014-09-19 15:45:14 +00:00
Dmitry Marakasov
b15b27c0dc - Drop .la files, no dependees require them
Approved by:	portmgr blanket
2014-09-18 16:41:33 +00:00
Mathieu Arnold
46cf4bcb84 Retire MANCOMPRESSED.
Also the compat NO_INSTALL_MANPAGES shim.

Differential Revision:	https://reviews.freebsd.org/D730
Reviewed by:	antoine
With hat:	portmgr
Sponsored by:	Absolight
2014-09-18 12:31:24 +00:00
Baptiste Daroussin
d879da8674 Update WWW 2014-09-17 06:07:13 +00:00
Tijl Coosemans
3ce0f21808 devel/glib12 x11-toolkits/gtk12:
- Convert to USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Remove patches that renamed include directories and libraries so they
  didn't conflict with early development versions of glib/gtk 2.0
2014-09-13 15:11:27 +00:00
Kris Moore
1843988a30 - cups-filters requires pdftops during build / runtime to
support Brother, Minolta, and Konica Minolta and possible others.
- Bump PORTREV

Approved by: Maintainer
2014-09-12 13:25:16 +00:00
Tijl Coosemans
73f4c269ae - Remove USE_AUTOTOOLS=libtool:env
- Depend on libX11 instead of libXext
- Minor tweaks
2014-09-12 12:11:28 +00:00
Adam Weinberger
194000b525 Not sure where I found muttprint-langinfo existing before, but it doesn't
appear to be built in print/ or russian/, so remove it from the plist
entirely and bump PORTREVISION.
2014-09-11 15:01:36 +00:00
Hiroki Sato
40434b7891 Fix dependency.
Spotted by:	dinoex
PR:		193362
2014-09-11 08:55:07 +00:00
John Marino
04aa665b7c Stage print/musixtex (the last unstaged port in the tree) 2014-09-10 21:04:55 +00:00
Gerald Pfeifer
15945f8122 Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
2014-09-10 20:50:31 +00:00
Hiroki Sato
6783ba5b73 Add a patch forgotten in the previous commit.
PR:	193444
2014-09-09 10:03:57 +00:00
Adam Weinberger
59799e3572 So it looks like mutprint-langinfo is not built for the russian/ port.
Add a simple PLIST_SUB switch to account for this.
2014-09-08 14:39:39 +00:00
Tijl Coosemans
2e34e125f2 - Convert to USES=libtool and add INSTALL_TARGET=install-strip
- Add USE_AUTOTOOLS=libtoolize (and others) because ltmain.sh is a symlink
2014-09-07 20:14:17 +00:00
Tijl Coosemans
7483085a9a Convert to USES=libtool, USES=pathfix and INSTALL_TARGET=install-strip 2014-09-07 20:05:37 +00:00
Adam Weinberger
2009f89799 Change USE_TEX=texlive. 2014-09-07 15:09:39 +00:00
Danilo Egea Gondolfo
3cd2a6d99b - Update from 1.2.2 to 2.0
- Update the pkg-descr
2014-09-07 13:34:45 +00:00
John Marino
64b8301fc7 Remove 5 unstaged print/ghostscript7* ports 2014-09-06 20:30:48 +00:00
Adam Weinberger
491a2a264a Fix build by changing USE_TEX=texlive to USE_TEX=texmf.
While here, rearrage things so they are in a more predictable order.
The chaos led to there being two USES= that clobbered each other.

Also, remove an old fragment that was preventing bin/muttprint-langinfo
from being installed.
2014-09-06 14:51:52 +00:00
Adam Weinberger
65f66dbb30 This port is hopelessly dependent upon g_return_if_fail from non-void functions.
Force build with GCC, where anything goes.

While here, add a missing file to plist and add some stuff to USES. Not
alphabetized, just for danfe and marino.
2014-09-04 23:53:15 +00:00
Antoine Brodin
228ab58873 Change INSTALL_DATA to install with mode 644
Remove patches and hacks that were used to work around the previous
situation
This allows to stage more ports as a regular user

Differential Revision:	https://reviews.freebsd.org/D703
Reviewed by and discussed with:	bapt
With hat:	portmgr
2014-09-04 19:26:24 +00:00
Danilo Egea Gondolfo
1e9b34d8b7 - Update from 20140825 to 20140904 2014-09-04 15:04:13 +00:00
Baptiste Daroussin
89ca9a777b Remove non staged ports without pending PR from p* 2014-09-01 23:35:54 +00:00
Hiroki Sato
ececdb663c Split print/texlive-texmf into two ports, texlive-texmf and
texlive-texmf-source.

PR:	193202
2014-08-31 20:23:30 +00:00
Hiroki Sato
0eb1cdeb70 Remove print/tex-texmflocal. This is no longer necessary. 2014-08-31 20:09:34 +00:00
Hiroki Sato
0286fd19c0 Use a versioned distfile. 2014-08-31 20:05:34 +00:00
Tijl Coosemans
aafc6248a1 lang/guile:
- Add USES=libtool and bump dependent ports
- Replace Makefile.* patches with USES=pathfix
- Replace config.h.in patch with USE_AUTOTOOLS=autoheader
- Avoid automake by touching Makefile.in

Approved by:	portmgr (implicit, bump unstaged port)
2014-08-31 15:17:49 +00:00
Steve Wills
56e597c8fe print/rubygem-ttfunk: update to 1.2.2 2014-08-31 15:14:23 +00:00
Tijl Coosemans
f1655c7b7a dns/libidn:
- Add USES=libtool and bump dependent ports
- Add INSTALL_TARGET=install-strip
- Always install libidn-components.png because it is used by libidn.info
- Add -lintl to Libs.private instead of Libs in libidn.pc
2014-08-30 18:18:14 +00:00
Hiroki Sato
06f223cab8 - Update to 1.1.24+nmu3. DL paper size specification is fixed.
- Use install-strip.
- Add LICENSE.
2014-08-30 14:56:17 +00:00
Hiroki Sato
156fd58c7e Remove ports related to Adobe Reader. 2014-08-30 14:25:48 +00:00
Hiroki Sato
44e5840f9d Remove print/dviselect. A new version is included in print/texlive-base. 2014-08-30 09:17:20 +00:00
Hiroki Sato
27b656ab09 - STAGEDIR support.
- Add LICENSE.
2014-08-30 09:12:41 +00:00
Pietro Cerutti
0a46ff69d6 - Project has moved to SF 2014-08-29 14:51:17 +00:00
Johan van Selst
6f7363f7b5 Update new version of htmlxref.cnf 2014-08-28 15:02:28 +00:00
Tijl Coosemans
216b5a285f - Fix missing library problems when the linker enforces explicit linking
PR:		192062
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2014-08-26 14:06:08 +00:00
Danilo Egea Gondolfo
2cc9f2ea56 - Update from 20140725 to 20140825 2014-08-26 11:10:19 +00:00
Steve Wills
612a66ac28 print/rubygem-prawn-svg: update to 0.16.0 2014-08-25 19:02:44 +00:00
Steve Wills
edddd5424c print/rubygem-prawn: update to 1.2.1 2014-08-25 18:59:55 +00:00
Antoine Brodin
94f320b77b Use fc keyword to prevent build violation when dependent ports use fc-cache 2014-08-24 23:28:53 +00:00
Antoine Brodin
879b83e2cd Allow staging as a regular user 2014-08-24 19:13:10 +00:00
Steve Wills
4b3609734e print/rubygem-ttfunk: update to 1.2.0 2014-08-24 18:45:15 +00:00
Steve Wills
5d80fff6eb print/rubygem-afm: update to 0.2.2 2014-08-23 23:17:39 +00:00
Hiroki Sato
f599a5e158 - Add capability to specify package dependency in USE_TEX.
- Make print/texlive-full always depend on the latest packages; currently
  texmf>=20140525_2 and base>=20140525_1.
2014-08-23 17:58:43 +00:00
Hiroki Sato
d886961e88 Fix duplicated files.
Spotted by:	Jan Henrik Sylvester
2014-08-22 15:35:04 +00:00
Hiroki Sato
d44a25d437 Fix bugs which prevented papersize configuration from working. 2014-08-22 14:32:10 +00:00
Hiroki Sato
6e0c41ef75 Update TeXLive to 2014.
- Note that full support of configuration tools such as tlmgr and texconfig
  is not ready yet.

- Most of dviware now supports libpaper to choose the default papersize.
  Use paperconfig(8) utility or print/papersize-default-* packages.

- Some quite old macros of the age of latex209 have been removed, and
  there are user-visible/invisible incompatibilities.  Please send a report
  to freebsd-tex@FreeBSD.org or file a PR if you have trouble.
2014-08-22 11:04:23 +00:00
Rene Ladan
c8d71ace85 Remove expired ports:
2014-08-22 databases/pg_filedump: Broken for more than 6 months
2014-08-22 devel/svnmerge: Broken for more than 6 months
2014-08-22 net-mgmt/circe: Broken for more than 6 months
2014-08-22 print/latex-aa: Broken for more than 6 months
2014-08-22 textproc/rast: Broken for more than 6 months
2014-08-22 www/abyssws: Broken for more than 6 months
2014-08-22 www/docebo: Not maintained upstream
2014-08-22 www/rejik: Broken for more than 6 months and depends on www/squid which reached EOL 2 years ago
2014-08-22 09:16:44 +00:00
Hiroki Sato
95f76981d8 Remove print/tex-omegaware-old. This is no longer maintained and
there is no application which requires it.
2014-08-22 07:19:37 +00:00
Matthias Andree
b50a4b0708 Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
  where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
  versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
  for new Berkeley DB, but are untested.

NOTE: please read UPDATING and the Wiki page before proceeding!

Announcement:	http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference:	https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR:		192690
Approved by:	portmgr (implicit, PORTREVISION bump on unstaged ports)
2014-08-21 22:50:29 +00:00
Kris Moore
07434cc6dc - Fix cups-filter failing on a number of printer classes that use poppler's
"pdftops"
- Bump PORTREV

Approved by: Maintainer
2014-08-21 18:22:17 +00:00
John Marino
448ac92a2a Reset maintainer print/ansiprint per his request
Thanks for looking after this port, Stephen.  While here, I'll make
some cosmetic realignments and convert EXTRACT_SUFX to USES.

PR:		192891
Submitted by:	maintainer (Stephen Fisher)
2014-08-21 17:12:31 +00:00
Antoine Brodin
3e0a67c81e 2014-08-20 deskutils/horde3-hermes: EOL in April 2012
2014-08-20 deskutils/horde3-klutz: EOL in April 2012
2014-08-20 deskutils/horde3-kronolith: EOL in April 2012
2014-08-20 deskutils/horde3-mnemo: EOL in April 2012
2014-08-20 devel/horde3-chora: EOL in April 2012
2014-08-20 ftp/horde3-gollem: EOL in April 2012
2014-08-20 games/linux-steam: Unmaintained interactive port
2014-08-20 games/linux-ut2004-demo: Unmaintained restricted ancient demo
2014-08-20 mail/horde3-dimp: EOL in April 2012
2014-08-20 mail/horde3-forwards: EOL in April 2012
2014-08-20 mail/horde3-ingo: EOL in April 2012
2014-08-20 mail/horde3-mimp: EOL in April 2012
2014-08-20 mail/horde3-vacation: EOL in April 2012
2014-08-20 net-mgmt/horde3-nic: EOL in April 2012
2014-08-20 net-mgmt/nocol: Unmaintained interactive port
2014-08-20 net-mgmt/ourmon: Unmaintained interactive port
2014-08-20 net/wowzamediaserverpro: Unmaintained interactive port
2014-08-20 news/p5-NNML: Unmaintained interactive port
2014-08-20 print/dvips: Unmaintained interactive port
2014-08-20 print/xdvi: Unmaintained interactive port
2014-08-20 security/horde3-jeta: EOL in April 2012
2014-08-20 security/hunch: Likely unused interactive port
2014-08-20 www/horde3-ansel: EOL in April 2012
2014-08-20 www/horde3-meta: EOL in April 2012
2014-08-20 www/horde3-passwd: EOL in April 2012
2014-08-20 www/horde3-trean: EOL in April 2012
2014-08-20 www/wwwcount: Ancient interactive port
2014-08-20 x11-clocks/xalarm: Unmaintained interactive port
2014-08-20 06:30:29 +00:00
Steve Wills
f64d997379 many ruby/rubygem ports: death of rubyforge.org
rubyforge.org shutdown on May 15, 2014. This commit accounts for that by doing
several things:

- Deprecate ruby that had only rubyforge.org as MASTER_SITES (and so are now
  only fetchable via our cache)
- Deprecate ports that depend on those
- Update the WWW pkg-descr line that points to rubyforge.org for rubygem ports
  (which are still fetchable from rubygems.org)

The next step will be to remove rubyforge.org from bsd.sites.mk, after these
deprecated ports are deleted.

Phabric:	D591
With hat:	ruby
Approved by:	portmgr (because of committing to unstaged graphics/mingplot port)
2014-08-19 15:35:35 +00:00
Antoine Brodin
1c6ed8eca3 Convert most NO_INSTALL_MANPAGES to USES=imake:noman
With hat:	portmgr
2014-08-18 19:13:18 +00:00
Adam Weinberger
3ba17aa13b Fix build with newer clang. 2014-08-17 16:05:23 +00:00
Tijl Coosemans
9c67a6b13f DOCS isn't optional. The files provide the cups web interface. 2014-08-17 10:05:32 +00:00
Matthias Andree
1f413791d4 Kill long-defunct cups-samba port, disappeared upstream, fruitless hunt.
The software was reported missing 2013-09-19 already.

PR:		182216
2014-08-15 21:02:25 +00:00
Matthias Andree
515db2ed10 Upgrade OpenEXR and ilmbase to 2.2.0.
GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so
GCC-based systems will upgrade to the default ports compiler (GCC 4.7
currently.)

Add two patches to OpenEXR to permit building it in a live system with
the older OpenEXR version installed. Bug report filed to upstream Github
at https://github.com/openexr/openexr/issues/130

Couple OpenEXR more tightly to ilmbase and require its exact .so
version.

Add UPDATING note, and bump PORTREVISION of all dependent ports.

Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer.

Approved by:	portmgr (implicit for bumping PORTREVISION on unstaged ports)
2014-08-15 20:37:31 +00:00
Matthias Andree
3d2f6f3e81 Fix a few of its glaring bugs around type widths.
Find newer BerkeleyDB versions.
Link with PNG again.
2014-08-15 17:20:46 +00:00
Danilo Egea Gondolfo
4bab5ef58c - Update from 1.0.55 to 1.0.57
PR:		192650
Submitted by:	Naram Qashat <cyberbotx@cyberbotx.com>
2014-08-15 13:11:41 +00:00
Dmitry Marakasov
9acc5bda68 - Drop .la files for print/tex-ptexenc
- Bump dependent ports as .so version has changed
- Also fix upgrade of dependent ports, as portrevision was not bumped after previous change

Approved by:	portmgr blanket
2014-08-15 09:52:45 +00:00
Sunpoet Po-Chuan Hsieh
ec373bbc2f - Convert PYTHON_FEATURES to USE_PYTHON (which was landed several hours ago)
Notified by:	koobs, wg
2014-08-15 03:43:54 +00:00
Sunpoet Po-Chuan Hsieh
42ece82aed - Use USES=python 2014-08-15 03:02:25 +00:00
Antoine Brodin
e4bb3b4891 Fix run dependencies
Note: the install/deinstall script still look a bit broken
2014-08-12 20:28:01 +00:00
Tijl Coosemans
cdb8256f1b Fix problems with missing libs when the linker enforces explicit linking
(ports that are dependencies of other ports)

net-p2p/transmission-cli: add USES=libtool and remove PTHREAD_LIBS
sysutils/deltup: simplify patch by using MAKE_ARGS
x11-fm/rox-filer: convert to USES=shared-mime-info
x11-wm/emerald: remove PTHREAD_LIBS

PR:		192062
2014-08-12 15:29:37 +00:00
Gabor Pali
cc55544233 - Update The Glorious Glasgow Haskell Compiler to version 7.8.3
- Update Haskell Platform to version 2014.2.0.0
- Update Yesod Platform to version 1.2.13
- Update Gtk2Hs to version 0.12.5
- Update Pandoc to version 1.12.4.2
- Update git-annex to version 5.20140717
- Unbreak wxHaskell ports

Please note that port revisions for all the Haskell ports without version
changes are bumped.

New ports (69):

databases/hs-esqueleto: Type-safe EDSL for SQL queries on persistent backends
devel/hs-Glob: Globbing library
devel/hs-STMonadTrans: Monad transformer version of the ST monad
devel/hs-auto-update: Efficiently run periodic, on-demand actions
devel/hs-asn1-encoding: ASN1 data reader and writer in RAW, BER and DER forms
devel/hs-asn1-parse: Simple monadic parser for ASN1 stream types
devel/hs-atomic-primops: Safe approach to CAS and other atomic operations
devel/hs-boxes: 2D text pretty-printing library
devel/hs-byteable: Type class for sequence of bytes
devel/hs-chunked-data: Typeclasses for dealing with chunked data
devel/hs-conduit-combinators: Commonly used conduit functions
devel/hs-conduit-extra: Conduit adapters for common libraries
devel/hs-data-hash: Combinators for building fast hashing functions
devel/hs-deepseq-generics: Generics-based Control.DeepSeq.rnf implementation
devel/hs-dlist-instances: Difference lists instances
devel/hs-enclosed-exceptions: Catching exceptions within enclosed computations
devel/hs-equivalence: Maintaining equivalence relations as union-find
devel/hs-exceptions: Extensible optionally-pure exceptions
devel/hs-free: Monads for free
devel/hs-hslua: Lua language interpreter embedding in Haskell
devel/hs-keys: Keyed functors and containers
devel/hs-monad-loops: Monadic loops
devel/hs-monads-tf: Monad classes, using type families
devel/hs-mono-traversable: Traversing monomorphic containers
devel/hs-prelude-extras: Higher-order versions of Prelude classes
devel/hs-prettyclass: Pretty printing class similar to Show
devel/hs-scientific: Numbers represented using scientific notation
devel/hs-securemem: Auto scrubbing and const time eq, memory chunk
devel/hs-shake: Build system library, like Make, but more accurate dependencies
devel/hs-stm-chans: Additional types of channels for STM
devel/hs-streaming-commons: Common functions for streaming data libraries
devel/hs-text-icu: Bindings to the ICU library
devel/hs-tf-random: High-quality splittable pseudorandom number generator
devel/hs-transformers-compat: Compatibility shim for transformers
devel/hs-vector-binary-instances: Binary instances for vector
devel/hs-vector-instances: Orphan Instances for 'Data.Vector'
devel/hs-vector-th-unbox: Deriver for Data.Vector.Unboxed with Template Haskell
dns/hs-dns: DNS library in Haskell
dns/hs-gnuidn: Bindings for GNU IDN
net/hs-connection: Simple and easy network connections API
net/hs-gsasl: Bindings for GNU libgsasl
net/hs-iproute: IP Routing Table
net/hs-network-protocol-xmpp: Client library for the XMPP protocol
security/hs-DRBG: Deterministic random bit generator
security/hs-cipher-aes128: AES and common modes using AES-NI when available
security/hs-cipher-blowfish: Blowfish cipher
security/hs-cipher-camellia: Camellia block cipher primitives
security/hs-cipher-des: DES and 3DES primitives
security/hs-crypto-cipher-types: Generic cryptography cipher types
security/hs-crypto-random: Simple cryptographic random related types
security/hs-cryptohash-conduit: Cryptohash conduit
security/hs-cryptohash-cryptoapi: Crypto-api interfaces for cryptohash
security/hs-gnutls: Bindings for GNU libgnutls
security/hs-x509: X509 reader and writer
security/hs-x509-store: X.509 collection accessing and storing methods
security/hs-x509-system: Per-operating-system X.509 accessors and storage
security/hs-x509-validation: X.509 Certificate and CRL validation
sysutils/hs-ekg: Remote monitoring of processes
sysutils/hs-ekg-core: Tracking of system metrics
textproc/hs-appar: Simple applicative parser
textproc/hs-libxml-sax: Bindings for the libXML2 SAX interface
textproc/hs-uri: Library for working with URIs
textproc/hs-xml-hamlet: Hamlet-style quasiquoter for XML content
www/hs-DAV: RFC 4918 WebDAV support
www/hs-http-client: HTTP client engine
www/hs-http-client-tls: http-client backend with TLS support
www/hs-warp-tls: HTTP over SSL/TLS support for Warp via the TLS package
www/hs-yesod-auth-hashdb: Authentication plugin for Yesod
www/hs-yesod-bin: Yesod helper executable

Updated ports (279):

archivers/hs-zip-archive                 0.1.3.4_5        --> 0.2.3.2
archivers/hs-zlib-enum                   0.2.3_6          --> 0.2.3.1
audio/hs-ALUT                            2.2.0.0_14       --> 2.3.0.1
audio/hs-OpenAL                          1.4.0.2_5        --> 1.6.0.0
audio/hs-libmpd                          0.8.0.2_5        --> 0.8.0.5
benchmarks/hs-criterion                  0.6.2.1_6        --> 0.8.1.0
converters/hs-aeson                      0.6.1.0_6        --> 0.7.0.6
converters/hs-dataenc                    0.14.0.5_5       --> 0.14.0.7
databases/hs-mysql                       0.1.1.4_8        --> 0.1.1.6
databases/hs-persistent                  1.2.0.1_4        --> 1.3.1.1
databases/hs-persistent-sqlite           1.2.0_4          --> 1.3.0.5
databases/hs-persistent-template         1.2.0_4          --> 1.3.1.4
devel/hs-Boolean                         0.2_5            --> 0.2.1
devel/hs-ConfigFile                      1.1.1_9          --> 1.1.2
devel/hs-DrIFT                           2.2.3_8          --> 2.4.2
devel/hs-MemoTrie                        0.6.1_6          --> 0.6.2
devel/hs-MissingH                        1.2.0.0_6        --> 1.2.1.0
devel/hs-MonadCatchIO-mtl                0.3.0.5_6        --> 0.3.1.0
devel/hs-MonadCatchIO-transformers       0.3.0.0_8        --> 0.3.1.0
devel/hs-MonadRandom                     0.1.9_4          --> 0.1.13
devel/hs-SafeSemaphore                   0.9.0_6          --> 0.10.1
devel/hs-Stream                          0.4.6.1_6        --> 0.4.7.1
devel/hs-TypeCompose                     0.9.9_5          --> 0.9.10
devel/hs-abstract-deque                  0.2_4            --> 0.3
devel/hs-abstract-par                    0.3.1_8          --> 0.3.3
devel/hs-alex                            3.0.5_4          --> 3.1.3
devel/hs-ansi-terminal                   0.6_5            --> 0.6.1.1
devel/hs-ansi-wl-pprint                  0.6.6_6          --> 0.6.7.1
devel/hs-asn1-types                      0.1.3_4          --> 0.2.3
devel/hs-async                           2.0.1.4_4        --> 2.0.1.5
devel/hs-base16-bytestring               0.1.1.5_7        --> 0.1.1.6
devel/hs-basic-prelude                   0.3.5.0_4        --> 0.3.8
devel/hs-bifunctors                      3.2.0.1_5        --> 4.1.1.1
devel/hs-blaze-builder                   0.3.1.1_4        --> 0.3.3.2
devel/hs-blaze-builder-enumerator        0.2.0.5_6        --> 0.2.0.6
devel/hs-blaze-textual                   0.2.0.8_6        --> 0.2.0.9
devel/hs-bloomfilter                     1.2.6.10_7       --> 2.0.0.0
devel/hs-bytestring-show                 0.3.5.5_4        --> 0.3.5.6
devel/hs-c2hs                            0.16.4_6         --> 0.17.2
devel/hs-cabal-install                   1.16.0.2_4       --> 1.18.0.5
devel/hs-cereal                          0.3.5.2_7        --> 0.4.0.1
devel/hs-checkers                        0.3.1_5          --> 0.3.2
devel/hs-classy-prelude                  0.5.7_4          --> 0.9.3
devel/hs-classy-prelude-conduit          0.5.3_5          --> 0.9.3
devel/hs-cmdargs                         0.10.3_4         --> 0.10.9
devel/hs-conduit                         1.0.5_4          --> 1.1.7
devel/hs-configurator                    0.2.0.2_6        --> 0.3.0.0
devel/hs-convertible                     1.0.11.1_8       --> 1.1.0.0
devel/hs-cpphs                           1.16_5           --> 1.18.5
devel/hs-data-pprint                     0.2.1.4_6        --> 0.2.3
devel/hs-directory-tree                  0.11.0_6         --> 0.12.0
devel/hs-dlist                           0.5_13           --> 0.7.1
devel/hs-either                          3.4_5            --> 4.3.0.1
devel/hs-enumerator                      0.4.19_8         --> 0.4.20
devel/hs-errors                          1.4.1_5          --> 1.4.7
devel/hs-fast-logger                     0.3.1_7          --> 2.2.0
devel/hs-fgl                             5.4.2.4_9        --> 5.5.0.1
devel/hs-file-embed                      0.0.4.7_5        --> 0.0.7
devel/hs-filestore                       0.6.0.1_5        --> 0.6.0.3
devel/hs-fsnotify                        0.0.11_4         --> 0.1.0.3
devel/hs-gconf                           0.12.1.1_6       --> 0.12.5.0
devel/hs-generic-deriving                1.5.0_4          --> 1.6.3
devel/hs-geniplate                       0.6.0.3_5        --> 0.6.0.4
devel/hs-ghc-events                      0.4.2.0_6        --> 0.4.3.0
devel/hs-ghc-mtl                         1.0.1.2_6        --> 1.2.1.0
devel/hs-gio                             0.12.4_6         --> 0.12.5.3
devel/hs-glade                           0.12.1_10        --> 0.12.5.0
devel/hs-glib                            0.12.4_6         --> 0.12.5.4
devel/hs-gtk2hs-buildtools               0.12.4_6         --> 0.12.5.2
devel/hs-haddock                         2.13.2_4         --> 2.14.2
devel/hs-happy                           1.18.10_6        --> 1.19.4
devel/hs-hashable                        1.1.2.5_4,1      --> 1.2.2.0,1
devel/hs-hashed-storage                  0.5.10_6         --> 0.5.11
devel/hs-hashtables                      1.1.0.2_5        --> 1.1.2.1
devel/hs-haskell-src                     1.0.1.5_8        --> 1.0.1.6
devel/hs-haskell-src-exts                1.13.5_6         --> 1.15.0.1
devel/hs-hasktags                        0.68.2_5         --> 0.69.0
devel/hs-hastache                        0.5.0_5          --> 0.6.0
devel/hs-hinotify                        0.3.5_6          --> 0.3.7
devel/hs-hint                            0.3.3.6_5        --> 0.4.2.0
devel/hs-hlint                           1.8.45_4         --> 1.9.3
devel/hs-hoogle                          4.2.16_5         --> 4.2.34
devel/hs-hslogger                        1.2.1_6          --> 1.2.4
devel/hs-hspec                           1.5.4_4          --> 1.11.0
devel/hs-hspec-expectations              0.3.2_4          --> 0.6.0.1
devel/hs-kqueue                          0.1.2.4_6        --> 0.1.2.6
devel/hs-language-c                      0.3.2.1_11       --> 0.4.5
devel/hs-language-javascript             0.5.7_6          --> 0.5.13
devel/hs-largeword                       1.0.5_4          --> 1.2.3
devel/hs-lens                            3.9.0.2_4        --> 4.3.3
devel/hs-lifted-base                     0.2.0.5_4        --> 0.2.3.0
devel/hs-logict                          0.6_5            --> 0.6.0.2
devel/hs-mmap                            0.5.8_7          --> 0.5.9
devel/hs-mmorph                          1.0.0_4          --> 1.0.3
devel/hs-monad-control                   0.3.2.1_4        --> 0.3.3.0
devel/hs-monad-logger                    0.3.1.1_4        --> 0.3.7.1
devel/hs-monad-par                       0.3.4.2_4        --> 0.3.4.6
devel/hs-monad-par-extras                0.3.2_8          --> 0.3.3
devel/hs-mtl                             2.1.2_6          --> 2.1.3.1
devel/hs-mueval                          0.9_5            --> 0.9.1.1
devel/hs-murmur-hash                     0.1.0.6_6        --> 0.1.0.7
devel/hs-optparse-applicative            0.5.2.1_5        --> 0.9.1.1
devel/hs-parallel                        3.2.0.3_6        --> 3.2.0.4
devel/hs-pcre-light                      0.4_13           --> 0.4.0.2
devel/hs-primitive                       0.5.0.1_6        --> 0.5.2.1
devel/hs-profunctors                     3.3.0.1_4        --> 4.2.0.1
devel/hs-project-template                0.1.3_5          --> 0.1.4.1
devel/hs-quickcheck-io                   0.1.0_4          --> 0.1.1
devel/hs-reflection                      1.3.2_4          --> 1.5.1
devel/hs-resource-pool                   0.2.1.1_6        --> 0.2.3.0
devel/hs-resourcet                       0.4.7.1_4        --> 1.1.2.3
devel/hs-safe                            0.3.3_9          --> 0.3.7
devel/hs-setenv                          0.1.0_6          --> 0.1.1.1
devel/hs-simple-reflect                  0.3.1_5          --> 0.3.2
devel/hs-smallcheck                      1.0.2_5          --> 1.1.1
devel/hs-syb                             0.4.0_4          --> 0.4.1
devel/hs-syb-with-class                  0.6.1.4_6        --> 0.6.1.5
devel/hs-system-fileio                   0.3.11_5         --> 0.3.14
devel/hs-system-filepath                 0.4.7_6          --> 0.4.12
devel/hs-tagged                          0.6_4            --> 0.7.2
devel/hs-temporary                       1.1.2.4_6        --> 1.2.0.3
devel/hs-test-framework                  0.8_7            --> 0.8.0.3
devel/hs-test-framework-hunit            0.3.0_7          --> 0.3.0.1
devel/hs-test-framework-quickcheck2      0.3.0.1_7        --> 0.3.0.3
devel/hs-text                            0.11.3.1_4       --> 1.1.0.0
devel/hs-threads                         0.5.0.2_5        --> 0.5.1.2
devel/hs-threadscope                     0.2.2_6          --> 0.2.4
devel/hs-timezone-olson                  0.1.2_5          --> 0.1.4
devel/hs-timezone-series                 0.1.2_5          --> 0.1.3
devel/hs-transformers-base               0.4.1_9          --> 0.4.2
devel/hs-uniplate                        1.6.10_6         --> 1.6.12
devel/hs-unix-compat                     0.4.1.1_4        --> 0.4.1.3
devel/hs-unix-time                       0.1.8_4          --> 0.3.3
devel/hs-unordered-containers            0.2.3.1_4        --> 0.2.4.0
devel/hs-utf8-light                      0.4.0.1_8        --> 0.4.2
devel/hs-utf8-string                     0.3.7_9          --> 0.3.8
devel/hs-utility-ht                      0.0.9_4          --> 0.0.10
devel/hs-uuagc                           0.9.42.3_4       --> 0.9.51
devel/hs-uuagc-cabal                     1.0.4.0_7        --> 1.0.5.0
devel/hs-uuid                            1.2.13_4         --> 1.3.3
devel/hs-uulib                           0.9.15_5         --> 0.9.16
devel/hs-vault                           0.2.0.4_5        --> 0.3.0.3
devel/hs-vector                          0.10.0.1_6       --> 0.10.9.1
devel/hs-vector-algorithms               0.5.4.2_6        --> 0.6.0.3
devel/hs-void                            0.6_4            --> 0.6.1
devel/hs-word8                           0.0.3_5          --> 0.1.1
graphics/hs-HGL                          3.2.0.2_14       --> 3.2.0.5
graphics/hs-cairo                        0.12.4_6         --> 0.12.5.3
graphics/hs-svgcairo                     0.12.1.1_8       --> 0.12.5.2
mail/hs-email-validate                   1.0.0_5          --> 2.0.1
mail/hs-mime                             0.3.4_6          --> 0.4.0.1
mail/hs-mime-mail                        0.4.1.2_7        --> 0.4.5.2
mail/hs-mime-types                       0.1.0.3_5        --> 0.1.0.4
math/hs-Agda                             2.3.2_6          --> 2.4.0.2
math/hs-categories                       1.0.5_5          --> 1.0.6
math/hs-comonad                          3.0.2_5          --> 4.2.2
math/hs-contravariant                    0.4_5            --> 1.1
math/hs-data-lens                        2.10.2_7         --> 2.10.5
math/hs-data-lens-template               2.1.7_7          --> 2.1.8
math/hs-distributive                     0.3.1_5          --> 0.4.4
math/hs-math-functions                   0.1.3.0_5        --> 0.1.5.2
math/hs-mwc-random                       0.12.0.1_6       --> 0.13.1.2
math/hs-nats                             0.1_5            --> 0.2
math/hs-pointed                          3.0.2_6          --> 4.1
math/hs-probability                      0.2.4_8          --> 0.2.4.1
math/hs-semigroupoids                    3.0.2_6          --> 4.0.4
math/hs-semigroups                       0.9.1_4          --> 0.15.2
math/hs-statistics                       0.10.3.1_4       --> 0.13.2.1
math/hs-vector-space                     0.8.6_7          --> 0.8.7
multimedia/hs-gstreamer                  0.12.1.2_6       --> 0.12.5.0
net/hs-network                           2.4.1.2_4        --> 2.4.2.3
net/hs-network-info                      0.2.0.3_6        --> 0.2.0.5
net/hs-network-multicast                 0.0.7_6          --> 0.0.11
net/hs-simple-sendfile                   0.2.11_5         --> 0.2.15
net/hs-socks                             0.5.1_4          --> 0.5.4
science/hs-bio                           0.5.2_8          --> 0.5.3
security/hs-HsOpenSSL                    0.10.3.3_6       --> 0.11
security/hs-RSA                          1.2.2.0_7        --> 2.0.0
security/hs-SHA                          1.6.1_6          --> 1.6.4.1
security/hs-certificate                  1.3.7_4          --> 1.3.9
security/hs-cipher-aes                   0.1.8_4          --> 0.2.8
security/hs-cipher-rc4                   0.1.2_5          --> 0.1.4
security/hs-clientsession                0.9_4            --> 0.9.0.3
security/hs-cprng-aes                    0.3.4_6          --> 0.5.2
security/hs-crypto-api                   0.12.1_4         --> 0.13
security/hs-crypto-conduit               0.5.2_4          --> 0.5.4
security/hs-crypto-numbers               0.1.3_5          --> 0.2.3
security/hs-crypto-pubkey                0.1.3_4          --> 0.2.4
security/hs-crypto-pubkey-types          0.3.2_4          --> 0.4.2.2
security/hs-cryptocipher                 0.5.0_4          --> 0.6.2
security/hs-cryptohash                   0.9.0_4          --> 0.11.6
security/hs-entropy                      0.2.1_9          --> 0.3.2
security/hs-monadcryptorandom            0.5.1_5          --> 0.6.1
security/hs-pem                          0.1.2_6          --> 0.2.2
security/hs-pwstore-fast                 2.3_7            --> 2.4.1
security/hs-skein                        1.0.3_4          --> 1.0.9
security/hs-tls                          1.1.2_5          --> 1.2.8
sysutils/hs-angel                        0.3.4_6          --> 0.5.0
sysutils/hs-cpu                          0.1.1_7          --> 0.1.2
textproc/hs-Diff                         0.2.0_5          --> 0.3.0
textproc/hs-HStringTemplate              0.7.1_5          --> 0.7.3
textproc/hs-HaXml                        1.24_4           --> 1.24.1
textproc/hs-attoparsec-enumerator        0.3.1_7          --> 0.3.3
textproc/hs-blaze-html                   0.6.1.1_4        --> 0.7.0.2
textproc/hs-blaze-markup                 0.5.1.5_4        --> 0.6.1.0
textproc/hs-case-insensitive             1.0.0.2_4        --> 1.1.0.3
textproc/hs-citeproc-hs                  0.3.8_5          --> 0.3.9
textproc/hs-feed                         0.3.8_13         --> 0.3.9.2
textproc/hs-hexpat                       0.20.3_6         --> 0.20.6
textproc/hs-highlighting-kate            0.5.3.9_4        --> 0.5.8.5
textproc/hs-html-conduit                 1.1.0_5          --> 1.1.0.5
textproc/hs-hxt                          9.3.1.1_7        --> 9.3.1.4
textproc/hs-hxt-charproperties           9.1.1_9          --> 9.1.1.1
textproc/hs-hxt-unicode                  9.0.2_9          --> 9.0.2.2
textproc/hs-pandoc-types                 1.10_5           --> 1.12.4.1
textproc/hs-parsec                       3.1.3_6          --> 3.1.5
textproc/hs-regex-pcre-builtin           0.94.4.5.8.31_5  --> 0.94.4.8.8.35
textproc/hs-regex-tdfa                   1.1.8_5          --> 1.2.0
textproc/hs-stringsearch                 0.3.6.4_6        --> 0.3.6.5
textproc/hs-tagsoup                      0.12.8_6         --> 0.13.1
textproc/hs-tagstream-conduit            0.5.4_5          --> 0.5.5.1
textproc/hs-texmath                      0.6.1.5_4        --> 0.6.7
textproc/hs-xml-conduit                  1.1.0.3_5        --> 1.2.1
textproc/hs-xml-types                    0.3.3_6          --> 0.3.4
textproc/hs-xmlhtml                      0.2.1_5          --> 0.2.3.2
textproc/hs-yaml                         0.8.2.4_4        --> 0.8.8.4
www/hs-HTTP                              4000.2.8_4       --> 4000.2.10
www/hs-authenticate                      1.3.2.6_5        --> 1.3.2.9
www/hs-cgi                               3001.1.7.5_4,1   --> 3001.1.8.5,1
www/hs-cookie                            0.4.0.1_6        --> 0.4.1.2
www/hs-css-text                          0.1.1_10         --> 0.1.2.1
www/hs-gitit                             0.10.3.1_5       --> 0.10.4
www/hs-hS3                               0.5.7_5          --> 0.5.8
www/hs-happstack                         7.0.1_7          --> 7.0.2
www/hs-happstack-server                  7.1.7.1_4        --> 7.3.7
www/hs-heist                             0.12.0_4         --> 0.13.1.2
www/hs-hjsmin                            0.1.4.1_5        --> 0.1.4.7
www/hs-http-conduit                      1.9.3_4          --> 2.1.4
www/hs-http-reverse-proxy                0.1.1.6_4        --> 0.4.0.1
www/hs-http-server                       1.0.2_5          --> 1.0.4
www/hs-http-types                        0.8.0_5          --> 0.8.5
www/hs-oeis                              0.3.1_10         --> 0.3.5
www/hs-path-pieces                       0.1.2_6          --> 0.1.4
www/hs-recaptcha                         0.1_9            --> 0.1.0.2
www/hs-shakespeare                       1.0.5_4          --> 2.0.1.1
www/hs-snap                              0.12.0_4         --> 0.13.2.8
www/hs-snap-core                         0.9.3.1_5        --> 0.9.6.3
www/hs-snap-server                       0.9.3.3_5        --> 0.9.4.5
www/hs-wai                               1.4.0_5          --> 3.0.1.1
www/hs-wai-app-static                    1.3.1.2_5        --> 3.0.0
www/hs-wai-extra                         1.3.4_4          --> 3.0.1.2
www/hs-wai-logger                        0.3.0_7          --> 2.2.0
www/hs-warp                              1.3.8.1_4        --> 3.0.0.5
www/hs-webkit                            0.12.4_8         --> 0.12.6.1
www/hs-xss-sanitize                      0.3.3_6          --> 0.3.5.2
www/hs-yesod                             1.2.0.1_4        --> 1.2.6.1
www/hs-yesod-auth                        1.2.0_4          --> 1.3.4
www/hs-yesod-core                        1.2.0.4_4        --> 1.2.19
www/hs-yesod-form                        1.3.0_4          --> 1.3.14
www/hs-yesod-persistent                  1.2.0_4          --> 1.2.3
www/hs-yesod-routes                      1.2.0_4          --> 1.2.0.7
www/hs-yesod-static                      1.2.0_4          --> 1.2.4
www/hs-yesod-test                        1.2.0_4          --> 1.2.3.2
x11-toolkits/hs-GLURaw                   1.3.0.0_4        --> 1.4.0.1
x11-toolkits/hs-GLUT                     2.4.0.0_5,1      --> 2.5.1.1,1
x11-toolkits/hs-OpenGL                   2.8.0.0_4,1      --> 2.9.2.0,1
x11-toolkits/hs-OpenGLRaw                1.3.0.0_5        --> 1.5.0.0
x11-toolkits/hs-gtk                      0.12.4_6         --> 0.12.5.7
x11-toolkits/hs-gtkglext                 0.12.1_10        --> 0.12.5.0
x11-toolkits/hs-gtksourceview2           0.12.3.1_8       --> 0.12.5.0
x11-toolkits/hs-pango                    0.12.4_6         --> 0.12.5.3
x11-toolkits/hs-vte                      0.12.1_10        --> 0.12.5.0
x11-toolkits/hs-wx                       0.90.0.1_8       --> 0.90.1.0
x11-toolkits/hs-wxc                      0.90.0.4_7       --> 0.90.1.1
x11-toolkits/hs-wxcore                   0.90.0.3_7       --> 0.90.1.1
x11-toolkits/hs-wxdirect                 0.90.0.1_8       --> 0.90.1.1
x11-wm/hs-xmonad-contrib                 0.11.1_6         --> 0.11.3
x11/hs-X11                               1.6.1.1_6        --> 1.6.1.2
x11/hs-xmobar                            0.17_4           --> 0.21

Removed ports (28):

archivers/hs-zlib-conduit: Deprecated in favor of conduit-extra
devel/hs-IORefCAS: Deprecated in favor of atomic-primops
devel/hs-StateVar: Deprecated
devel/hs-Tensor: Depcrecated
devel/hs-attempt: Deprecated in favor of exceptions
devel/hs-base64-conduit: Deprecated in favor of conduit-combinators
devel/hs-blaze-builder-conduit: Deprecated in favor of conduit-extra
devel/hs-failure: Deprecated in favor or exceptions
devel/hs-filesystem-conduit: Deprecated in favor of conduit-combinators
devel/hs-haskeline: Become part of GHC
devel/hs-pool-conduit: Deprecated in favor of resource-pool
devel/hs-profunctor-extras: Absorbed into profunctors
devel/hs-terminfo: Become part of GHC
devel/hs-transformers: Become part of GHC
math/hs-comonad-transformers: Deprecated in favor of comonad
math/hs-comonads-fd: Deprecated in favor of comonad
math/hs-groupoids: Deprecated in favor of semigroupoids
math/hs-semigroupoid-extras: Deprecated in favor of semigroupoids
net/hs-network-conduit: Deprecated in favor of conduit-extra
security/hs-tls-extra: Deprecated in favor of tls
textproc/hs-attoparsec-conduit: Deprecated in favor of conduit-extra
textproc/hs-xhtml: Become part of GHC
www/hs-hamlet: Deprecated in favor of shakespeare
www/hs-shakespeare-css: Deprecated in favor of shakespeare
www/hs-shakespeare-i18n: Deprecated in favor of shakespeare
www/hs-shakespeare-js: Deprecated in favor of shakespeare
www/hs-shakespeare-text: Deprecated in favor of shakespeare
www/hs-wai-test: Deprecated in favor of wai-extra

Approved by:	portmgr (implicit, touching unstaged ports)
Obtained from:	FreeBSD Haskell
2014-08-10 22:34:50 +00:00
Kurt Jaeger
8c3f865923 print/cm-super: fix fixed BUILD_DEPENDS
Submitted by:	Rainer Hurling <rhurlin@gwdg.de>
Pointy hat:	myself
2014-08-09 20:46:02 +00:00
Kurt Jaeger
061394be1b print/cm-super: fix build-depend after texlive
PR:		192171
Submitted by:	pi
Approved by:	hrs (maintainer timeout)
2014-08-09 20:06:21 +00:00
Kurt Jaeger
80b9d5c45e New port: print/p910nd
p910nd is a small printer daemon intended for diskless workstations
that does not spool to disk but passes the job directly to the printer.

WWW: http://p910nd.sourceforge.net/

PR:		180446
Submitted by:	kozlov.sergey.404@gmail.com
2014-08-09 19:54:58 +00:00
William Grzybowski
e1e8cf54c4 print/cups-filters: update to 1.0.55
PR:		192498
Submitted by:	maintainer
2014-08-09 12:58:39 +00:00
Tilman Keskinoz
80b3ab923d Chase library dependencies after libcdio <-> libcdio-paranoia split
PR:		192271
2014-08-09 10:06:54 +00:00
Joerg Wunsch
bf0c47b0b5 Change the master site to my FreeBSD directory. 2014-08-09 09:06:37 +00:00
Antoine Brodin
bdc5ef9359 Mark BROKEN: fails to build
===>  Building for sgf2tex-3.3_6
cc -g -o sgfsplit sgfsplit.c
/usr/local/bin/etex manual
/usr/local/bin/etex: No such file or directory
*** [manual.dvi] Error code 1

Reported by:	pkg-fallout
2014-08-09 09:01:05 +00:00
Antoine Brodin
ebdf1ab46e Mark BROKEN: fails to install
/bin/cat /wrkdirs/usr/ports/print/latex-auto-greek/work//updmap.inc >> /usr/local/share/texmf-config/web2c/updmap.cfg
/bin/cp /usr/local/share/texmf-dist/tex/generic/hyphen//hyphen.tex /usr/local/share/texmf-dist/tex/generic/hyphen//hyphen.tex.old
cp: /usr/local/share/texmf-dist/tex/generic/hyphen//hyphen.tex: No such file or directory
*** [do-install] Error code 1

Reported by:	pkg-fallout
With hat:	portmgr
2014-08-09 08:59:00 +00:00
Joerg Wunsch
3b43a4b9e8 Add staging support. 2014-08-08 21:17:11 +00:00
Danilo Egea Gondolfo
ab8d75fe30 - Ignore the beta version 2014-08-08 13:27:33 +00:00
Danilo Egea Gondolfo
c8ae0a78b6 - Update from 1.2.1 to 1.2.2
- Update pkg-descr
- Take maintainership
2014-08-07 01:29:53 +00:00
Tijl Coosemans
74a7f8c73c Bump PORTREVISION on more ports that depend on libgcrypt after the update
in r363436 and remove the UPDATING entry because it did not guarantee
that all ports were updated nor that they were updated in the right order.
Also remove libgcrypt.la again.

PR:		192342
Approved by:	portmgr (implicit, bump unstaged ports)
2014-08-05 22:13:29 +00:00
Pietro Cerutti
62d3faabc7 - Update to 2.19.11
- Fix resolution of math functions
2014-08-05 14:09:20 +00:00
Matthias Andree
9cd09c5f5a Forbid installation of these discontinued products.
Since Adobe has issued multiple security advisories for newer versions of the
product, after support for the old version was discontinued, we must assume
that the old versions are also vulnerable.  Hence forbid installation.
2014-08-04 15:10:41 +00:00
Guido Falsi
541582175a - Update to 2.104
- Add conflict with texlive-base

PR:		192214
Submitted by:	Ports Fury
2014-08-03 20:26:38 +00:00
Antoine Brodin
618a2f6d80 Remove print/freetype-tools, it's integrated in TeXLive 2014-08-01 20:06:11 +00:00
William Grzybowski
44a58d7c16 print/gtklp: updte to 1.3.1
PR:		191374
Submitted by:	tkato432 yahoo com
2014-08-01 19:56:01 +00:00
Rene Ladan
967667f6fb Remove expired ports:
2014-08-01 mail/getlive: GetLive project has been declared dead due to MS account conversion
2014-08-01 print/ifxetex: Very outdated and fully contained in texlive-texmf
2014-08-01 lang/dragonegg46-33: Dead upstream, impractical to build on 10 and later
2014-08-01 lang/dragonegg47-33: Dead upstream, impractical to build on 10 and later
2014-08-01 19:51:35 +00:00
Sunpoet Po-Chuan Hsieh
07d5a24c57 - Use PLIST_FILES and PORTDATA instead of PLIST
- Support STAGEDIR
2014-08-01 11:52:48 +00:00
Adam Weinberger
b18d2a018c Add USES=makeinfo to fix build on current. 2014-08-01 01:00:32 +00:00
Rene Ladan
e3d6138364 Remove expired ports:
2014-07-30 mail/postfix27: No longer supported by upstream
2014-07-30 misc/freecode-submit: This software is obsolete. Freecode does not accept updates anymore.
2014-07-30 mail/exim-doc-info: yes
2014-07-31 misc/gman: Depends on expiring ghostview
2014-07-31 print/ghostview: project dead nearly a decade ago; use print/gv instead
2014-07-31 20:44:58 +00:00
Kurt Jaeger
b95d127471 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)
2014-07-30 03:57:23 +00:00
Adam Weinberger
aeac01a4bb Convert some more USE_BZIP2 to USES=tar:bzip2
Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 21:43:17 +00:00
Adam Weinberger
037a3b5bf9 Remove the final usages of USE_XZ from the tree, and replace them with
USES=tar:xz.

Approved by:	portmgr (most of them)
2014-07-29 21:25:30 +00:00
Adam Weinberger
fff296bfe7 Convert a bunch of USE_XZ to USES=tar:xz.
Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 21:07:39 +00:00
Adam Weinberger
a84c115a09 Convert a bunch of EXTRACT_SUFX=... into USES=tar:...
Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 19:11:51 +00:00
Adam Weinberger
bbc8c4d740 Convert a bunch of USE_BZIP2 to USES=tar:bzip2
Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 18:41:15 +00:00
Adam Weinberger
08a006d08a Rename all patches that contain '::' as a path separator, and use
'__' instead.
2014-07-29 17:12:47 +00:00
Adam Weinberger
ba06c2d6a3 Rename p*/ patch-xy patches to reflect the files they modify. 2014-07-29 14:02:16 +00:00
Antoine Brodin
cb4c11c2a5 Remove print/tex-mfpic and print/texpower, they are incorporated in TeXLive 2014-07-28 20:42:01 +00:00
John Marino
d1dbd236f3 print/cups-base: Don't use avahi when MDNSRESPONDER option is selected
PR:		191619
Submitted by:	Don Lewis
Approval:	Not required; port is unmaintained
2014-07-28 19:22:23 +00:00
John Marino
01d088ee13 print/mp-letter: Remove leftover MAKE_ARGS
The definition of STAGEDIR isn't necessary, it was left over from an
earlier version of stage support.

PR:	185989
2014-07-28 11:10:30 +00:00
John Marino
c7c31366c7 stage print/mp-letter & print/mp-a4
Also update MASTER_SITES which have disappeared and moving it to
LOCAL/obrien.  Includes various cleanups like removal of DOS endings
in the makefile.

PR:		185989
Submitted by:	takefu (airport.fm)
Approved by:	maintainer timeout (6 months), staging blanket
2014-07-28 11:05:17 +00:00