Commit graph

8237 commits

Author SHA1 Message Date
Tobias C. Berner
73fc733977 Update KDE Applications to 18.04.3 2018-07-13 17:41:56 +00:00
Koichiro Iwao
bf1feb7b59 bump PORTREVISION after dependency change
Reported by:	pi
Approved by:	pi (mentor)
2018-07-12 02:21:25 +00:00
Antoine Brodin
c9e979fd43 Fix DEPENDS 2018-07-11 18:42:35 +00:00
Koichiro Iwao
6722e7bb90 japanese/p5-Lingua-*: fix duplicate p5-p5- PKGNAMEPREFIX
japanese/p5-Lingua-JA-Moji had duplicate p5-p5- prefix and
japanese/p5-Lingua-JA-Numbers didn't have ja- prefix.
Set ja-p5- prefix to all Lingua ports under Japanese category.

PR:		229184
Submitted by:	Tomohiro Hosaka <bokutin@bokut.in> (initial version)
Reviewed by:	pi, mat
Approved by:	pi (mentor)
Differential Revision:	https://reviews.freebsd.org/D16002
2018-07-11 05:50:47 +00:00
Jun Kuriyama
a3c3502491 - Update to 20180629. 2018-07-10 11:06:30 +00:00
Mathieu Arnold
f6d56007b9 Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.

When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS.  In order of preference, they are:

1) use RUN_DEPENDS to set BUILD_DEPENDS:

BUILD_DEPENDS=	${RUN_DEPENDS}
RUN_DEPENDS=	foo:bar/baz

2) create another variable and use it:

MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS=	${MY_DEPENDS}
RUN_DEPENDS=	${MY_DEPENDS}

3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:

BUILD_DEPENDS=	foo:bar/baz
RUN_DEPENDS:=	${BUILD_DEPENDS}

Sponsored by:	Absolight
2018-07-09 08:40:17 +00:00
Jochen Neumeister
5aad1d0d7f Update to 4.9.7
Changelog: https://wordpress.org/news/2018/07/wordpress-4-9-7-security-and-maintenance-release/

MFH:		2018Q3
Security:	4740174c-82bb-11e8-a29a-00e04c1ea73d
2018-07-08 15:48:03 +00:00
MANTANI Nobutaka
6c19e0bd60 Chase textproc/uim update to 1.8.8. 2018-07-07 15:57:34 +00:00
MANTANI Nobutaka
5d2ce3599f Update to 1.8.8. 2018-07-07 15:56:01 +00:00
Wen Heping
2cdfffd35c - Update to 1.1
PR:		229443
Submitted by:	ryo@tetera.org
2018-07-03 14:10:22 +00:00
Mark Linimon
c7df1277c6 Mark these ports broken on mips64 and/or mips.
While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
2018-07-01 09:17:45 +00:00
Tobias C. Berner
b1a1d38bf9 Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	→https://reviews.freebsd.org/D15540
2018-06-28 17:39:53 +00:00
Mathieu Arnold
f93e7c0f39 Do not force stop services when a package is deinstalled.
Starting or stopping services is the role of pkg(8).

Sponsored by:	Absolight
2018-06-27 13:55:56 +00:00
Li-Wen Hsu
f45fbba263 - Update to 6.0.5 2018-06-26 16:30:49 +00:00
Sunpoet Po-Chuan Hsieh
05f155d9b1 Revert r473259 and r473260 which are committed by accident
- Bump PORTEPOCH for protobuf and py-protobuf
- Bump PORTREVISION for dependent ports
2018-06-24 21:11:14 +00:00
Sunpoet Po-Chuan Hsieh
cf03afc451 Update to 3.6.0
Changes:	https://github.com/google/protobuf/releases
2018-06-24 20:19:45 +00:00
MANTANI Nobutaka
b4888a58a0 Update to 0.5.3.20180520. 2018-06-24 13:41:06 +00:00
Yuri Victorovich
51c264bab7 japanese/ibus-skk: Update 1.4.1 -> 1.4.3
Port changes:
* Add LICENSE/LICENSE_FILE
* Add to RUN_DEPENDS
* Add USE_GNOME
* Add BUILD_DEPENDS for vala
* Update the 'preferences' patch

