Commit graph

7799 commits

Author SHA1 Message Date
Tijl Coosemans
d0d15cc5cd Enable i386 support to Linux CentOS 7 ports.
PR:		216646
2017-01-31 20:32:46 +00:00
Tijl Coosemans
6140d3c6aa - Autodetect the installed linux_base port and use LINUX_DEFAULT only as
a last resort.
- Construct a list of DISTFILES for every architecture (amd64, i386).
  Select one list for regular make and all lists for make makesum so linux
  ports can have one combined distinfo file.
- Set DIST_SUBDIR?=centos so there's only one copy of common distfiles.
- Use MASTER_SITES and DISTFILES groups so make fetch is a bit smarter.
- Regenerate all distinfo files.
- For linux_base-c6 (just like linux_base-c7 already does) turn bin, lib,
  lib64 and sbin into symbolic links to the same directory under usr.
  This fixes the problem where some programs/libraries exist under / on
  FreeBSD and /usr on Linux or vice versa and then depending on the order
  of search paths Linux programs may run/load FreeBSD programs/libraries
  and fail.
- Turn usr/share/icons into a symbolic link to LOCALBASE/share/icons so
  Linux programs can find desktop theme icons.  This eliminates the need
  for x11-themes/linux*-hicolor-icon-theme.
- Rename pkg-plist.x86_64 to pkg-plist.amd64.
- Regenerate all pkg-plist files.
- Add @preexec to linux_base pkg-plist that moves existing files in bin,
  lib, lib64, sbin and icons to the new destination before the directories
  are turned into symbolic links.
- Remove several empty directories from linux_base ports.
- Sweep over all linux ports: use consistent style, remove old CONFLICTS,
  remove unused pkg-descr files, add NLS option,...
- Remove old linux arts, esound and openssl-compat ports.
2017-01-31 16:54:21 +00:00
Tobias C. Berner
0af3f5648f Update KDE Frameworks to 5.30.0
* Changelog: https://www.kde.org/announcements/kde-frameworks-5.30.0.php
* New framework: x11/kf5-kwayland

PR:		216345
Exp-run by:	antoine
Reviewed by:	rakuco
Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D9271
2017-01-26 18:19:47 +00:00
Guido Falsi
2bec1ee09e - Main download site uses https
- Due to problems downloading the distfile from the cluster, add a
  mirror.
2017-01-25 15:52:14 +00:00
Dmitry Marakasov
56287f7fbb - Update WWW 2017-01-23 16:31:15 +00:00
Raphael Kubo da Costa
265ef2119d Replace spaces with tabs. 2017-01-21 14:41:09 +00:00
Sunpoet Po-Chuan Hsieh
0e04efec5a Update WWW: SF redirects to https://sourceforge.net/projects/<PROJECT_NAME>/ 2017-01-20 20:33:30 +00:00
Tijl Coosemans
c2712d2471 Update Linux CentOS 7 ports to 7.3.1611. While 7.2 had semi-official i386
packages there are no such packages for 7.3 yet so i386 support has been
marked IGNORE for now.

Change DIST_SUBDIR to just "centos" so distfiles that remain the same
between major versions don't have to be redownloaded.

Remove fmake hacks from linux.mk.

Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
2017-01-19 15:44:53 +00:00
Tijl Coosemans
02f27a83b4 The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user.  Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables.  LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well.  The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.

Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).

PR:		215882
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2017-01-18 13:20:31 +00:00
Jan Beich
00ac7e3ae0 x11-toolkits/fltk-devel: unbreak with clang 4.0
src/Fl_Tree_Item.cxx:552:38: error: ordered comparison between pointer and zero ('Fl_Tree_Item *' and 'int')
    if ( from_parent->deparent(from) < 0 )      // deparent self from current parent
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~

PR:		216046
Obtained from:	upstream (branch-1.3)
Approved by:	portmgr blanket
MFH:		2017Q1 (r431752 followup)
2017-01-18 11:21:41 +00:00
Jan Beich
6708df81f7 x11-toolkits/fltk: unbreak with clang 4.0
Fl_Tree_Item.cxx:552:38: error: ordered comparison between pointer and zero ('Fl_Tree_Item *' and 'int')
    if ( from_parent->deparent(from) < 0 )      // deparent self from current parent
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~

