aboutsummaryrefslogtreecommitdiffstats
path: root/japanese
Commit message (Collapse)AuthorAgeFilesLines
* Stage supportantoine2014-01-101-12/+11
|
* In preparation for Qt 5 ports:makc2014-01-072-17/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mk/Uses/qmake.mk: - Add support for out-of-source builds - Add support for Qt 5 ports - Respect WITH_DEBUG Mk/bsd.qt.mk: - Massive rework for Qt 5 ports - Remove '-phonon' from global configure args, thus allow qt4-designer and qt4-qtconfig to be built without Phonon support [1] devel/qmake4: - Improve mkspecs for gcc (mainly sync with linux version) and clang devel/qt4-corelib: - Convert to USES=iconv - Remove ancient patch devel/qt4-designer: - Remove reference to WRKSRC from installed pkgconfig files [2] - Don't build Qt Designer plugin for Phonon from outdated Qt sources. Separate port for plugin will be committed later devel/qt4-assistant-adp, devel/qt4-libqtassistantclient: - Convert to USES=qmake Clean up Qt4 ports: - Update comments - Update description; use common description - Consistently use QT_INCDIR, QT_LIBDIR, etc. - Use options helpers - Convert to new LIB_DEPENDS syntax - Update DESKTOP_ENTRIES to avoid conflicts with Qt 5 ports - Rename/move several ports for unification with Qt 5 ports PR: ports/184620 [1] Reported by: Kevin Zheng <kevinz5000@gmail.com> PR: ports/181141 [2] Reported by: thierry PR: ports/185101 Exp-run by: bdrewery This is mostly solely avilla's work in area51, kudos to him! And a couple commits from myself, so you know who's collecting pointyhats :)
* With gtk 2.4.22, immodule cache has moved from gtk.immodules toantoine2014-01-052-13/+10
| | | | | | | | | immodules.cache. gtk-query-immodules-2.0 has a new option, --update-cache that does what we want too. Use this new option. While here, add stage support to non slave ports Reviewed by: kwm (immodules part)
* - Update to 20131227.kuriyama2014-01-044-10/+10
|
* - convert to new options frameworkjgh2014-01-031-1/+1
| | | | Approved by: portmgr (bapt@)
* - Ruby 1.9 is default now, remove conditionalization for itswills2014-01-031-7/+1
| | | | With hat: ruby@
* - Remove unneeded RUBY_VERswills2014-01-031-1/+0
| | | | With hat: ruby@
* - Remove unneeded RUBY_VERswills2014-01-031-1/+0
| | | | With hat: ruby@
* Add LICENSE.ume2013-12-311-0/+3
|
* - rename AL2 to APACHE20 in Mk/bsd.licenses.db.mkohauer2013-12-311-1/+1
| | | | | | | | | | | | | | - svn move Templates/Licenses/AL2 Templates/Licenses/APACHE20 - add APACHE10 and APACHE11 to Mk/bsd.licenses.db.mk - add entry in UPDATING - bulk change all ports AL2 => APACHE20 - math/openfst/pkg-plist: remove share/licenses/openfst-1.3.4 PR: ports/184785 Submitted by: ohauer Reviewed by: tabthorpe Approved by: portmgr (tabthorpe@)
* - Update to 3.8sunpoet2013-12-272-3/+3
| | | | Changes: http://ja.wordpress.org/2013/12/16/wordpress-3-8-ja/
* Update freetype to 2.5.2.kwm2013-12-251-0/+10
| | | | | | | | | | | | | | Remove patch to add -I/usr/local/include in freetype-config --cflags. If ports need extra headers they should look for them, and not get them via a side-effect. Freetype had a header resuffle in 2.5.1, patch ports to use the new header style. Thanks go to bdrewery for the two exp-runs and rakuco for helping me with some troublesome cmake ports. PR: ports/184587
* - Fix build with clangpawel2013-12-249-19/+97
| | | | | | | | - Remove leading article from COMMENT - Support staging PR: ports/184900 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
* - update to 5.43 [1]jgh2013-12-211-1/+0
| | | | | | | | - convert to new lib_depends format - convert to staging (thanks bapt@!) PR: 184940 [1] Submitted by: umeno@rr.iij4u.or.jp [1]
* - Fix swig dependencyamdmi32013-12-211-1/+1
| | | | | | PR: 183203 Submitted by: amdmi3 Approved by: maintainer timeout
* - Fix build with clangpawel2013-12-193-9/+70
| | | | | | | - Support staging PR: ports/184812 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
* - Update Calligra Suite to 2.7.5.avilla2013-12-171-1/+2
| | | | | | | | | | | | - Require a new compiler to build Calligra. - Make GTL really an option in Calligra. - STAGEify. - Use OPTIONS helpers. - Set NO_ARCH for translation ports. - Add translation port for Intelingua. Calligra 2.7 release notes: http://www.calligra.org/news/calligra-2-7-released
* - Back out my change, since wg@ already fixed the portmva2013-12-161-1/+0
| | | | Noticed by: wg@
* - Depend explicitly on lang/python at build time.mva2013-12-161-0/+1
| | | | | Reported by: exp-run (PR 184591) Approved by: portmgr (blanket)
* japanese/mozc-server: depends explicitly on "python" to buildwg2013-12-161-0/+1
| | | | | Reported by: exp-run (PR 184591) Approved by: portmgr (blanket)
* Use setuptools for all Python ports.wg2013-12-161-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | Setuptools is the preferred method to manage Python distributions after many changes to the packaging ecosystem over the past couple of years. Only ports using USE_PYDISTUTILS= yes are affected by this commit, ports using USE_PYDISTUTILS= easy_install remains the same however this usage is now deprecated and should be converted to USE_PYDISTUTILS= yes. Some Python distributions do not work with setuptools out of the box because they extend the install command from distutils and not setuptools, and so they need to be patched accordingly. pip (which leverages setuptools) works around the issue by using eggs, however we want to get rid of those as well, as support for "flat" installation is unavailable or has other issues associated with it. This work allows us to unify how python packages are built, ensure that Python distributions are installed consistently, reduces complexity for Python port maintainers and paves the way for simplifying the Python ports framework in the future. With hat on: python Reviewed by: koobs, antoine Exp-run: bdrewery Approved by: bdrewery (portmgr)
* - Fix build for recent FreeBSD 9.1, 10.0 or later.mandree2013-12-072-30/+43
| | | | | | | | | | | | | | | | | | - Convert to new LIB_DEPENDS syntax. - Fix mis-adopting optionsNG. - Fix inconsistency between declared LIB_DEPENDS and actual libdb version used on systems with multiple BDB versions installed. PR: 184490 Submitted by: Takehiko Shiozaki (maintainer) While here, - add LICENSE - convert to staging to avoid mutt's doc/Makefile from messing with Muttrc - convert USE_GMAKE to USES - have two files' shebang lines fixed
* - Fix build with clangak2013-12-062-7/+7
| | | | | | | | - Support STAGEDIR - Update MASTER_SITES and WWW PR: ports/184237 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
* Mark as jobs unsafeantoine2013-12-041-0/+1
| | | | | | | Failure log is in the PR PR: ports/184205 Submitted by: Tsurutani Naoki
* There's a warning during boot if the skkserv_enable rc variable istijl2013-12-032-1/+2
| | | | | | | undefined so set it to "NO" by default. PR: ports/181729 Approved by: maintainer timeout (3 months)
* - Stage supportantoine2013-12-022-4/+3
| | | | | | | - remove tab in pkg-descr PR: ports/183516 Submitted by: Takefu (maintainer)
* - Stage supportantoine2013-12-021-9/+10
| | | | | | | - Add LICENSE PR: ports/183517 Submitted by: Takefu
* - Update to 2.8.6antoine2013-12-012-25/+14
| | | | | | | | | - gmake not needed - Stage support - use OPTIONS helpers PR: ports/184350 Submitted by: Takashi Kato (maintainer)
* Fix build on 10.X and later.hrs2013-11-301-0/+539
| | | | | Submitted by: Yoshihiko Sarumaru (maintainer) PR: ports/183590
* Reset maintainer by his request on freebsd-ports@.linimon2013-11-252-2/+2
|
* Fix build of japanese/mozc-tools with native iconv. The error:bsam2013-11-181-0/+1
| | | | | | | | | | | | | | | | | | | | | ----- LINK(target) out_linux/Release/mozc_tool /usr/bin/ld: cannot find -liconv c++: error: linker command failed with exit code 1 (use -v to see invocation) gmake[2]: *** [out_linux/Release/mozc_tool] Error 1 ----- Notes: 1. The fix for japanese/mozc-tools (committed to japanese/mozc-server). 2. Do not bump PORTREVISION of japanese/mozc-tools since: - it's a build failure; - it should be treated while upgrading at each system along with other iconv changes. Reported by: Tomoaki AOKI <junchoon@dec.sakura.ne.jp> Tested by: Tomoaki AOKI <junchoon@dec.sakura.ne.jp> Approved by: portmgr (bapt, implicit)
* Remove expired ports:rene2013-11-184-38/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2013-11-18 devel/libXGP: Broken for more than 6 month 2013-11-18 deskutils/google-gadgets: Broken for more than 6 month 2013-11-18 palm/synce-trayicon: Broken for more than 6 month 2013-11-18 security/linux-pam-docs: Broken for more than 6 month 2013-11-18 net-p2p/mooseekd: Broken for more than 6 month 2013-11-18 textproc/p5-Lucene: Broken for more than 6 month 2013-11-18 net-mgmt/zenpack-dellmonitor: Broken for more than 6 month 2013-11-18 x11-wm/fbpager: BRoken for more than 6 month 2013-11-18 net/hf6to4: Broken for more than 6 month 2013-11-18 x11-themes/kde-icons-exquisite: Broken for more than 6 month 2013-11-18 x11-themes/kde-icons-marbles-translucent: Broken for more than 6 month 2013-11-18 security/dissembler: Broken for more than 6 month 2013-11-18 net-mgmt/zenpack-apachemonitor: Broken for more than 6 month 2013-11-18 textproc/rst.el: Broken for more than 6 month 2013-11-18 net-mgmt/zenpack-ntpmonitor: Broken for more than 6 month 2013-11-18 x11-themes/kde-icons-steel: Broken for more than 6 month 2013-11-18 databases/drizzle: Broken for more than 6 month 2013-11-18 devel/p5-File-Lock: Broken for more than 6 month 2013-11-18 devel/valide: Broken for more than 6 month 2013-11-18 databases/gomysql: Broken for more than 6 month 2013-11-18 databases/p5-DBZ_File: BRoken for more than 6 month 2013-11-18 devel/monodevelop-vala: Broken for more than 6 month 2013-11-18 devel/gonzui: Broken for more than 6 month 2013-11-18 devel/monodevelop-java: Broken for more than 6 month 2013-11-18 lang/objc: Broken for more than 6 month 2013-11-18 devel/klee: Broken for more than 6 month 2013-11-18 databases/p5-DBD-InterBase: Broken for more than 6 month 2013-11-18 devel/simulavr: Broken for more than 6 month 2013-11-18 japanese/mobileimap: Broken for more than 6 month 2013-11-18 devel/libYGP: Broken for more than 6 month 2013-11-18 devel/monodevelop-python: Broken for more than 6 month
* fixed a build issue on 10daichi2013-11-174-1/+34
|
* - Replace QT_.*_REL with QT_.* in PLIST_SUB.avilla2013-11-171-4/+4
| | | | | | - Adapt plists. With hat on: kde
* Remove NO_LATEST_LINK as well (forgotten along with addingbsam2013-11-171-1/+0
| | | | PKGNAMESUFFIX).
* . resolve pkgname conflict with japanese/lyx (add PKGNAMESUFFIX);bsam2013-11-161-1/+2
| | | | | . remove indefinite article from COMMENT; . pet portlint -- make COMMENT a bit shorter.
* - fix a build error on 10.0daichi2013-11-151-0/+1
|
* Support STAGEDIR.vanilla2013-11-056-16/+12
|
* - Add LICENSEantoine2013-11-053-8/+5
| | | | | - Convert to STAGEDIR - Fix plist
* - Fix build on 10.x.hrs2013-11-032-34/+26
| | | | - Add STAGEDIR support.
* - Update to 20131031.kuriyama2013-11-025-20/+18
|
* - Update to 3.7.1sunpoet2013-10-312-3/+3
| | | | Changes: http://ja.wordpress.org/2013/10/31/wordpress-3-7-1-background-upgrade-schedule/
* The word 'very' has no place in COMMENTeadler2013-10-312-2/+2
| | | | | | COMMENT should not begin with 'A' or 'An' Maintainers were notified and given time to object.
* - Update to 4.4.1tota2013-10-303-4/+4
| | | | - Update WWW line in pkg-descr
* - Update to 4.2.7tota2013-10-303-4/+4
| | | | - Update WWW line in pkg-descr
* - Update to 4.0.11tota2013-10-303-4/+4
| | | | - Update WWW line in pkg-descr
* - Add stage supportswills2013-10-301-1/+0
|
* - Update to 3.7sunpoet2013-10-262-3/+3
| | | | Changes: http://ja.wordpress.org/2013/10/25/wordpress-3-7-ja/
* Update to libmpc version 1.0.1 which brings the following fixes:gerald2013-10-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery)
* - Update to 4.0.6.jkim2013-10-262-5/+4
| | | | - Support staging.
* .include <bsd.port.options.mk> is no longer necessary.tijl2013-10-241-2/+0
|
* - Hand maintainership to submitter.tijl2013-10-236-18/+55
| | | | | | | | | | | | | | | - Add patch to fix regular expression bug. - Install data files in DATADIR. - Move information about documentation and sample configuration from pkg-descr to pkg-message. - Add license information. - Add new DOCS option. - Replace pkg-plist with PLIST_DIRS and PLIST_FILES. - Support staging. - Fix build on systems without gcc. PR: ports/182285 Submitted by: Yasuhiro KIMURA <yasu@utahime.org>
* - Remove manual creation and removal of share/applications, as it's now in ↵amdmi32013-10-226-6/+0
| | | | | | the mtree (categories starting with [fgijk]) Approved by: portmgr (bdrewery)
* - Use shebangfix.hrs2013-10-222-15/+9
| | | | | | | - Fix a missing USES=perl5. ${PERL} was empty. - Add STAGEDIR support. PR: ports/183200
* 2013-10-21 devel/rubygem-ruby-debug-base: Does not work with Ruby 1.9tabthorpe2013-10-226-83/+0
| | | | | | | | | 2013-10-10 devel/rubygem-linecache: Does not work with Ruby 1.9 2013-10-21 devel/rubygem-rascut: Does not work with Ruby 1.9 2013-10-21 devel/rubygem-ruby-debug-ide: Does not work with Ruby 1.9 2013-10-21 devel/rubygem-ruby-debug: Does not work with Ruby 1.9 2013-10-21 japanese/gorua: Does not work with Ruby 1.9 2013-10-10 x11-toolkits/ruby-gtk: Does not work with Ruby 1.9
* - Mark BROKEN, set EXPIRATION_DATEtabthorpe2013-10-201-0/+3
| | | | With hat: portmgr
* use opt_USE OPTIONS helper.ume2013-10-191-10/+2
|
* Deprecated some ports broken for more than 6 monthbapt2013-10-181-0/+3
|
* - adjust include pathohauer2013-10-181-1/+1
|
* - update to latest release [1]ohauer2013-10-188-8/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - use PKGNAMESUFFIX instead LATEST_LINK - whitespace cleanup - svn mv */bugzilla to */bugzilla40 - add vuxml entry 4.4.1, 4.2.7, and 4.0.11 Security Advisory Wednesday Oct 16th, 2013 Summary ======= Bugzilla is a Web-based bug-tracking system used by a large number of software projects. The following security issues have been discovered in Bugzilla: * A CSRF vulnerability in process_bug.cgi affecting Bugzilla 4.4 only can lead to a bug being edited without the user consent. * A CSRF vulnerability in attachment.cgi can lead to an attachment being edited without the user consent. * Several unfiltered parameters when editing flagtypes can lead to XSS. * Due to an incomplete fix for CVE-2012-4189, some incorrectly filtered field values in tabular reports can lead to XSS. All affected installations are encouraged to upgrade as soon as possible. [1] even bugzilla40 gets upstream fixes an upgrade to bugzilla42/44 is recommend Security: vid e135f0c9-375f-11e3-80b7-20cf30e32f6d CVE-2013-1733 CVE-2013-1734 CVE-2013-1742 CVE-2013-1743
* enable stage.ume2013-10-171-3/+3
|
* - enable stage.ume2013-10-171-4/+3
| | | | - use modern LIB_DEPENDS format.
* Move doing chown from do-install to pkg-plist. In stageume2013-10-162-4/+4
| | | | build, uid/gid creation is not done at do-install yet.
* - Add STAGEDIR support.hrs2013-10-1621-326/+340
| | | | | - Update to 20130617 (japanese/font-migmix) - Update to 456 (japanese/font-ume)
* Clean up some COMMENTseadler2013-10-161-1/+1
|
* enable stage.ume2013-10-162-20/+11
|
* Remove all options bringing gnome1 librariesbapt2013-10-151-5/+1
|
* Update Qt to 4.8.5 and Qt Creator to 2.8.0.rakuco2013-10-141-2/+1
| | | | | | | | | | | | | | | | | Proudly brought to you by the KDE on FreeBSD team, with commits by makc@, Schaich Alonso and yours truly. Besides the tons of upstream fixes, we have mkspecs for GCC 4.9 and clang33 (from ports), staging support in the Makefiles and dependency fixes related to pkg-config. Many thanks to the people who helped test the ports using our area51 repository, and also to the people who provided patches and bug reports via GNATS! PR: ports/180615 ports/181921 ports/182049
* - enable stage.ume2013-10-131-3/+2
| | | | - use modern LIB_DEPENDS format.
* - Update to 4.0.0tota2013-10-131-1/+0
| | | | - Support STAGEDIR
* - enable stage.ume2013-10-131-27/+6
| | | | - use modern OPTIONS helper.
* Reassign my canna related port to the heap.ume2013-10-131-1/+1
| | | | I'm not using canna for a long time.
* Reassign some my scim related ports to the heap.ume2013-10-132-2/+2
| | | | I'm not using scim for a long time.
* 2013-10-10 audio/ruby-vorbisfile: Does not work with Ruby 1.9tabthorpe2013-10-1114-247/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2013-10-10 audio/ruby-xmms: Does not work with Ruby 1.9 2013-10-10 databases/ruby-interbase: Does not work with Ruby 1.9 2013-10-10 databases/ruby-bdb1: Does not work with Ruby 1.9 2013-10-10 devel/ruby-fam: Does not work with Ruby 1.9 2013-10-10 devel/ruby-rcov: Does not work with Ruby 1.9 2013-10-10 devel/ruby-rudl: Does not work with Ruby 1.9 2013-10-10 devel/ruby-gemfinder: Does not work with Ruby 1.9 2013-10-10 devel/ruby-sysvipc: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-sdl: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-ncurses: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-parsetree: Does not work with Ruby 1.9 2013-10-10 devel/ruby-sexp: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-getopt-declare: Does not work with Ruby 1.9 2013-10-10 devel/ruby-slang: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-slang: Does not work with Ruby 1.9 2013-10-10 devel/ruby-gettext: Does not work with Ruby 1.9 2013-10-10 devel/ruby-jttui: Does not work with Ruby 1.9 2013-10-10 devel/ruby-mmap: Does not work with Ruby 1.9 2013-10-10 devel/ruby-racc: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-rparsec: Does not work with Ruby 1.9 2013-10-10 devel/rubygem-zoom: Does not work with Ruby 1.9 2013-10-10 games/ruby-exmars: Does not work with Ruby 1.9 2013-10-10 graphics/ruby-pgplot: Does not work with Ruby 1.9 2013-10-10 graphics/ruby-opengl: Does not work with Ruby 1.9 2013-10-10 graphics/rubygem-turing: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-chasen: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-gyokuro: Does not work with Ruby 1.9 2013-10-10 japanese/ruby-rdic: Does not work with Ruby 1.9 2013-10-10 lang/ruby-mode.el: Does not work with Ruby 1.9 2013-10-10 misc/rubygem-ohcount: Does not work with Ruby 1.9 2013-10-10 net-im/rubygem-xmpp4r: Does not work with Ruby 1.9 2013-10-10 security/ruby-acl: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-xslt: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-erbscan: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-mwdom: Does not work with Ruby 1.9 2013-10-10 textproc/ruby-xmlscan-old: Does not work with Ruby 1.9 2013-10-10 textproc/rubygem-formosa: Does not work with Ruby 1.9 2013-10-10 textproc/rubygem-htmltools: Does not work with Ruby 1.9 2013-10-10 www/ruby-cruisecontrolrb: Does not work with Ruby 1.9 2013-10-10 www/rubygem-rubyfulsoup: Does not work with Ruby 1.9 2013-10-10 x11/ruby-gtktrayicon: Does not work with Ruby 1.9
* - Mark BROKEN, set DEPRECATEDtabthorpe2013-10-111-0/+3
| | | | With hat: portmgr
* - Mark BROKEN, set very short EXPIRATION_DATEtabthorpe2013-10-111-0/+3
| | | | Discussed with: swills
* corresponding to ibus updatedaichi2013-10-101-2/+2
| | | | Submitted by: Mamoru Iwaki <1wkmmr@gmail.com>
* Explicitly link libraries on 10 unmaintained portsmarino2013-10-081-0/+1
| | | | | | | | | The following ports will not build with a binutils 2.22+ linker built with standard options. This has been obvious with DPorts, but difficult to see on FreeBSD. However, setting the ports compiler as a recent gcc (e.g lang/gcc48) is an excellent way to detect the unspecified but needed libraries as these recent GCC compilers use the latest binutils linkers. These patches were tested on FreeBSD 8.4 and DragonFly 3.5
* Fix pkgname collisionbapt2013-10-071-1/+1
|
* Correct gnome dependency to not pull gnome1bapt2013-10-061-1/+1
|
* enable stage.ume2013-10-052-4/+4
|
* - Update from 0.20130603 to 0.20131001danilo2013-10-033-8/+6
| | | | | | | - Change maintainer email to @FreeBSD.org - Add stage support Approved by: culot (mentor)
* update to 1.5.0daichi2013-09-303-6/+5
| | | | Submitted by: maintainer
* Convert to STAGEDIRantoine2013-09-291-1/+0
| | | | | PR: ports/182398 Submitted by: Yasuhiro KIMURA (maintainer)
* Convert to STAGEDIRantoine2013-09-292-12/+4
| | | | | PR: ports/182396 Submitted by: Yasuhiro KIMURA (maintainer)
* Convert to STAGEDIRantoine2013-09-292-13/+5
| | | | | PR: ports/182391 Submitted by: Yasuhiro KIMURA
* Convert to STAGEDIRantoine2013-09-291-7/+3
| | | | | PR: ports/182390 Submitted by: Yasuhiro KIMURA (maintainer)
* - Change EXPIRATION_DATE to 2013-10-10, to match removal of lang/ruby18tabthorpe2013-09-271-1/+1
| | | | Discussed with: swills
* - add STAGE support to bugzilla portsohauer2013-09-273-24/+6
| | | | - remove bugzilla3 CONFLICTS
* japanese/ebnetd: allow stagingwg2013-09-262-9/+3
| | | | | | | | | - Allow staging - Add Created by in Makefile header - Convert lib depends to new format PR: ports/182393 Submitted by: Yasuhiro KIMURA <yasu utahime.org> (maintainer)
* - Remove NO_STAGE as these have been tested to be safebdrewery2013-09-252-2/+0
| | | | With hat: portmgr
* Fix NO_STAGE attributionbapt2013-09-231-1/+1
|
* - fix misplaced NO_STAGE in slaveports and ifdefsdinoex2013-09-212-2/+0
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-21352-856/+527
| | | | japanese)
* - Calling pod2man from extract stage require perlaz2013-09-183-5/+6
| | | | | - Replace pkg-plist with PLIST_FILES - Pet portlint(1)
* Fix build on 10.X.hrs2013-09-181-1/+0
|
* - Use USES=gmakesunpoet2013-09-171-7/+3
| | | | | - Remove leading indefinite article from COMMENT - Cleanup Makefile header
* - convert to the new perl5 frameworkaz2013-09-1613-15/+28
| | | | | | - convert USE_GMAKE to Uses Approved by: portmgr (bapt@, blanket)
* Remove xchat1, upstream support has been abandonned for a while and it is ↵bapt2013-09-162-20/+0
| | | | | | producing packages with a name That can make user confuse with irc/xchat.
* - convert to the new perl5 frameworkaz2013-09-162-2/+4
| | | | | | - convert USE_GMAKE to Uses Approved by: portmgr (bapt@, blanket)
* Add an explicit dependency on pkgconfantoine2013-09-147-48/+14
| | | | Approved by: portmgr (bapt)
* - Fix build after iconv change [1]madpilot2013-09-141-1/+2
| | | | | | | | | | | | | - Fix build with clang/libc++ ([2] for graphics/ipe) While here for databases/spatialite: - Trim Makefile headers - Remove check for unsupported FreeBSD versions Submitted by: marino [1] Reported by: swills, antoine [1] Submitted by: bsam [2] Approved by: portmgr (bapt, implicit)
* Add explicit dependency on pkgconf (10 ports)marino2013-09-131-6/+2
| | | | Approved by: portmgr (bapt, implicit)
* - Update to 3.6.1sunpoet2013-09-122-5/+5
| | | | Changes: http://ja.wordpress.org/2013/09/12/wordpress-3-6-1-maintenance-and-security-release/
* Add explicit dependency on pkgconf (20 ports)marino2013-09-121-2/+1
| | | | Approved by: portmgr (bapt, implicit)
* - Fix this port as master port for cmigemo-dict to allow override USESaz2013-09-101-2/+1
|
* - Perl required also and patch stageaz2013-09-101-0/+1
|
* - convert to the new perl5 frameworkaz2013-09-1016-61/+35
| | | | | | - trim Makefile header Approved by: portmgr (bapt@, blanket)
* . add iconv to USES;bsam2013-09-081-3/+3
| | | | | | . switch LOCALBASE to ICONV_PREFIX for iconv-includes and iconv-libraries. Approved by: portmgr (bapt, implicit)
* Simplify a bit: utilise UCONV_CMD.bsam2013-09-081-2/+1
| | | | Approved by: portmgr (bapt, implicit)
* - Use single space after WWW:sunpoet2013-09-082-2/+2
|
* Add an explicit dependency on pkgconfbapt2013-09-061-7/+2
|
* Add an explicit dependency on pkgconfbapt2013-09-063-16/+5
|
* . introduce ICONV_CONFIGURE_BASE variable at Mk/Uses/iconv.mk. It's value isbsam2013-09-061-1/+1
| | | | | | | | "--with-libiconv=${LOCALBASE}" at systems pre OSVERSION 100043 and "" (null) otherwise; . convert all ports which has CONFIGURE_ARGS=--with-libiconv=${LOCALBASE}. Approved by: portmgr (bapt, implicit)
* Remove unmaintained japanese/texfamily{,-vfn2a} and japanese/dvi2dvi.hrs2013-09-0632-2718/+1
|
* - Reassign to the heap due to maintainer mail bouncestabthorpe2013-09-062-7/+3
|
* Add an explicit dependency on pkgconfbapt2013-09-051-7/+2
|
* - Fix a warning "Having multiple values in <test> isn't supported and mayhrs2013-09-0531-128/+258
| | | | | | | | | | not work as expected" when using the latest x11-fonts/fontconfig [*]. - Update to the latest version (font-migu, font-ume, font-vlgothic). - Style clean-ups. PR: ports/181701 [*]
* Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.bsam2013-09-053-3/+3
| | | | | | | | It's value is "--with-libiconv-prefix=/usr/local" for systems before 100043 with ports libiconv and to use at systems post 100043 with base iconv it's value is "" (NULL). Co-authors: bapt, madpilot and bsam (me)
* - Make ports use the libc provided iconv implementation on 10-CURRENTmadpilot2013-09-051-1/+1
| | | | | | | | | | after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code)
* Add an explicit dependency on pkgconfantoine2013-09-041-6/+2
| | | | Approved by: portmgr (bapt)
* Add an explicit dependency on pkgconfantoine2013-09-041-1/+1
| | | | Approved by: portmgr (bapt)
* Fix building without libstdc++bapt2013-09-031-0/+1
|
* Add an explicit dependency on pkgconfbapt2013-09-031-7/+2
|
* Add an explicit dependency on pkgconfbapt2013-09-031-2/+1
|
* Add an explicit dependency on pkgconfbapt2013-09-031-0/+1
|
* Add an explicit dependency on pkgconfbapt2013-09-031-1/+1
|
* Two imake related changes:tijl2013-09-022-6/+1
| | | | | | | | | | | | | | | | | | | | 1) Move -a from XMKMF command variable to a new XMKMF_ARGS variable. For ports that don't need -a introduce USES=imake:notall. This way ports no longer have to redefine XMKMF. 2) xmkmf -a runs imake with the flags in IMAKECPPFLAGS as extra arguments to set CPP, CC and CXX. This creates the top Makefile, and then xmkmf runs make Makefiles. This Makefiles target runs imake for each subdirectory but these imake invocations did not have the flags from IMAKECPPFLAGS so the resulting makefiles used the wrong C preprocessor when clang is used (/usr/bin/cpp instead of /usr/local/bin/tradcpp). Instead of letting xmkmf pass IMAKECPPFLAGS from the environment to imake let imake handle IMAKECPPFLAGS itself just like it handles IMAKEINCLUDE. This exposed configure errors in x11-clocks/mouseclock and x11-wm/fvwm. Approved by: portmgr (bapt)
* 1. Introduce using iconv with arguments:bsam2013-09-022-6/+4
| | | | | | | | | | | | | | | | | . lib (default, implicit); . build, . patch. The default is the same, all existing ports stay valid. 2. Introduce variable ICONV_CMD with default to ${LOCALBASE}/bin/iconv. It is intended to get the value of /usr/bin/iconv at recent 10.x. 3. Adopt all ports to using USES+= icomv:build and iconv:patch and change iconv (executable) at Makefile commands to ${ICONV_CMD} at those ports. Submitted by: bsam (me, via e-mail) Approved by: portmgr (bapt)
* - Update to 20130830.kuriyama2013-09-024-10/+10
|
* - Make it fetchable again by using SFJP macro instead of hand-made URLdanfe2013-08-312-24/+16
| | | | | - Utilize PORTDOCS variable and thus offload pkg-plist - Perform some miscellaneous Makefile cleanups while I am here
* Convert USE_GNOME=pkgconfig to USES=pkgconfigbapt2013-08-312-12/+4
|
* - Mark BROKEN, fails to fetchbdrewery2013-08-311-0/+2
|
* - Mark BROKEN, fails to buildbdrewery2013-08-311-0/+2
| | | | | | | | | | | | ming.c: In function 'rb_Ming_key_press': ming.c:59: error: 'struct RString' has no member named 'len' ming.c:62: error: 'struct RString' has no member named 'ptr' ming.c: In function 'rb_Ming_on_key_press': ming.c:71: error: 'struct RString' has no member named 'len' ming.c:74: error: 'struct RString' has no member named 'ptr' *** [ming.o] Error code 1 Stop in /wrkdirs/usr/ports/japanese/ruby-ming/work/ming-ruby-0.1.6/ext/ming/ming.
* - remove expired bugzilla3 portsohauer2013-08-306-373/+0
|
* - Remove Author linesunpoet2013-08-305-8/+0
|
* - Use single space after WWW:sunpoet2013-08-299-9/+9
|
* Fix clang build.hrs2013-08-271-0/+22
|
* Fix build with clang by forcing the port to respect CFLAGS and adding ↵bapt2013-08-271-5/+5
| | | | -Wno-return-type to CFLAGS
* - Remove unnecessary LICENSE_FILEaz2013-08-261-1/+0
| | | | | PR: ports/181206 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
* Use OPTIONS_SLAVE instead of OPTIONS_OVERRIDE.nobutaka2013-08-232-2/+2
| | | | Pointed out by: jgh and bapt
* japanese/eb: Make gettext dependency a condition of NLSmarino2013-08-231-1/+4
| | | | | | | | | PORTREVISION bumped to reset dependencies for folks that don't use NLS. PR: 181205 Submitted by: az Reviewed by: jgh, marino Approved by: bapt/culot (mentors, implicit)
* Update to 4.0.5.jkim2013-08-231-4/+4
|
* - Make slave ports of www/w3m work as are before master port isnobutaka2013-08-232-15/+8
| | | | | | | | | | | | | | | | | | OptionsNG-fied. - Convert makefile header to new format. - Remove shlib version from LIB_DEPENDS. - Remove M17N option and make m17n feature always on. It is because configure script enables m17n feature by default and there is no practical advantage of disabling it. - Remove www/w3m-m17n and www/w3m-m17-img because they are now identical with www/w3m and www/w3m-img. - Add entry of removed ports to MOVED. - Update CONFLICTS. - Adjust dependency of www/emacs-w3m. - Bump PORTREVISON of w3m ports and www/emacs-w3m. PR: ports/178189 Submitted by: Yasuhiro KIMURA <yasu@utahime.org>
* Conver to new perl5 framework.az2013-08-201-1/+2
| | | | | PR: ports/181207 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
* - Conver to new perl5 framework.az2013-08-201-3/+1
| | | | | | | - Remove duplication of 'USES=gettext'. PR: ports/181205 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
* Add a patch to fix a build error "invalid DSO for symbol `libiconv_open'hrs2013-08-182-1/+10
| | | | definition".
* - Trim Makefile headerantoine2013-08-161-7/+4
| | | | | - Replace DISTFILES/WRKSRC with DISTNAME/EXTRACT_SUFX - Unbreak with clang
* - Remove MAKE_JOBS_SAFE variableak2013-08-1513-13/+0
| | | | Approved by: portmgr (bdrewery)
* japanese/wordpress: update to 3.6wg2013-08-132-5/+4
| | | | | | | | | - Update to 3.6 [1] - Remove LICENSE_FILE [1] - Remove indefinite article from COMMENT PR: ports/181258 Submitted by: Takefu <takefu airport.fm>
* - Update to 0.996tota2013-08-112-6/+3
| | | | | | | - Remove LICENSE_FILE for standard license PR: ports/177694 Submitted by: Yasuhiro KIMURA <yasu_AT_utahime_DOT_org>
* - Update to 0.996tota2013-08-112-6/+3
| | | | | | | | - Remove LICENSE_FILE for standard license PR: ports/177694 Submitted by: Yasuhiro KIMURA <yasu_AT_utahime_DOT_org> Approved by: Junji NAKANISHI (maintainer)
* - Update to 0.996tota2013-08-112-6/+3
| | | | | | | - Remove LICENSE_FILE for standard license PR: ports/177694 Submitted by: Yasuhiro KIMURA <yasu_AT_utahime_DOT_org>
* - Update to 0.996tota2013-08-113-12/+22
| | | | | | | | - Pass maintainership to submitter - Remove LICENSE_FILE for standard license PR: ports/177694 Submitted by: Yasuhiro KIMURA <yasu_AT_utahime_DOT_org>
* - Convert to new perl frameworkmat2013-08-032-3/+4
| | | | - Remove MAKE_JOBS_SAFE=yes, it's the default.
* - Convert to new perl frameworkaz2013-08-0313-58/+22
| | | | - Trim Makefile header
* - Convert to new perl frameworkmat2013-08-031-1/+2
| | | | | - Trim Makefile header - Remove MAKE_JOBS_SAFE=yes, it's the default.
* - Convert to new perl frameworkaz2013-08-034-4/+8
|
* Unbreak with clang (reported by pkg-fallout)antoine2013-08-021-0/+1
|
* Fix build without gccbapt2013-08-021-5/+2
|
* Minor, last-minute fixes missed in the previous commits.danfe2013-07-311-1/+1
|
* - Fix parallel builds, remove odious MAKE_JOB_UNSAFEdanfe2013-07-292-7/+15
| | | | | | | | | | - Define LICENSE (BSD), do not reset default DISTNAME - Cleanup the port a bit, inc. header and COMMENT - Add useful port description, fix WWW address Reported by: pointyhat-west NB: there is version 1.4.0 available.
* KDE3 and QT3 expired on 2013-07-01, remove these ports.rene2013-07-275-896/+0
| | | | | | | | | | | | | | | | Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
* - Trim Makefile header, define LICENSE, fix grammar in COMMENTdanfe2013-07-262-13/+22
| | | | | | | | | - Try to unbreak parallel builds (-jX) - Drop shlib ABI version from LIB_DEPENDS - Install manual pages relative to MANPREFIX - Rephrase port description, kill EOL space, add WWW line Reported by: pointyhat-west
* - switch simple inline replacement from perl to sedaz2013-07-261-6/+2
| | | | | | | and remove where is no need in this anymore. - trim Makefile header Approved by: bapt@ (portmrg@)
* Fix typos in comments and use correct flavor of braces.danfe2013-07-261-1/+1
|
* Do not define post-configure and pre-build target for mozc_el.hrs2013-07-251-0/+2
| | | | Spotted by: HATANO Tomomi
* - Update MASTER_SITES.hrs2013-07-211-5/+9
| | | | - Use OPTIONS_DEFINE.
* - Update to 1.11.1502.102. Changes include:hrs2013-07-2030-154/+677
| | | | | | | | | | | | * Fixes cursor movement issue on Emacs 24 (Issue 168) * Support numpad keys in mozc.el (Issue 170) * Support Emacs 24 in mozc.el (Issue 190) * Support surrounding text * Dictionary update - Take maintainership. Approved by: daichi (maintainer)
* - Attempt to fix parallel builds (-jX)danfe2013-07-182-42/+35
| | | | | | | - Convert to modern OPTIONS syntax - Generally clean up the port while here Reported by: pointyhat-west
* - Unbreak after autotools updatemiwi2013-07-181-0/+1
|
* - Mark Brokenmiwi2013-07-181-0/+2
| | | | Reported by: http://pointyhat-west.isc.freebsd.org/errorlogs/amd64-errorlogs/e.9-exp.20130717143058.pointyhat-west/ja-trac-0.12.3.log
* Mark as jobs unsafebapt2013-07-131-5/+2
|
* Mark job unsafebapt2013-07-111-5/+2
|
* Mark as job unsafebapt2013-07-111-0/+1
|
* Mark jobs unsafebapt2013-07-101-1/+3
|
* Fix INDEX by really fixing the kde4-l10n portsbapt2013-07-101-0/+1
|
* KDE4 l10n fixes.rakuco2013-07-102-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove an entry from all plists that slipped under radar and made packaging fail. - Properly save the OPTIONS defined by the user in the l10n ports. [1] Quoting bapt, master of all things ports: That is because misc/kde4-l10n/files/bsd.l10n.mk is totally wrong it does ... .include <bsd.port.pre.mk> ... .include <bsd.port.options.mk> ... .include <bsd.port.post.mk> First the right order in that case should be: ... .include <bsd.port.options.mk> ... .include <bsd.port.pre.mk> ... .include <bsd.port.post.mk> Second in that case (kde) the pre.mk/post.mk can be removed just keeping the options.mk and given that we now have the helpers options.mk can also be removed. The check for variables in OPTIONS_DEFINE is also useless (already done by the framework) defining OPTIONS_DEFINE and OPTIONS_DEFAULT to some empty values is also useless. No PORTREVISION bump because the generated packages do not change regardless of the changes/fixes in behavior here. Reported by: avg [1] Submitted by: bapt [1]
* Update MASTER_SITES.motoyuki2013-07-061-1/+0
|
* Update the KDE Software Compilation to 4.10.5.rakuco2013-07-052-4/+4
| | | | | | | | | | | | | | | | | | | Proudly brought to you by the KDE on FreeBSD team. We're sorry to ship two KDE updates in just a few days, but the work on 4.10.5 was very light compared to 4.10.4 so it was ready much faster. The release announcement can be found in [1]. [1] http://www.kde.org/announcements/announce-4.10.5.php The biggest news for us on FreeBSD is that the Ruby bindings should work with Ruby 1.9 now. I will probably add a note to UPDATING later about this, but as avilla@ pointed out, the clang support we mentioned that was improved in 4.10.4 requires a rebuild of the ports that depend on kdelibs4. Most of them are covered by this update, but those which are not part of the Software Compilation need to be rebuilt manually to make sure the previous issues (proper symbol visibility being the most annoying of them) are solved.
* Fix BUILD_DEPENDS in japanese/mozc-tool.hrs2013-07-031-1/+1
| | | | Spotted by: ume
* Remove support for the -qt package variant, this depends on therene2013-07-031-8/+4
| | | | | | expired QT3 port. NOPORTDOCS -> PORT_OPTIONS:MDOCS while here
* Update to KDE SC 4.10.4, proudly presented by the KDE on FreeBSD team.rakuco2013-07-032-4/+4
| | | | | | | | | | | | | | | With commits from avilla@, makc@, rakuco@ and Schaich Alonso. The upstream announcement can be found in [1]. [1] http://www.kde.org/announcements/announce-4.10.4.php clang support should be more stable now, with clang being recognized by kdelibs4 and being passed the correct flags to build other ports. Additionally, all ports being committed have been verified to build with -CURRENT's clang 3.3 on an amd64 tinderbox (special thanks go to swills@ for providing it). Work on the newly-released 4.10.5 will begin shortly.
* Update zipcode database to 20130628.hrs2013-07-032-8/+8
|
* - Update to 20130628.kuriyama2013-07-024-10/+10
|
* - Update to 0.3.4swills2013-07-012-10/+4
|
* Convert to USES=imakebapt2013-06-292-14/+6
| | | | Trim headers
* New USES imake to handle the dependency on imake.bapt2013-06-289-25/+20
| | | | | | | | | | | | | | | | | | | | | | This uses accept 'env' as an argument for ports that do use their own or a different do-configure target. Modify xmkmf so it accept IMAKECPPFLAGS as default flags for imake and pass it to the called imake. Modify xorg-cf-files (the FreeBSD.cf configuration file) to allow CppCmd to be overwritten. Pass CppCmd CcCmd and CplusplusCmd via command line to each call of imake via IMAKECPPFLAGS Pass IMAKE_DEFINE with the above arguments to MAKE_ARGS so that imake spawned from Makefile generated by a previous imake also inherit the defined CppCmd CcCmd and CplusplusCmd. Make imake use devel/tradcpp all the time, so that when buidling with clang we do not depend on gcc's cpp. Make imake respect CC and CXX Make imake respect USE_GCC (if set imake will use gcc's cpp). While here: - Remove a couple of indefinite articles from comments - Trim headers - Fix a couple of ports to build with clang or use: USE_GCC=any - Fix a now useless redefinition of the extraction chain - Fix a typo in japanese/Wnn7-lib bundled imake template definitions - Fix some XMKMF execution with no env specified - Use options helper in x11/xautolock to simplify the port
* Fix some fonts.dir leftovers reported by poudriereantoine2013-06-285-17/+15
| | | | | | While here, trim Makefile header and finish PORT_OPTIONS conversion Approved by: portmgr (miwi)
* Update to 3.5.2.rakuco2013-06-252-3/+3
| | | | | PR: ports/179917 Submitted by: Takefu <takefu@airport.fm>
* - connect japanese/bugzilla44ohauer2013-06-211-0/+1
|
* New ports for bugzilla44ohauer2013-06-215-0/+373
| | | | | | | | | - devel/bugzilla44 - japanese/bugzilla44 - german/bugzilla44 Release Notes: http://www.bugzilla.org/releases/4.4/release-notes.html
* Update to 4.0.4.jkim2013-06-201-4/+4
|
* - Add missing fonts.aliasmiwi2013-06-192-5/+2
| | | | | | - trim header Reported by: pkg (DEVELOPER_MODE)
* - Don't remove directories not created by this portmiwi2013-06-192-7/+1
| | | | Reported by: pkg (DEVELOPER_MODE)
* - Add missing fonts.aliasmiwi2013-06-192-5/+2
| | | | Reported by: pkg (DEVELOPER_MODE)
* Add missing font.aliasmiwi2013-06-191-0/+1
| | | | Reported by: pkg (DEVELOPER_MODE)
* - Don't remove directories not created by this portmiwi2013-06-192-8/+1
| | | | | | - Trim header Reported by: pkg (DEVELOPER_MODE)
* Update to 452.hrs2013-06-182-4/+3
| | | | PR: ports/179673
* - Add missing fonts.alias file to plistmiwi2013-06-142-5/+2
|
* - Add missing fonts.dir filemiwi2013-06-141-0/+2
|
* - Do not remove directories not created by this portmiwi2013-06-141-1/+0
|
* - Add missing fonts.alias to plistmiwi2013-06-142-5/+2
| | | | | | - While here trim header Reported by: pkg (DEVELOPER_MODE)
* = Fix plistmiwi2013-06-141-1/+0
| | | | Reported by: pkg (DEVELOPER_MODE)
* - Add missing fonts.alias filemiwi2013-06-142-5/+2
| | | | - While here trim header
* Fix build with clangbapt2013-06-131-0/+1
|
* - Add missing fonts.aliasmiwi2013-06-121-0/+1
| | | | Reported by: pkg (DEV MOD)
* Fix buildmiwi2013-06-111-4/+0
| | | | Reported by: pkg (DEVELOPER_MODE)
* - Update to 4.2.6tota2013-06-092-3/+3
|
* Convert to new options frameworkbapt2013-06-071-16/+18
|
* - Update to 0.20130603 [1]culot2013-06-062-3/+4
| | | | | | | | - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/Number-Phone-JP/Changes PR: ports/179334 [1] Submitted by: Danilo Egea Gondolfo <danilogondolfo@gmail.com> (maintainer)
* - Fix with ruby 1.9swills2013-06-024-8/+639
| | | | | PR: ports/178293 Submitted by: Tsurutani Naoki <turutani@scphys.kyoto-u.ac.jp>
* - Fix to work with Ruby 1.9cs2013-05-282-23/+24
| | | | | | | | - Use better macro/function/class for Ruby 1.9 and later. - Use OPTIONS instead of NOPORTDOCS. PR: ports/178022 Submitted by: Hiroyuki Iwatsuki <don@na.rim.or.jp> (maintainer)
* Do not try to remove a directory not created by the portbapt2013-05-271-1/+0
| | | | Reported by: pkg (DEVELOPER_MODE)
* Fix pkg-plist.hrs2013-05-272-1/+5
| | | | Spotted by: QAT
* Mark USE_TEX=tetex.hrs2013-05-276-27/+7
|
* - Fix PKGNAMEPREFIX.hrs2013-05-271-3/+3
| | | | | | - Mark USE_TEX=texlive. Spotted by: nyan
* - match OPTIONjgh2013-05-261-1/+1
|
* - adoption of optionsNG frameworkjgh2013-05-266-82/+74
| | | | | | - trim COMMENTS and historical headers Approved by: portmgr (bapt)
* The FreeBSD x11 team proudly presentszeising2013-05-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | an zeising, kwm, miwi, bapt, eadler production: Xorg 7.7 Starring: xserver 1.12.4 (new xorg only) Mesa 8.0.4, including libGL, libGLU and dri (new xorg only) libX11 1.5.0 libxcb 1.9 libdrm 2.4.42 (new xorg only) freeglut 2.8.1 Also starring: Updates to drivers and other libraries and utilities Additional notes: Change pkgconf to be a build dependency. Add a new USE_XORG, xcb, to depend on libxcb and update all ports to use this. Trim makefile headers. Take maintanership of x11/xcb-proto, ok'd by ashish. If you are running WITH_NEW_XORG=, you need to rebuild all installed drivers, see UPDATING for more information. Various fixes to make ports compile. PR: ports/177942 Exp-run by: miwi Approved by: portmgr (miwi) Thanks to all who helped testing!
* Do not let system make.conf inpact the port's makefilebapt2013-05-251-1/+2
| | | | This fixes build on current
* Fix dependency.hrs2013-05-231-2/+3
| | | | Reported by: miwi
* - Fix duplicated pkg-plist entries.hrs2013-05-222-0/+3
| | | | | | | - Split off documentation to print/texlive-docs from print/texlive-texmf. The document part was 1.3GB (30k files). Now the size of texlive-texmf package is 557MB (this was 1.5GB before the split). - do-texhash, do-fmtutil, do-updmap targets now run after post-install.
* - Upgrade to 0.12.kuriyama2013-05-212-5/+4
|
* - Unbreak build on HEADmiwi2013-05-211-0/+1
| | | | | PR: 177175 Submitted by: maintainer
* - Update to 0.20130501bdrewery2013-05-192-4/+4
| | | | | | | - Pass maintainership to submitter PR: ports/178724 Submitted by: Danilo Egea Gondolfo <danilogondolfo@gmail.com>
* KDE/FreeBSD team presents KDE SC 4.10.3 ports!makc2013-05-193-6/+4
| | | | | | - Remove patches and checks for unsupported FreeBSD versions. The area51 repository features commits by avilla, rakuco and myself.
* Add a workaround when archivers/lha-ac is installed.hrs2013-05-161-1/+1
| | | | Spotted by: me
* - Add Japan Post zip code dictionary.hrs2013-05-1526-331/+593
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LICENSE. - Fix malformed BUILD_DEPENDS and remove unnecessary dependencies. Use USE_* in a consistent manner. - Fix inconsistency toolchain usage in build_tools and the others. Hardcoded g++ was always used only for the former even if both gcc and clang were available. - Enable -Werror. - Fix SSP issue on i386 platform. - Let cpp(1) to replace LOCALBASE instead of patching and sed(1). - Use GYP_DEFINES for build variables instead of patching. - Separate the stages of configuration and build from each other. - Add options for localbase and openssl-related configuration to gyp instead of patching. - Fix makesum target. - Fix whitespaces to make portlint happy. - Disable serialization for linking. It is not needed. - Remove hardcoded mozc.xml. - Respect DISABLE_MAKE_JOBS=yes. Do not calculate the factor using the number of CPUs. - Remove a confusing message after pkg-message. - Rename a deprecated function (inactivate-current-input-method-function) in mozc.el in a compatible fashion with the older emacsen [1]. - Add leim-list.el for registration of mozc-mode via LEIM API. "(require 'mozc)" is no longer needed. - Fix a build problem when binutils is installed and ${LOCALBASE}/bin comes first in $PATH [2]. Submitted by: Tadaaki Nagao [1] Reported by: Kenichi Niioka [2] PR: ports/178250 Approved by: maintainer timeout (2 weeks)
* Fix incompatibility of anthy.el with Emacs 24.nobutaka2013-05-152-0/+12
| | | | | PR: ports/178413 Submitted by: Yuichiro NAITO <naito.yuichiro@gmail.com>
* - Update to 1.8.5.nobutaka2013-05-151-7/+3
| | | | | - Trim Makefile header. - Remove shared lib version from LIB_DEPENDS.
* - Update to version 0.20130401miwi2013-05-154-20/+24
| | | | | PR: 178573 Submitted by: Ports Fury
* Rectify USE_TEX to support both of teTeX and TeXLive.hrs2013-05-128-21/+12
| | | | | | | | | TEX_DEFAULT: A knob to choose teTeX or TeXLive. One can specify in /etc/make.conf. USE_TEX: A knob for port developers. Valid keywords are listed in bsd.tex.mk.
* Add DIST_SUBDIR to fix a fetch error because the distfiles are often replacedhrs2013-05-102-2/+4
| | | | with the same names in every release.
* - Fix extract on 9+ due to this picking up /usr/bin/unzip instead ofbdrewery2013-05-101-1/+1
| | | | | | | | looking for the proper LOCALBASE/bin/unzip that UNZIP_CMD is set to. Will let maintainers decide if archivers/unzip is really still needed. Some of these ports/options remain broken due to other issues. With hat: portmgr
* Update to 4.0.3.jkim2013-05-101-4/+4
|
* fix extract-error(GNU unshar changed behavior)sanpei2013-05-081-2/+3
| | | | | Submitted by: hrs Reviewed by: nyan
* - Rename japanese/jisx0213-fonts with japanese/font-jisx0213.hrs2013-05-0812-199/+223
| | | | | | | - Trim old-style header. - Fix MASTER_SITES. - Mark as MAKE_JOBS_SAFE=yes - Remove no-op pkg-req.
* - Update to 20130430.kuriyama2013-05-074-10/+10
|
* Add some shebangfix to allow building most of the ports tree without ↵bapt2013-05-071-5/+4
| | | | | | | /usr/bin/perl Submitted by: John Marino Obtained from: DPorts
* - Separate print/tex-dvipdfmx from print/texlive-base and add libpaperhrs2013-05-071-5/+6
| | | | | | | | | | | | | | | | support. dvipdfmx's default paper size can be set by ${LOCALBASE}/etc/papersize and/or PAPERSIZE environment variable as other programs like print/psutils do. - Use absolute pathname in {fmtutil,texconfig,updmap}-sys programs because manually-installed and/or old TeXLive files can prevent them from working. [1] - Fix pkg-plist in print/texlive-texmf. - Remove DIST_SUBDIR from Mk/bsd.tex.mk. Reported by: bsam, Stephen Montgomery-Smith [1]
* Convert from WITHOUT_NLS to PORT_OPTIONS:MNLSbapt2013-05-061-9/+7
|
* Remove *_DEPENDS from ports which depend on teTeX and add USE_TEX=tetexhrs2013-05-068-43/+16
| | | | instead to make migration to TeXLive easier.
* TeXLive mega commit. The following ports have been added:hrs2013-05-067-0/+3909
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Meta port - print/texlive-full: meta port to install all of the TeXLive components * Libraries - devel/tex-kpathsea: kpathsea library - devel/tex-web2c: WEB2C toolchain and TeX engines - print/tex-ptexenc: character code conversion library for pTeX * Base part of the TeXLive - print/texlive-base: binary programs in TeXLive - print/texlive-texmf: macro and font data in TeXLive - print/texlive-infra: tlmgr dependency (Perl modules) * TeX Formats - print/tex-formats: TeX, LaTeX, PDFTeX, AMSTeX, ConTeXT, CSLaTeX, EplainTeX, METAFONT, MLTeX, PDFTeX, TeXsis - print/tex-aleph: Aleph/Lambda - print/tex-xetex: XeTeX - print/tex-luatex: LuaTeX - print/tex-jadetex: JadeTeX - print/tex-xmltex: XMLTeX - japanese/tex-ptex: pTeX * DVI ware - print/tex-xdvik: XDvi Mk/bsd.tex.mk is added for common part and USE_TEX knob [1]. Approved by: portmgr (old version) [1] PR: ports/171571 PR: ports/176399 [1]
* Use OPTIONS_DEFINE and add style clean-ups.hrs2013-05-062-12/+13
|
* - Fix fork() and select() in skkserv. It didn't work properly.hrs2013-05-054-19/+130
| | | | - Trim old-style header.
* - Ubreak.kuriyama2013-05-045-3/+42
| | | | | PR: ports/176926 Submitted by: Hiroyuki Iwatsuki <don@na.rim.or.jp>
* Trim old-style header and add style clean-ups.hrs2013-05-041-8/+2
|
* - Fix build after utmp->utmpx migration.hrs2013-05-044-52/+78
| | | | | | - Use OPTIONS_DEFINE. - Use USERS and GROUPS for _sj3 user. - Trim old-style header.
* - Update to 3.0.j2.1b.hrs2013-05-045-114/+322
| | | | | | | | - Use OPTIONS_RADIO for Japanese FEP selection. - Fix build when CC is defined. - Respect CFLAGS. - Rename MACHINE and TARGET in Makefile. - Mark MAKE_JOBS_SAFE=yes.