PR:		227283
Submitted by:	Ryo ONODERA <ryo@tetera.org>
2018-06-23 17:32:36 +00:00
MANTANI Nobutaka
da3ace7dba Update to the latest snapshot on 2016/09/24. 2018-06-23 17:25:30 +00:00
Yuri Victorovich
2166dd6141 japanese/libskk: Update 1.0.1 -> 1.0.3
PR:		227039
Submitted by:	Ryo ONODERA <ryo@tetera.org>
Approved by:	hiroto.kagotani@gmail.com (maintauner timeout; 80 days)
2018-06-23 17:11:11 +00:00
Tobias C. Berner
60539b7275 multimedia/*phonon*: update and flavorize with @qt4/@qt5
Approved by:	portmgr (mat)
Differential Revision:	https://reviews.freebsd.org/D14632
2018-06-21 16:52:09 +00:00
Mathieu Arnold
4376dbbb58 Use PY_FLAVOR for dependencies.
FLAVOR is the current port's flavor, it should not be used outside of
this scope.

Sponsored by:	Absolight
2018-06-20 17:05:41 +00:00
Koichiro Iwao
a270fccefa japanese/another-htmllint: Change dependecy from www/p5-CGI.pm to www/p5-CGI
www/p5-CGI and www/p5-CGI.pm provide same functions and conflict each other.
While a lot of ports use www/p5-CGI, only this one uses www/p5-CGI.pm. By
swiching to use www/p5-CGI this port and others can be installed together.

Also, pass maintainership to the submitter due to consecutive maintainer
timeouts.

PR:		228236
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Approved by:	maintainer timeout,  pi (mentor)
2018-06-18 13:06:38 +00:00
Kurt Jaeger
2e608536ce japanese/font-ume: Fix MASTER_SITES
PR:		228242
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Approved by:	hrs (maintainer timeout)
2018-06-17 19:24:48 +00:00
Kurt Jaeger
8d63f282d7 japanese/FreeWnn-server: remove ftp.freewnn.org from MASTER_SITES
- FTP site no longer works

PR:		228243
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Approved by:	hrs (maintainer timeout)
2018-06-17 19:10:27 +00:00
Tilman Keskinoz
9b05826d01 Unbreak port
PR:		228737
Submitted by:	maintainer
2018-06-13 15:06:42 +00:00
Danilo Egea Gondolfo
5c1e8068cf - Update to 0.20180605 2018-06-10 12:26:00 +00:00
Tobias C. Berner
880f6c87cc Update KDE Applications to 18.04.2 2018-06-10 10:39:35 +00:00
Rene Ladan
7b4e2fac31 Remove expired ports:
2018-06-06 biology/ssaha: Broken for more than 6 months
2018-06-06 biology/crux: Broken for more than 6 months
2018-06-06 biology/ariadne: Broken for more than 6 months
2018-06-06 cad/sceptre: Broken for more than 6 months
2018-06-06 cad/cider: Broken for more than 6 months
2018-06-06 chinese/scim-array: Broken for more than 6 months
2018-06-06 chinese/xpdf: Broken for more than 6 months
2018-06-06 chinese/telnet: Broken for more than 6 months
2018-06-06 comms/java-commapi-freebsd: Depends on BROKEN and expiring comms/java-commapi
2018-06-06 comms/soundmodem: Broken for more than 6 months
2018-06-06 comms/jsdr: Broken for more than 6 months
2018-06-06 comms/java-commapi: Broken for more than 6 months
2018-06-06 converters/pdf2djvu: Broken for more than 6 months
2018-06-06 databases/rdb: Broken for more than 6 months
2018-06-06 databases/animenfo-client: Broken for more than 6 months
2018-06-06 databases/ruby-mysql: Broken for more than 6 months
2018-06-06 databases/riak: Broken for more than 6 months
2018-06-06 databases/animenfo-client-gtk: Broken for more than 6 months
2018-06-06 databases/rdfdb: Broken for more than 6 months
2018-06-06 databases/riak2: Broken for more than 6 months
2018-06-06 devel/subversion-static: Broken for more than 6 months
2018-06-06 japanese/xgate: Broken for more than 6 months
2018-06-06 textproc/opengrm-ngram: Broken for more than 6 months
2018-06-06 textproc/ocaml-tyxml: Depends on BROKEN and expiring www/ocaml-net
2018-06-06 www/ocaml-net: Broken for more than 6 months
2018-06-06 audio/linux-genpuid: Broken for more than 6 months
2018-06-06 x11/enventor: Broken for more than 6 months
2018-06-06 audio/xmms-timidity: Broken for more than 6 months
2018-06-06 audio/kaudiocreator: Broken for more than 6 months
2018-06-06 audio/jxm: Depends on BROKEN and expiring comms/java-commapi
2018-06-06 audio/deforaos-mixer: Broken for more than 6 months
2018-06-06 audio/gkrellmss2: Broken for more than 6 months
2018-06-06 audio/ogg2mp3: Broken for more than 6 months
2018-06-06 audio/abcmidi: Broken for more than 6 months
2018-06-06 benchmarks/netpipe: Broken for more than 6 months
2018-06-06 biology/plink: Broken for more than 6 months
2018-06-07 00:34:18 +00:00
Sunpoet Po-Chuan Hsieh
76609926b7 Fix and sort LICENSE
- Add LICENSE_FILE
- Update WWW

Approved by:	portmgr (blanket)
2018-06-04 18:09:08 +00:00
Rene Ladan
ceb82360f7 Return daichi@'s ports back to the pool after his commit bit got safekept. 2018-06-01 20:21:37 +00:00
Joseph Mingrone
f245813f18 japanese/mozc-server: Unmark BROKEN and fix poudrirere/ccache build
The build failed with CCACHE_DIR_NON_ROOT_SAFE=yes in poudriere.conf.

Submitted by:	bdrewery
Reported by:	Tomoaki AOKI <junchoon@dec.sakura.ne.jp>
2018-06-01 18:13:24 +00:00
Joseph Mingrone
107b408c31 USES=emacs ports: Bump PORTREVISION for editors/emacs 26.1 upgrade
Or, mark ports that fail to build as BROKEN.
https://lists.freebsd.org/pipermail/freebsd-ports/2018-May/113518.html
2018-05-31 01:18:05 +00:00
Koichiro Iwao
0f1d7a81a3 Commit forgotten diff at previous commit r471075 2018-05-30 15:21:28 +00:00
Koichiro Iwao
5dd685faaf japanese/font-ricty{,-discord}: Update to 4.1.1
ricry_discord_converter.pe is no longer needed as everything's provided in
one script.

Also while here,
- Adjust indents
- Add NO_ARCH
- Remove "Created by:" line credits myself and masaki
  (approved via private communications)

Changes:	http://www.rs.tus.ac.jp/yyusa/ricty.html
Approved by:	pi (mentor, initial version)
Sponsored by:	HAW International, Inc.
Differential Revision:	https://reviews.freebsd.org/D15474
2018-05-29 03:20:20 +00:00
Sunpoet Po-Chuan Hsieh
ad4f267b7a Update WWW
search.cpan.org is shutting down.
It will redirect to metacpan.org after June 25, 2018.

With hat:	perl
2018-05-27 20:15:16 +00:00
Jochen Neumeister
f653bbbca0 Update to 4.9.6
Changelog: https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/
2018-05-25 21:22:29 +00:00
Danilo Egea Gondolfo
b62198200c - Update to 0.20180509 2018-05-19 19:00:36 +00:00
Jun Kuriyama
a244d3802c - Update to 20180427. 2018-05-16 11:57:42 +00:00
Sunpoet Po-Chuan Hsieh
c8ed9403d7 Update MASTER_SITES and unbreak this port
MFH:		2018Q2
2018-05-14 16:27:20 +00:00
Tobias C. Berner
74fcc5aebb Update KDE Applications to 18.04.1 2018-05-11 06:09:39 +00:00
Li-Wen Hsu
afbc70f91b - Update to 6.0.4 2018-05-10 03:40:37 +00:00
Alexey Dokuchaev
cfc7bf4da3 For ports in `japanese' category: remove redundant PKGMESSAGE assignment,
which is set appropriately by the b.p.m when `pkg-message' appears on the
SUB_FILES list.
2018-05-05 13:59:47 +00:00
Antoine Brodin
13b62c630f Deprecate ports broken for more than 6 months 2018-05-05 10:49:36 +00:00
MANTANI Nobutaka
3c189b4786 - Fix license information.
- Regenerate patch by 'make makepatch' to fix portlint warning.
- Add NO_ARCH.

PR:		222535
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
2018-04-30 13:12:56 +00:00
Tobias C. Berner
e714368786 Update KDE Applications to 18.04.0
* Pin multimedia/kdelive at 17.12.3 until we import the mlt update from the dev-repo.
2018-04-28 18:11:49 +00:00
Mathieu Arnold
b4b1816b21 Only sleep in ports if BATCH/PACKAGE_BUILDING are not defined.
Sponsored by:	Absolight
2018-04-25 22:00:04 +00:00
Jochen Neumeister
9be1053221 Update to 4.9.5
MFH:		2018Q2
Security:	be38245e-44d9-11e8-a292-00e04c1ea73d
2018-04-20 21:08:58 +00:00
MANTANI Nobutaka
50dc6a76c8 - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Remove unnecessary pkg-install.in.
- Bump PORTREVISION.

PR:		225125 [1], 226511 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
Approved by:	maintainer timeout (one month)
2018-04-15 13:52:21 +00:00
MANTANI Nobutaka
7f344b4cfe - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Remove unnecessary pkg-install.in.
- Bump PORTREVISION.

PR:		225125 [1], 226520 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
Approved by:	maintainer timeout (one month)
2018-04-15 13:46:57 +00:00
Tobias C. Berner
d75e23b9ec New port: japanese/kiten
This is the current version of KDE Applications <foo>.
Note that users of KDE SC4 should stick with <foo>-kde4.
2018-04-09 16:36:33 +00:00
MANTANI Nobutaka
4d0dd3138c - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Remove unnecessary pkg-install.in.
- Bump PORTREVISION.

PR:		225125 [1], 226515 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
Approved by:	maintainer timeout (two weeks)
2018-04-08 13:13:27 +00:00
Li-Wen Hsu
f227ff4a34 - Update to 6.0.3 2018-04-08 10:42:32 +00:00
Danilo Egea Gondolfo
7c90405180 - Update to 0.20180402 2018-04-05 03:04:57 +00:00
Dmitry Marakasov
18a6cf3d01 - Update WWW
Approved by:	portmgr blanket
2018-03-30 09:33:25 +00:00
Koichiro Iwao
94ab5e2c70 japanese/another-htmllint: add misssing RUN_DEPENDS on www/p5-LWP-Protocol-https
as it is necessary to access https contents.  Also,

- Add license information
- Bump PORTREVISION for dependency change
- While here, pet some portlint warnings

PR:		222276, 226089
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
Approved by:	maintainer timeout (1 month+), pi (mentor)
2018-03-27 06:10:56 +00:00
Antoine Brodin
d661363b50 Fix depends 2018-03-26 21:18:15 +00:00
Baptiste Daroussin
3147bb6c6b Make libgnome and libgnomeui not implying esound dependency
It has been a while both does not depend anymore on esound, before this change
esound dependency was wrongly added to plenty of packages which actually does
not depend on it.

While here:

- audio/glame: remove esound support
- games/monkeybubble: add an explicit dependency on esound
- sysutils/gnome-schedule: add en explicit dependency on pkg-config
- comms/kb: add missing dependency on pkgconfig
- x11-toolkits/libgnomeui:
  * update to 2.4.5
  * use USES=localbase
2018-03-26 12:38:56 +00:00
MANTANI Nobutaka
a7f909bb3c - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Remove unnecessary pkg-install.in.
- Bump PORTREVISION.

PR:		225125 [1], 226518 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
Approved by:	maintainer
2018-03-25 16:13:31 +00:00
MANTANI Nobutaka
e4be7f3703 - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Bump PORTREVISION.
- Set submitter as maintainer.

PR:		225125 [1], 226517 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
2018-03-25 14:42:13 +00:00
MANTANI Nobutaka
b169d18212 - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Remove unnecessary pkg-install.in.
- Bump PORTREVISION.

PR:		225125 [1], 226516 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> (maintainer) [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
2018-03-25 14:18:17 +00:00
MANTANI Nobutaka
22c4b23f32 - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Remove unnecessary pkg-install.in.
- Bump PORTREVISION.

PR:		225125 [1], 226516 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> (maintainer) [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
2018-03-25 14:07:48 +00:00
Sunpoet Po-Chuan Hsieh
06bfeeb0b0 Rename MASTER_SITE_SOURCEFORGE_JP to MASTER_SITE_OSDN
PR:		225609
Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
2018-03-24 21:12:13 +00:00
Koichiro Iwao
853c80c70a Update MAINTAINER to my new FreBSD.org account
also update my email address in "Created by:" field.

Approved by:	hrs (mentor)
2018-03-20 06:16:18 +00:00
Jun Kuriyama
f4af458e54 - Update to 20180228. 2018-03-19 22:31:08 +00:00
Li-Wen Hsu
6b0c7daec2 - Update LibreOffice to 6.0.2 [1]
- Build offline help when DOCS option enabled [2]
- Fix bad symlink and add missing dependencies [3]

PR:		224288 [1] 197071 [2] 226344 [3]
Submitted by:	Greg V <greg@unrelenting.technology> [1]
		bergerkos@yahoo.co.uk [2]
Reported by:	joneum [3]
Helped & tested by:	Daniel Ebdrup
			Greg Veldman <freebsd@gregv.net>
			Per olof Ljungmark <peo@nethead.se>
			StariKarp <starikarp@yandex.com>
			pi
Security:	289269f1-0def-11e8-99b0-d017c2987f9a
2018-03-17 06:31:11 +00:00
Bryan Drewery
d22b428d28 Fix WITH_CCACHE_BUILD support 2018-03-15 20:00:47 +00:00
Hajimu UMEMOTO
db7032cc2d Simplify. 2018-03-15 16:21:09 +00:00
Hajimu UMEMOTO
5d45dca880 Fix xlfd for the monospaced fonts. 2018-03-15 15:54:14 +00:00
Hajimu UMEMOTO
abdc1ccb3b Add new port -- Cica Japanese monospaced fonts for programming 2018-03-15 05:39:23 +00:00
Antoine Brodin
02cc9fc700 Fix depends after font-mona upgrade 2018-03-11 21:16:26 +00:00
MANTANI Nobutaka
1322f330bd - Install font files to ${FONTSDIR} instead of ${DATADIR}.
- Stop to make symbolic links from the font files to
  ${PREFIX}/share/fonts/misc/, which is found in the default
  font path, because recent libXfont does not follow symbolic
  links.
- Add pkg-message.in to show additional font path settings.
- Remove unnecessary pkg-install.in.
- Bump PORTREVISION.

PR:		225125 [1], 226519 [2]
Submitted by:	WATANABE Kazuhiro <CQG00620@nifty.ne.jp> [2]
Reported by:	Shigeharu TAKENO <shige@iee.niit.ac.jp> [1]
2018-03-11 14:57:29 +00:00
Gerald Pfeifer
c2a92a1aea Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
2018-03-10 17:46:04 +00:00
Tilman Keskinoz
283771692c Update to 2.13.4.18
PR:		226025
Submitted by:	maintainer
2018-03-09 17:39:11 +00:00
Mark Linimon
831463e21d The BROKEN line is redundant here, as IGNORE for powerpc64 is set in the
MASTERDIR.

Approved by:	portmgr (tier-2 blanket)
2018-03-09 16:44:35 +00:00
Mathieu Arnold
a1993564e0 Introduce PHP flavors.
Ports using USES=php:phpize, php:ext, php:zend, and php:pecl are now
  flavored.  They will automatically get flavors (php56, php70, php71, php72)
  depending of the versions they support (set with IGNORE_WITH_PHP).  As a
  consequence, ports using USES=pear and USES=horde are also flavored.

PR:		226242
Submitted by:	mat
Exp-run by:	antoine
Approved by:	portmgr
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D14208
2018-03-08 19:48:41 +00:00
TAKATSU Tomonari
443f1f1674 - Remove unnecessary line from files/pkg-deinstall.in
- Fix files/pkg-install.in

Pointed out by:	riggs@
MFH:		2018Q1
2018-03-05 10:22:20 +00:00
Danilo Egea Gondolfo
f5e85f45e4 - Update to 0.20180301 2018-03-04 16:30:58 +00:00
Rene Ladan
3ad2777f61 japanese/migemo: remove now obsolete deprecated-if-slave section
Reported by:	jrm
2018-03-02 20:11:57 +00:00
Rene Ladan
2d1cca0907 Remove expired ports:
2018-03-01 devel/dotconf++: No upstream, not depend on in the ports tree
2018-03-01 emulators/gnuboy: Latest version is 1.0.5, older version does not fetch
2018-03-01 games/adgali: Mastersite disappeared
2018-03-01 games/tuxpuck: Mastersite disappeared
2018-03-01 japanese/migemo-emacs: Unmaintained
2018-03-01 math/clarence: Mastersite disappeared
2018-03-01 devel/cstringbuffer: Abandonware, no more upstream
2018-03-01 deskutils/charmap: Mastersite disappeared
2018-03-01 devel/afay: Abandonware, not used in the ports tree
2018-03-01 devel/alabastra: Abandonware, not used in the ports tree
2018-03-01 devel/adime: Abandonware, not used in the ports tree
2018-03-01 devel/boaconstructor: Abandonware, does not work with recent python/wxPython
2018-03-01 audio/amp: No more upstream
2018-03-01 devel/alf: Abandonware, unused in the ports tree
2018-03-02 19:10:48 +00:00
Hiroki Sato
acfcdc7aee Update to 2.1.4.
Submitted by:	Yasuhiro KIMURA
PR:		226259
2018-03-01 17:19:10 +00:00
Hiroki Sato
7a9d8b76d2 Update to 2.1.4. 2018-02-28 06:26:54 +00:00
TAKATSU Tomonari
84f5aa4671 - Add CVE-2018-5950 patch [1]
- Update MASTER_SITES [1]
- USES shebangfix
- Regenerate patches with makepatch
- Fix pkg-plist to make portlint happy

PR:		225703 [1]
Submitted by:	Yasuhito FUTATSUKI
MFH:		2018Q1
Security:	CVE-2018-5950
2018-02-25 10:44:59 +00:00
Sunpoet Po-Chuan Hsieh
ee8a18b10b Update to 2.0.8
- Add missing RUN_DEPENDS

Changes:	https://github.com/kuroda/mail-iso-2022-jp/blob/master/CHANGELOG.md
2018-02-23 19:24:48 +00:00
Tobias C. Berner
a4a7daf069 Give the KDE SC4 applications ports a -kde4 suffix
In order to make room for the up-to-date version of the KDE Desktop and its
applications move the KDE Application ports based on Qt4.

PR:		225992
Exp-run by:	antoine
Reviewed by:	rakuco, adridg
Differential Revision:	https://reviews.freebsd.org/D14413
2018-02-22 19:03:17 +00:00
Antoine Brodin
f7455240e3 Reduce dependency on the python2 metaport
PR:		225752
Submitted by:	Yasuhiro KIMURA
2018-02-19 11:10:43 +00:00
Yuri Victorovich
90bfc6141a japanese/ddskk: Update to 16.2
kenji@k2r.org took maintainership based on:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=222421#c6

Additional port changes:
* Changed to DISTVERSION
* Moved URLs with better availability to the beginning of MASTER_SITES

PR:		222421
Submitted by:	kenji.rikitake@acm.org
Approved by:	tcberner (mentor, implicit)
2018-02-17 15:54:56 +00:00
Danilo Egea Gondolfo
561c1096a0 - Update to 0.20180202 2018-02-11 12:36:12 +00:00
Tobias C. Berner
737c1cc56d Rename KDE4 meta ports
This is done for
 * consistency,
 * and to simplify the import of the newer KDE Plasma5 desktop and KDE applications

Bumps the dependencies.

Reviewed by:	adridg
Differential Revision:	https://reviews.freebsd.org/D12979
2018-02-10 10:29:51 +00:00
Tobias C. Berner
66ad1342d6 Update japanese/lookup to 1.99.96.20180209
* Update to 1.99.96.20130920.
* Switch master site to GitHub.
* Update LICENSE.
* Remove EMACS_FLAVORS_EXCLUDE because this version of Lookup can be built with editors/emacs-devel.
* Update description and WWW in pkg-descr.
* Add entry to UPDATING about incompatibility.

PR:		225748
Submitted by:	yasu@utahime.org (maintainer)
2018-02-09 23:43:58 +00:00
Jochen Neumeister
a92dcb3ec4 Update to 4.9.4
Changelog:
 https://wordpress.org/news/2018/02/wordpress-4-9-3-maintenance-release/
 https://wordpress.org/news/2018/02/wordpress-4-9-4-maintenance-release/

Approved by:	mentors (implicit)
MFH:		2018Q1
2018-02-09 22:48:12 +00:00
Mathieu Arnold
d7640e6c92 Note PHP ports that do not build with 7.2.
Sponsored by:	Absolight
2018-02-07 17:46:10 +00:00
Joseph Mingrone
8d7f6301e7 japanese/migemo-emacs: Deprecate and mark for deletion in one month 2018-02-02 19:50:59 +00:00
Joseph Mingrone
d2a6ddc438 Flavorize and modernize Emacs ports
This is an addendum to r460621 to fix the histories of Mk/Uses/emacs.mk
(copied from Mk/bsd.emacs.mk) and japanese/migemo-emacs (copied from
japanese/migemo-emacs23).

- Convert USE_EMACS to USES=emacs
- Rename japanese/migemo-emacs23 to japanese/migemo-emacs

Differential Revision:	https://reviews.freebsd.org/D13506
2018-02-02 13:43:14 +00:00
Joseph Mingrone
252f69e330 Remove Mk/Uses/emacs.mk and japanese/migemo-emacs
The svn histories were not preserved in r460621, so remove then restore
from r460620.

Differential Revision:	https://reviews.freebsd.org/D13506
2018-02-02 13:32:05 +00:00
Joseph Mingrone
a3cc513bfc Flavorize and modernize Emacs ports
- Convert USE_EMACS to USES=emacs
- Remove editors/emacs-nox11 (refer to nox flavors of editors/emacs and
  editors/emacs-devel)
- Permit default Emacs flavor to be specified in make.conf
- Rename japanese/migemo-emacs23 to japanese/migemo-emacs
- Update and simplify audio/emms and fix build on FreeBSD 10 [1]
- Update databases/bbdd and fix build on FreeBSD 10 [1]
- Update editors/emacs-devel
- Ensure Makefile shell commands that change directory are executed in a
  subshell
- Silence some portlint warnings

[1] By not depending on base texinfo

PR:		225404
Reviewed by:	antoine
Approved by:	portmgr (mat) ashish (maintainer)
Differential Revision:	https://reviews.freebsd.org/D13506
2018-02-01 18:03:09 +00:00
Alexey Dokuchaev
55a6df6d79 Exit from main() function properly on success to fix weird installation
problem observed on sparc64.
2018-01-22 11:49:15 +00:00
Antoine Brodin
e3d058fb6b Fix build with clang 6
trainer.cpp:106:18: error: no matching function for call to 'make_pair'
    x_.push_back(std::make_pair<std::string, FeatureNode *>(y, fn));
                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

PR:		224669
Reported by:	pkg-fallout
2018-01-21 10:08:40 +00:00
Jochen Neumeister
10794c4208 Securityupdate to 4.9.2:
Changelog:
 https://codex.wordpress.org/Version_4.9.2
 https://wordpress.org/news/2018/01/wordpress-4-9-2-security-and-maintenance-release/

Approved by:	mentors (implicit)
MFH:		2018Q1
Security:	c04dc18f-fcde-11e7-bdf6-00e04c1ea73d
2018-01-19 07:09:28 +00:00
Alexey Dokuchaev
7b85b686ee Remove superfluous linefeeds and fix some other minor whitespace bugs. 2018-01-11 16:53:44 +00:00