PR:		216046
Obtained from:	upstream (branch-1.3)
Approved by:	portmgr blanket
MFH:		2017Q1 (changes behavior)
2017-01-17 16:48:06 +00:00
Dmitry Marakasov
3ea45bdb60 - Add missing depends
- Cosmetic fixes
2017-01-17 12:41:40 +00:00
Dmitry Marakasov
800bd840bf - Take maintainership
- Cosmetic fixes
2017-01-16 13:19:13 +00:00
Guido Falsi
eb2e92ecac Fix ocaml-lablgtk2 after r431473 (ocaml-findlib update to 1.7.1).
After this update ocamlfindlib returns two paths separated by a
colon for the destdir, but lablgtk2 configure scripts is not
separating them so it installs things in the wrong place where they
are not grabbed when building the package. Make it extract only the
firsst coponent of the path list.

This fixes build of unison and other dependent ports.
2017-01-16 07:59:08 +00:00
Guido Falsi
7839017c83 Update girara to 0.2.7
PR:		216002
Submitted by:	Michael Danilov <mike.d.ft402@gmail.com>
2017-01-15 22:51:31 +00:00
Sunpoet Po-Chuan Hsieh
9f06a1f62e Convert to options target helper 2017-01-12 20:03:22 +00:00
Tijl Coosemans
83579f491e Make 64 bit Linux packages the default on amd64. 2017-01-12 10:44:45 +00:00
Steve Wills
429c20bf3a x11-toolkits/rubygem-uh: create port
Xlib ruby toolkit

WWW: https://rubygems.org/gems/uh

PR:		208137
Submitted by:	Thibault Jouan <tj+freebsd_bugs@a13.fr>
2017-01-11 15:45:03 +00:00
Dmitry Marakasov
8244fe99bc - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by:	portmgr blanket
2017-01-11 10:08:38 +00:00
Dmitry Marakasov
9d79e7b146 - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL
Approved by:	portmgr blanket
2017-01-09 13:16:49 +00:00
Olivier Duchateau
47706eca19 Chase update of graphics/poppler (and slaves ports) in revision r430777 2017-01-07 10:42:51 +00:00
Jan Beich
59e02117ae devel/boost-*: update to 1.63.0
Changes:	http://www.boost.org/users/history/version_1_63_0.html
PR:		215598
Exp-run by:	antoine
Approved by:	office (bapt)
MFH:		2017Q1
2017-01-06 08:45:03 +00:00
Sunpoet Po-Chuan Hsieh
16001b9962 Update to 1.50
Changes:	http://search.cpan.org/dist/Prima/Changes
2017-01-05 19:33:51 +00:00
Dmitry Marakasov
9c8a649e64 Remove always-true/false conditions after 9.x, 10.[12] EOL
While here, couple minor fixes

portmgr blanket
2017-01-05 11:00:49 +00:00
Alberto Villa
ec5356436e - Fix WWW
Reported by:	adamw
2017-01-04 16:50:19 +00:00
Alberto Villa
b8e66bf773 Diorite is a a grey to dark-grey intermediate intrusive igneous rock.
Diorite library is a utility and widget library for Nuvola Player
project based on GLib, GIO and GTK+ 3.

WWW: https://tiliado.eu/diorite
2017-01-04 12:30:30 +00:00
Jan Beich
b557ec87bb Assume "pkg-config zlib" works after 9.x reached EOL 2017-01-03 18:43:02 +00:00
Sunpoet Po-Chuan Hsieh
f28f9fbfcd Update to 0.12
Changes:	http://search.cpan.org/dist/Tk-ToolBar/Changes
2017-01-02 15:21:08 +00:00
Steve Wills
d278c5733f x11/rubygem-gnome2: update to 3.1.0
Update x11/rubygem-gnome2 and friends to 3.1.0
2017-01-01 18:57:52 +00:00
Adam Weinberger
6692493837 Purge checks for perl < 5.20. For p5-Net, remove the IPV6 knob which only
affected 5.18 and lower.
2016-12-31 19:51:34 +00:00
Rene Ladan
2ed6ce3377 Remove these expired Linux Fedora 10 ports too, this broke INDEX
x11-toolkits/linux-f10-tk85
x11-toolkits/linux-f10-blt
2016-12-31 18:13:49 +00:00
Rene Ladan
0896b32448 Drop support for Linux Fedora 10 (ports part)
games/dsnake only worked with linux-f10

Should fix INDEX

audio/linux-f10-sdl_mixer
audio/linux-f10-pulseaudio-libs
audio/linux-f10-freealut
audio/linux-f10-arts
audio/linux-f10-esound
audio/linux-f10-libogg
audio/linux-f10-alsa-plugins-oss
audio/linux-f10-openal
audio/linux-f10-openal-soft
audio/linux-f10-nas-libs
audio/linux-f10-alsa-lib
audio/linux-f10-libvorbis
audio/linux-f10-libaudiofile
audio/linux-f10-mikmod
databases/linux-f10-sqlite3
devel/linux-f10-dbus-glib
devel/linux-f10-sdl12
devel/linux-f10-libglade2
devel/linux-f10-devtools
devel/linux-f10-allegro
devel/linux-f10-nspr
devel/linux-f10-dbus-libs
devel/linux-f10-libsigc++20
devel/linux-f10-ncurses-base
dns/linux-f10-libasyncns
emulators/linux_base-f10
emulators/linux-f10
ftp/linux-f10-curl
games/dsnake
graphics/linux-f10-sdl_image
graphics/linux-f10-sdl_ttf
graphics/linux-f10-glew
graphics/linux-f10-ungif
graphics/linux-f10-png
graphics/linux-f10-tiff
graphics/linux-f10-dri
graphics/linux-f10-jpeg
graphics/linux-f10-libGLU
graphics/linux-f10-gdk-pixbuf
graphics/linux-f10-libmng
graphics/linux-f10-cairo
graphics/linux-f10-imlib
lang/linux-f10-tcl85
lang/linux-f10-libg2c
multimedia/linux-f10-libtheora
multimedia/linux-f10-libv4l
net/linux-f10-openldap
net/linux-f10-nss_ldap
print/linux-f10-cups-libs
security/linux-f10-gnutls
security/linux-f10-nss
security/linux-f10-openssl
security/linux-f10-libgpg-error
security/linux-f10-libtasn1
security/linux-f10-libgcrypt
security/linux-f10-libssh2
security/linux-f10-cyrus-sasl2
sysutils/linux-f10-procps
textproc/linux-f10-aspell
textproc/linux-f10-expat
textproc/linux-f10-scim-gtk
textproc/linux-f10-scim-libs
textproc/linux-f10-libxml2
x11/linux-f10-xorg-libs
x11-fonts/linux-f10-fontconfig
x11-themes/linux-f10-qtcurve-gtk2
x11-themes/linux-f10-hicolor-icon-theme
x11-toolkits/linux-f10-qt45
x11-toolkits/linux-f10-gtk2
x11-toolkits/linux-f10-openmotif
x11-toolkits/linux-f10-pango
accessibility/linux-f10-atk
archivers/linux-f10-ucl
archivers/linux-f10-upx
2016-12-31 17:25:05 +00:00
Dmitry Marakasov
f1749e4ab1 - Remove bogus (in presence of USE_GITHUB) USES=tar*
- While here, minor cosmetic and license fixes

Approved by:	portmgr blanket
2016-12-29 14:29:18 +00:00
Raphael Kubo da Costa
4311232afd Update to 0.18.
This is a bug fix update, release hilights:
- fix Python 3 buffer abstraction
- fix interrupted select handling for Python 3.3/3.4
- fix Unix socket support when only an abstract address is available

PR:		215604
Submitted by:	Eero Hänninen <fax@nohik.ee> (maintainer)
2016-12-27 18:41:21 +00:00
Sunpoet Po-Chuan Hsieh
e4acfa9b80 - Add py36-tkinter (copied from py35-tkinter) 2016-12-25 19:23:52 +00:00
Jason E. Hale
91d08fdb2c - Update to 1.7.57
- Add TEST option
- Make PNG support non-optional since audio/gogglesmm won't run without it
- Enable XIM support
- Convert to USES=localbase and clean up flags
2016-12-25 13:11:34 +00:00
Sunpoet Po-Chuan Hsieh
75b5c946b5 - Move x11-toolkits/py-kiwi to x11-toolkits/py-kiwi-gtk
- Sort USE_PYTHON
- Convert to options target helper
- Bump PORTREVISION for dependent ports
2016-12-24 13:04:07 +00:00
Baptiste Daroussin
5e69c9d265 Remove instances of @*exec and remove useless @comment 2016-12-22 22:45:54 +00:00
David Naylor
ea4f9ad8a0 x11-toolkits:libgdiplus: add missing dependencies, license
- Add LICENSE as Mozilla Public License, use license file from source.
 - Add missing and indirect dependencies.

PR:		213973
2016-12-20 14:30:33 +00:00
Tobias C. Berner
1afa5c8a42 Update KDE Frameworks to 5.29.0
Release notes: https://www.kde.org/announcements/kde-frameworks-5.29.0.php

New ports:
* textproc/kf5-syntax-highlighting (new in 5.28.0)
* graphics/kf5-prison (new in 5.29.0)

Fixes:
* kf5-kservice: Move applications.menu to kf5-applications.menu to stop conflicting with kdelibs4.
* Define conflicts in the kde4-l10n ports (debian does the same).
* kf5-kapidox: Fix with python3

Thanks to Matthew Rezny <matthew@reztek.cz> for looking at the conflicts in 214528,
and Dima Panov (fluffy@) for the python3 fix.

PR:     214528
Reviewed by:    rakuco, mat
Approved by:    rakuco (mentor)
Differential Revision:  https://reviews.freebsd.org/D8776
2016-12-19 15:56:24 +00:00
Tobias C. Berner
62ede14c75 Get rid of QT_PREFIX in favour of PREFIX.
QT_PREFIX was a remnant of a bygone time.

Reviewed by:    rakuco
Approved by:    rakuco (mentor)
Differential Revision:  https://reviews.freebsd.org/D8825
2016-12-18 22:06:50 +00:00
Johan van Selst
2127a44c33 Stepping down as maintainer for some ports. 2016-12-14 21:48:10 +00:00
Jason E. Hale
20dd683143 x11-toolkits/scintilla, editors/scite: Update to 3.7.1
Changes:	http://www.scintilla.org/ScintillaHistory.html
PR:		215234
Submitted by:	lightside <lightside@gmx.com>
Approved by:	Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
2016-12-12 00:40:45 +00:00
Jan Beich
0c612c4aa3 multimedia/ffmpeg: update to 3.2.2
Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog
PR:		207547
Submitted by:	riggs, ebirth@b0ss.net (libressl fix)
Exp-run by:	antoine (3 tries)
2016-12-11 15:22:47 +00:00
Tijl Coosemans
f83c7639aa Remove libintl.so.9 compatibility link that was added in r374303 to
prevent massive PORTREVISION bumps.  Bump dependent ports that have not
been bumped since.
2016-12-08 19:52:19 +00:00
Tijl Coosemans
094d906123 Remove libart_lgpl_2.so.5 compatibility link that was added in r374303 to
prevent massive PORTREVISION bumps.  Bump dependent ports that have not
been bumped since.
2016-12-08 17:17:43 +00:00
Olivier Duchateau
2f2cdc75b8 Update to 0.7.0
PR:		212971
Submitted by:	myself (olivierd@)
Approved by:	Jason Bacon (maintainer)
2016-12-06 16:44:34 +00:00
Mathieu Arnold
8b4093cba5 Do not use post-stage. Use post-install instead.
The only reason to use post-stage is because the port needs to do
"things" at a later time, like some plist manipulation.
While there, fold post-install in do-install targets when they are
defined.

PR:		214780
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
2016-12-02 11:58:21 +00:00
Tobias C. Berner
f38d6cb92b Fix build of x11-toolkits/qt5-charts after r427356.
Unfortunately due to a wrong assumption, I missed the new
port x11-toolkits/qt5-charts in r427356, so this port
wrongly used QT_LIBDIR while not being part of QT_DIST (yet).

While here, also add a patch to install the pkgconfig file
to the proper location (another error, caused by not
being QT_DIST-ed).

Approved by: rakuco (mentor)
2016-12-02 11:29:19 +00:00
Tobias C. Berner
3a75aa23af New port: x11-toolkits/qt5-charts
Qt released some fancy classes to draw nice charts:
https://blog.qt.io/blog/2016/01/18/qt-charts-2-1-0-release/

With Qt 5.7 this will come bundled as a submodule.
For now we can fetch it from github.

This is based on the version by Marie Loise Nolden from
our experimental Qt-5.7.1 ports.

Submitted by:	Marie Loise Nolden <nolden@kde.org>
Reviewed by:	rakuco
Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D8648
2016-11-28 17:03:39 +00:00