aboutsummaryrefslogtreecommitdiffstats
path: root/french
Commit message (Collapse)AuthorAgeFilesLines
* The 11.5 tarball has been removed: mirror it untill I get the time forthierry2014-07-251-1/+3
| | | | the upgrade to 11.6.
* Reset maintainership for ports not staged with no pending PRbapt2014-07-241-1/+1
| | | | With hat: portmgr
* - Add LICENSEsunpoet2014-07-171-0/+2
|
* - Update to 5.1sunpoet2014-07-172-3/+3
|
* - Add LICENSEsunpoet2014-07-161-0/+2
|
* Remove NOPORTDOCS and NOPORTEXAMPLES from unstaged ports. Stage a couple whileadamw2014-07-052-2/+11
| | | | | | we're here. Remove any other references to NOPORT*. Approved by: portmgr (blanket for modernization)
* Oops, reversed the DOCS check.adamw2014-07-041-1/+1
|
* Get rid of NOPORTDOCS.adamw2014-07-042-5/+7
|
* jdictionary is stagedantoine2014-07-031-1/+0
|
* Update to version 4.5.23.bsam2014-06-301-2/+2
|
* Update to 4.2.5.jkim2014-06-241-4/+4
|
* - Remove obsolete PYEASYINSTALL_EGG entry, now that the ports usemva2014-06-221-1/+0
| | | | | | PYDISTUTILS_AUTOPLIST With hat: python@
* - Remove unused PYEASYINSTALL_* leftoversmva2014-06-221-3/+0
| | | | | With hat: python@ Approved by: portmgr (implicit)
* Depend on devel/xdg-utils instead of devel/py-qt4-assistant.rakuco2014-06-161-1/+2
| | | | | | | | | | | | This version of Eficas has dropped the dependency on py-qt4-assistant, which has been deprecated in PyQt4 since 2010, and replaced it with a call to xdg-open. Follow suit and replace the runtime dependencies, paving the way for us to get rid of py-qt4-assistant ourselves. CR D226 Approved by: thierry (maintainer)
* Stagify.vanilla2014-06-151-5/+4
|
* Update to libreoffice 4.2.4bapt2014-06-111-4/+4
| | | | | | | | - Speed staging phase by really installing to the stagedir directly - Rework to use predefined targets for build and install - Strip binaries - Remove now unnecessary dependencies on autotools - Add patches to fix crashes with icu 53.1
* Remove indefinite articles and trailing periods from COMMENT, plusolgeni2014-06-101-1/+1
| | | | | | | minor COMMENT typos and surrounding whitespace fixes. Categories D-F. CR: D196 Approved by: portmgr (bapt)
* Fix the build by adding the Python metaport.thierry2014-06-021-0/+1
|
* - Convert gmake to USESmiwi2014-05-291-1/+1
| | | | Approved by: portmgr
* french/aster (and depends): specify post-extraction with ${TAR}marino2014-05-291-1/+1
| | | | | | | | It's possible that EXTRACT_CMD won't be predefined in the near future in order to support distfiles in multiple formats. We know the post- extraction tool needs to be tar, so let's specify it directly. Approved by: infrastructure improvements blanket
* Unbreak and make packageable.thierry2014-05-274-24/+119
|
* Chase the upgrade of Code_Aster ans stagify.thierry2014-05-143-192/+259
|
* Fix several problems: it now builds cleanly and can run the tests.thierry2014-05-146-12560/+11837
| | | | | Still marked BROKEN because there is some rough edges, but interesting users can remove this line.
* Fix stagificationedwin2014-05-141-1/+0
|
* Update eric4 ports to version 4.5.22.bsam2014-05-121-2/+2
|
* KDE/FreeBSD team presents KDE SC 4.12.5 and KDE Workspace 4.11.9!makc2014-05-111-2/+2
| | | | | | | deskutils/kdepim4: - Remove no longer needed patch, the problem was fixed since Qt 4.8.4. The area51 repository features commits by rakuco and makc.
* Support stagebapt2014-05-091-1/+0
|
* Support stagebapt2014-05-091-1/+0
|
* Support stagebapt2014-05-082-14/+16
| | | | | Convert to USES=libtool Strip binaries
* Update to 4.1.6.jkim2014-05-071-4/+4
|
* Catch a couple of missing convertsion to :tu/:tlbapt2014-05-051-1/+1
| | | | | Submitted by: ak With hat: portmgr
* Convert all :U to :tu and :L to :tlbapt2014-05-051-2/+2
| | | | | | | | | | | | | | Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
* - Update to 1.8.12 (from science/hdf5-18)sunpoet2014-05-032-3/+4
| | | | | | | | | | | | | | | - Add LICENSE - Convert to new LIB_DEPENDS format - Convert to new options helper - Use NOT_FOR_ARCHS - Strip shared library - Remove deprecated PTHREAD_* - Use MAKE_CMD - Bump PORTREVISION for science/hdf5 shlib change [1] Changes: http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.12-RELEASE.txt http://www.hdfgroup.org/HDF5/doc/ADGuide/Changes.html Approved by: portmgr (bapt) [1]
* When linking a library libA with a library libB using libtool, if libB.latijl2014-04-231-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | exists, libtool will add all libraries libB.la refers to (dependency_libs field) to the linker command line and store them in the dependency_libs field of libA.la. So everything that subsequently links with libA will also link to these extra libraries. This causes too much overlinking. This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs field in .la libraries during staging. However, because .la libraries have very limited use when dependency_libs is empty it makes sense to completely remove them during staging. So with this commit USES=libtool is modified to remove .la libraries and a new form (USES=libtool:keepla) is introduced in case they need to be kept (dependency_libs is still emptied). PORTREVISION is bumped on all ports with USES=libtool that install .la libraries. Most ports are also changed to add :keepla because .la libraries have to be kept around as long as there are dependent ports with .la libraries that refer to them in their dependency_libs field. In most cases :keepla can be removed again as soon as all dependent ports that install .la libraries have some form of USES=libtool added to their Makefile. PR: ports/188759 Exp-run: bdrewery Approved by: portmgr (bdrewery)
* Unbreak with the work-around given by Vladimir Chukharev in PR ports/188114thierry2014-04-182-8/+11
| | | | untill math/py-numpy is fixed.
* The FreeBSD x11@ and graphics team proudly presentszeising2014-04-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb)
* Restore the previous sed to fix python.thierry2014-04-101-1/+3
| | | | Reported by: swills
* - Support staging;thierry2014-04-102-10/+6
| | | | | | - Use the new infrastucture; - Fix dependency on www/py-mechanize.
* Eric4 ports: update to version 4.5.21.bsam2014-04-061-2/+2
|
* KDE/FreeBSD team presents KDE SC 4.12.4 and KDE Workspace 4.11.8!makc2014-04-031-2/+2
| | | | | | | | | | | | | | | | | | | | KDE ports: - Convert to USES=tar:xz devel/p5-perlqt, multimedia/kdemultimedia4-ffmpegthumbs: - Convert LIB_DEPENDS to new style devel/p5-perlqt, devel/p5-perlkde: - Don't remove directories installed by perl port net/kdnssd: - moved to net/zeroconf-ioslave (renamed upstream) x11/kdelibs4: - Clean up non-standard shared mime files and directories after deinstall The area51 repository features commits by Alonso Schaich <alonsoschaich@fastmail.fm> and makc.
* Upgrade Code_Aster to 11.5.0-4.thierry2014-03-1925-1904/+1728
| | | | | | | N.B.: french/aster is still marked BROKEN, but this allows to unbreak other ports sharing the same dependencies. Patch for french/med provided by tijl.
* Update to version 4.5.20.bsam2014-03-141-2/+2
|
* Update the default version of GCC used in the Ports Collection fromgerald2014-03-115-5/+5
| | | | | | | | | | | GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
* Fix to use proper zip argbapt2014-03-081-1/+1
|
* Convert f* to USES=zipbapt2014-03-084-4/+4
|
* Mark BROKEN: Unfetchableantoine2014-03-071-0/+1
| | | | Reported by: pkg-fallout
* KDE/FreeBSD team presents KDE SC 4.12.3 and KDE Workspace 4.11.7!makc2014-03-052-7/+40
| | | | | | | | | | | | | | | | | | deskutils/kdepim4: - Add depedency on coreutils, kleopatra needs md5sum and sha1sum programs [1] misc/kdehier4: - add tests directory (r343428 commit to Templates/BSD.local.dist) security/kwallet: - moved to security/kwalletmanager (renamed upstream) x11/kdelibs: - remove workaround, which is not needed after global fix in Mk/bsd.kde4.mk (r315373) PR: ports/187259 [1] Submitted by: Tobias Berner <tcberner@gmail.com>
* - Support stagingculot2014-02-281-3/+2
|
* Update to 4.1.5. It is partially based on the following PR.jkim2014-02-261-4/+4
| | | | PR: ports/186265
* Use ${LDFLAGS} instead of constructing -L${LOCALBASE}/lib/${CC} manuallygerald2014-02-241-1/+1
| | | | | | (plus this now also provides proper -rpath for GCC runtime libraries). Approved by: thierry (maintainer)
* - Bump PORTREVISION after KDE4_PREFIX changemakc2014-02-181-0/+1
|
* KDE/FreeBSD team presents KDE SC 4.12.2 and KDE Workspace 4.11.6!makc2014-02-184-219/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Among changes: - Switch KDE4_PREFIX to ${LOCALBASE} - Remove now needless misc/kde4-shared-mime-info port - Add stage support - Remove ancient CONFLICTS (KDE 4.9 and less) and LATEST_LINK - Squeeze MASTER_SITES/MASTER_SITE_SUBDIR - Convert LIB_DEPENDS to new style - Use options helpers - Drop support for FreeBSD 7.x - Remove Qt/KDE 3 related workarounds - Remove local patches and use upstream version scheme for libraries - sysutils/kdeadmin4, net/kdenetwork4, devel/kdesdk4, and x11-clocks/kdetoys4 ports have been split. - devel/kcachegrind is now a part of KDE SC [1] - more logs in area51 repo... New ports: devel/kde-dev-scripts: KDE development scripts devel/kde-dev-utils: KDE development utilities games/klickety: Tetris themed solitaire games/picmi: Single player logic-based puzzle game textproc/libkomparediff2: Library to compare files and strings The area51 repository features commits by Schaich Alonso, avilla, rakuco and myself. PR: ports/186491 Exp-run: by bdrewery Approved by: beat (former maintainer) [1]
* - Update to USES=tkgahr2014-02-181-2/+1
|
* - Convert to USES=tkgahr2014-02-181-4/+2
| | | | | - Convert to new LIB_DEPENDS format - STAGE-clean
* Convert all USE_FORTRAN=yes to "USES=fortran, USE_GCC=yes". In most casestijl2014-02-172-6/+2
| | | | | | | | | | | USE_GCC=yes has been omitted though. Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk. Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,... Exp-run: bdrewery Approved by: portmgr (bdrewery)
* - Swith from easy_install to install (and bump PORTREVISION)antoine2014-02-094-40/+6
| | | | - Use PYDISTUTILS_AUTOPLIST
* - Kill french/gfaim -- abandonwaregahr2014-02-056-118/+0
|
* - Update gimp-help ports to 2.8.1. Polish translation has been removed, newmakc2014-02-011-3/+3
| | | | | | | | | translations have been added (ca, da, el, en_GB, sl, pt_BR) - Add stage support - Update maintainer address PR: based on ports/179681 Submitted by: RyoTa SimaMoto (maintainer)
* Remove ispell which is deprecated for long, consider using aspell instead or ↵bapt2014-01-292-13/+0
| | | | | | | | | | | | | | | | | | | | the aspell-ispell wrapper french/ispell german/ispell german/ispell-alt german/ispell-neu hungarian/ispell polish/ispell portuguese/ispell-pt_BR russian/rus-ispell textproc/british-ispell textproc/es-ispell textproc/ispell textproc/it-ispell textproc/nl-ispell textproc/sk-ispell ukrainian/ispell
* Fix properties on pkg-plistbapt2014-01-221-1/+0
|
* - Update to 5.0.2sunpoet2014-01-212-3/+3
|
* french/alphabet_sounds_fr: Fix and support stagemarino2014-01-163-17/+52
| | | | | | | | | | | | | | | | | The PR was written because the port started to fail in jail where $HOME is read-only. It turns out that it is not the port's fault, but rather that of the (former) build dependency, childsplay. The only reason it was a build dependency was to check if it's version is at least 0.71. Childsplay is currently at version 2.5, so there's no reason to check the version. The fix was to remove the check and childsplay as a build dependency. Stage support was also added, so there's not much left of the original install.sh. PR: ports/185202 Approved by: maintainer timeout
* Python cleanup:rene2014-01-141-1/+1
| | | | | | | - USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat)
* . update to version 4.5.18;bsam2014-01-081-2/+2
| | | | . pet QA test: remove USES=shared-mime-info (it's not really used).
* Update to version 4.5.17.bsam2013-12-251-2/+2
|
* - Update Calligra Suite to 2.7.5.avilla2013-12-173-5/+35
| | | | | | | | | | | | - 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
* - Fix the usage of 'python' to get rid of the implicit lang/pythonmva2013-12-151-0/+5
| | | | | | | dependency Reported by: exp-run (PR 184591) Approved by: portmgr (blanket)
* Update to 5.0.1bapt2013-12-112-3/+3
|
* . svn copy tryton -> tryton28 ports;bsam2013-11-216-1/+49
| | | | | | | | | | . update tryton28 ports; [1] . connect tryton28 ports to build; . register conflicts at tryton ports. PR: ports/181691 [1] Submitted by: Matthias Petermann <matthias@petermann-it.de> [1] Approved by: Matthias Petermann <matthias@petermann-it.de>
* Restore "created by" header missing at some trytond* ports (in preparationbsam2013-11-181-0/+1
| | | | | | | | | to commit PR/181691). PR: ports/181691 Submitted by: Matthias Petermann <matthias@petermann-it.de> (maintainer) Patch by: bsam (me) Approved by: Matthias Petermann <matthias@petermann-it.de> (maintainer)
* Support STAGE (in preparation to commit PR/181691)..bsam2013-11-181-1/+0
| | | | | | | PR: ports/181691 Submitted by: Matthias Petermann <matthias@petermann-it.de> (maintainer) Patch by: bsam (me) Approved by: Matthias Petermann <matthias@petermann-it.de> (maintainer)
* - Add my LOCAL to MASTER_SITESsunpoet2013-11-182-3/+4
| | | | | - Move EXTRACT_SUFX upward - Update WWW
* - Add my LOCAL to MASTER_SITESsunpoet2013-11-182-3/+4
| | | | | - Move EXTRACT_SUFX upward - Update WWW
* - Update to 4.12sunpoet2013-11-182-6/+7
| | | | | - Add my LOCAL to MASTER_SITES - Move EXTRACT_SUFX upward
* - Use single space after WWW:sunpoet2013-11-183-3/+3
|
* Fix stagingbapt2013-11-151-1/+1
| | | | Reported by: marino
* Update to version 4.5.15.bsam2013-11-111-2/+2
|
* Stagifybapt2013-11-041-1/+1
| | | | Use bsdtar to extract
* Stagifybapt2013-11-041-6/+5
| | | | Use bsdtar to extract
* Support stage, use bsdtar to extractbapt2013-11-041-1/+1
|
* Stagifybapt2013-11-041-1/+0
| | | | | Fix shebang for aspell itself, make perl also a run dependency for aspell (needed for a couple of scripts) Always install manpages for aspell.
* Update to libmpc version 1.0.1 which brings the following fixes:gerald2013-10-265-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* - Remove manual creation and removal of share/applications, as it's now in ↵amdmi32013-10-222-2/+0
| | | | | | the mtree (categories starting with [fgijk]) Approved by: portmgr (bdrewery)
* Update to version 4.5.15.bsam2013-10-091-2/+2
|
* . support staging;bsam2013-10-061-1/+0
| | | | . remove well-known license file (GPLv3).
* Support stagebapt2013-09-241-4/+3
|
* Support stagebapt2013-09-241-6/+5
|
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵bapt2013-09-2128-58/+39
| | | | french)
* Update to version 4.5.14.bsam2013-08-231-2/+2
|
* Update to 4.0.5.jkim2013-08-231-4/+4
|
* - Convert to new perl frameworkaz2013-07-311-6/+3
| | | | - Trim Makefile header
* KDE3 and QT3 expired on 2013-07-01, remove these ports.rene2013-07-275-2642/+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
* 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 to version 4.5.13.bsam2013-07-081-2/+2
|
* Update the KDE Software Compilation to 4.10.5.rakuco2013-07-051-2/+2
| | | | | | | | | | | | | | | | | | | 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.
* Update to KDE SC 4.10.4, proudly presented by the KDE on FreeBSD team.rakuco2013-07-032-2/+3
| | | | | | | | | | | | | | | 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 to 4.0.4.jkim2013-06-201-4/+4
|
* - Set MASTER_SITES to MASTER_SITE_LOCAL due to the decommissioning ofculot2013-06-161-6/+3
| | | | | | my own ftp site - Trim Makefile's header - Pet portlint(1)
* - Fix i18n manpagesmiwi2013-06-111-0/+3
| | | | Reported by: pkg (DEVELOPER_MODE)
* Update to version 4.5.12.bsam2013-06-101-2/+2
|
* - Update MASTER_SITES and COMMENTwen2013-05-191-3/+4
| | | | | | | | - Add CONFLICTS - Trim Makefile headers PR: 178161 Submitted by: Matthias Petermann <matthias@petermann.it> (maintainer)
* KDE/FreeBSD team presents KDE SC 4.10.3 ports!makc2013-05-193-4/+12
| | | | | | - Remove patches and checks for unsupported FreeBSD versions. The area51 repository features commits by avilla, rakuco and myself.
* Update to 4.0.3.jkim2013-05-101-4/+4
|
* - Convert USE_ICONV=yes to USES=iconvmva2013-04-271-2/+1
| | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm
* - Convert USE_GETTEXT to USES (part 4)ak2013-04-261-1/+1
| | | | Approved by: portmgr (bapt)
* - Convert USE_GETTEXT to USES (part 2)ak2013-04-241-1/+1
| | | | Approved by: portmgr (bapt)
* Convert f* to USES=pkgconfigbapt2013-04-231-2/+1
|
* Update to version 4.5.10.bsam2013-04-231-2/+2
|
* Update to 4.0.2.jkim2013-04-171-4/+4
| | | | Feature safe: yes
* - Update Calligra and l10n ports to 2.6.2:avilla2013-03-302-35/+4
| | | | | | | | | | * Japanese translation is stuck at 2.5.5; * Southern Catalan translation is now up to date; * Bosnian, Slovenian and Turkish translations were added. This update brings several new features and the new Calligra Author; for a full list, please read 2.6 release notes: http://www.calligra.org/news/calligra-2-6-released
* KDE/FreeBSD team presents KDE SC 4.10.1 ports!makc2013-03-274-31/+72
| | | | | | | | | | | | | | | | | | | | | | | - kdegames4 port has been split. - kdeutils4-printer-applet and system-config-printer-kde have been replaced by print/kde4-print-manager. - Recover misc/kde4-l10n-mr from attic. - New USE_KDE4 components: kactivities, libkdegames, nepomuk-core, and nepomuk-widgets. - Provide sharedmime component with magic: ports don't need to run update-mime-database themselves now. - Switch some ports to out-of-source build. - Update port comments. - Adjust dependence on Qt4 components. - x11/kde4 installs modern kdepim4 now. - Remove redundant aspell and hspell from kdelibs4, both can be enabled in textproc/enchant if needed. - Remove stale bits from bsd.kde4.mk The area51 repository features commits by Schaich Alonso and myself. Contributors: - Tobias Berner
* Finish converting french to new options frameworkbapt2013-03-261-13/+10
|
* Fix plist.thierry2013-03-232-0/+4
| | | | Reported by: miwi
* Remove french/eficas_doc.thierry2013-03-206-618/+0
| | | | See http://www.code-aster.org/forum2/viewtopic.php?pid=36304#p36304
* Chase Code_Aster's upgrade.thierry2013-03-201-6/+2
|
* Upgrade to 3.0.6.thierry2013-03-202-14/+8
|
* Upgrade to 6.6.0-2.thierry2013-03-204-224/+177
|
* Upgrading Code_Aster to 10.8.0-3.thierry2013-03-206-100/+73
|
* french/gibi: IGNORE for more than 6 monthseadler2013-03-198-177/+0
|
* - Add translation of the restricted lineeadler2013-03-191-5/+3
| | | | | | - Trim header Submitted by: bapt
* Update to version 4.5.9.bsam2013-03-112-3/+2
|
* Update to 4.0.1.jkim2013-03-091-4/+4
|
* Convert USE_BISON to USES= bisonbapt2013-03-081-6/+2
| | | | | | | | | | | | | | It brings bison as a build dependency in case it is set the following way: USES= bison or USES= bison:build it brings bison as a run dependency in case it is set the following way: USES= bison:run it brings bison both as a run and build dependency in case it the set the following way: USES= bison:both While here trim some headers Convert some USE_GNOME= gnomehack to USES= pathfix
* - remove german, french and japanese localization of www/MT. They wererm2013-02-243-22/+0
| | | | | | | merged into main port since version 5.2 (will go in it's own commit) PR: 172319 Submitted by: Submitted by: Takefu <takefu@airport.fm> (maintainer)
* Merge from area51 repository:makc2013-02-053-3/+37
| | | | | | | | - Update to 2.5.5 - Convert to new options framework - minor cleanups Courtesy of: avilla
* Update to 3.6.5.jkim2013-02-051-4/+4
|
* KDE/FreeBSD team presents KDE SC 4.9.5 ports!makc2013-02-044-49/+300
| | | | | | | | | | | | | | | | | | | | | | | | - kdebindings ports have been renamed to match upstream. - kdemultimedia and kdenetwork have been split. - New port games/pairs added. - Trim Makefile header - Convert to new option framework - New USE_KDE4 components: libkcddb, libkcompactdisc - Update: databases/akonadi to 1.9.0 devel/grantlee to 0.3.0 textproc/rasqal to 0.9.30 textproc/redland-bindings to 1.0.16.1 textproc/soprano to 2.9.0 x11-toolkits/attica to 0.4.1 The area51 repository features commits by Schaich Alonso, avilla, dbn, jhale, makc and rakuco. Contributors: - Oleg Sidorkin - Tobias Berner - Kurt Jaeger
* Bump PORTREVISON after devel/py-sip and devel/qscintilla2 update.makc2013-02-047-3/+7
| | | | | x11-toolkits/py-qt: - mark BROKEN: does not build with latest devel/py-sip
* Bump PORTREVISION after DESKTOP_ENTRIES updatemakc2013-01-231-1/+1
|
* - Change MAINTAINER addresstabthorpe2013-01-101-5/+1
| | | | | - Trim headers while I am here - Clean up some trailing whitespace
* - Deprecate QT3, KDE3 and unmaintained ports depending on them. QT 3.3.8beat2012-12-301-0/+3
| | | | | | | | was released in 2007 and KDE 3.5.10 in 2008 and both are no longer maintained upstream nor in our tree. - Set EXPIRATION_DATE to 2013-07-01 Discussed with: bapt, tabthorpe
* Decommissioning java 1.5 (EOLed since October 2009):bapt2012-12-101-6/+2
| | | | suppress any reference to JAVA_VERSION= 1.5+ (part2)
* - Update to 3.5.7.jkim2012-10-272-9/+4
| | | | | | - Trim Makefile headers. Feature safe: yes
* Update to version 4.5.7. This along with fixing other bugs shouldbsam2012-10-152-2/+3
| | | | | | restore working i18n. Feature safe: yes
* . update to version 4.5.6;bsam2012-10-032-7/+3
| | | | . convert headers to the new style.
* - update to 2.3bapt2012-09-212-9/+3
|
* - update to 3.0bapt2012-09-212-14/+8
|
* - update to 4.6bapt2012-09-212-3/+3
|
* Add trytond_account_fr 2.4.0, the chart of account which is used inbsam2012-09-195-0/+46
| | | | | | | France. PR: ports/171171 Submitted by: matthias@petermann.it
* - Update Calligra Suite to 2.5.2.avilla2012-09-171-2/+2
| | | | | | | This release contains a number of important bug fixes to 2.5.1 and we recommend everybody to update as soon as possible. An overview of the most important fixes can be found in the release notes: http://www.calligra.org/news/calligra-2-5-2-released
* - Update Calligra to 2.5.1.avilla2012-09-012-7/+2
| | | | | | | | | - Remove header from Makefiles. This release contains a number of important bug fixes to 2.5.0 and we recommend everybody to update. Release notes can be found in the official announcement: http://www.calligra.org/news/calligra-2-5-1-released
* The KDE/FreeBSD team is pleased to announce version 2.5 of Calligra,avilla2012-08-262-86/+5
| | | | | | | | | | | | | | | | | | | coming to the ports tree after a short testing period which showed it to be quite stable. For the productivity part of the suite (word processor, spreadsheet, and presentation program) the target user of version 2.5 is still the student or academic user. This version has a number of new features that will make it more suitable for these users. The artistic applications of the Calligra Suite are the most mature ones and are already used by professional users everywhere. As usual, detailed release notes can be found in the official announcement: http://www.calligra.org/news/calligra-2-5-released Meanwhile, new translations were added: - editors/calligra-l10n-gl (Gallegan)
* - Update to 3.5.6.jkim2012-08-241-4/+4
| | | | | | | - Use system mdds. - Fix build with the recent Clang (CURRENT). - Enable visibility for recent Clang (9.1 and CURRENT). - Attempt to fix build on 7.x and 8.x (not tested).
* - remove www/apache20 and devel/apr0ohauer2012-08-181-1/+1
| | | | | | | | | - s/USE_APACHE= 20+/USE_APACHE= 22+/ - unify s/YES/yes/ - cleanup APACHE_VERSION <= 22 usage - add entry to MOVED with hat apache@
* Update to version 4.5.5.bsam2012-07-311-2/+2
|
* - Update LibreOffice and the language packs to 3.5.5.jkim2012-07-181-4/+4
| | | | - Add new language packs, i.e., ast, bo, kn, lb, and ug.
* Upgrade Code_Aster to 10.6.0-3.thierry2012-07-0732-1533/+2351
|
* - Update Calligra to 2.4.3.avilla2012-07-051-2/+2
| | | | | | | - Add Japanese localization. This release contains a number of important bug fixes to 2.4.2: http://www.calligra.org/news/calligra-2-4-3-released
* - The FreeBSD Office team is proud to announce LibreOffice.org 3.5.4 releasefluffy2012-07-011-4/+4
| | | | | | | | for FreeBSD platform! Now with system boost-1.48 support and powered by clang-3.1 by default Dima, behalf of FreeBSD Office team
* - Remove SITE_PERL from *_DEPENDSaz2012-06-291-2/+2
|
* Update to version 4.5.4.bsam2012-06-192-3/+2
|
* KDE/FreeBSD team presents KDE SC 4.8.4, probably the last release in 4.8.x ↵makc2012-06-153-3/+4
| | | | | | series. Official announcement: http://kde.org/announcements/announce-4.8.4.php
* - Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} orswills2012-06-111-1/+1
| | | | | | | | RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned about for a while. PR: ports/168208 Approved by: portmgr (miwi)
* - update png to 1.5.10dinoex2012-06-015-4/+5
|
* - Remove koffice-i18n ports, as they are not very useful withoutavilla2012-05-315-491/+0
| | | | editors/koffice-kde3.
* The KDE/FreeBSD team is pleased to announce Calligra Suite 2.4.2, KDEavilla2012-05-319-300/+140
| | | | | | | | | | | | | | | graphic art and office suite. Information on this release can be found here: http://www.calligra.org/news/calligra-2-4-2-released Information on Calligra Project can be found in its first ever release announcement: http://www.calligra.org/news/calligra-2-4-released Consequently, KOffice 2 has been removed from the ports collection. As usual, we would like to thank all testers and contributors.
* KDE/FreeBSD team presents long awaited KDE SC 4.8.3!makc2012-05-254-185/+339
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | kdeaccessibility4 and kdeutils4 are now meta ports. deskutils/kdepim4 updated to match KDE SC version, old kdepim preserved in deskutils/kdepim44. Follow UPDATING instruction! New ports: - accessibility/kaccessible - accessibility/kmag - accessibility/kmousetool - accessibility/kmouth - archivers/ark - comms/kremotecontrol - deskutils/kcharselect - deskutils/kdepim44 - deskutils/kdepim44-runtime - deskutils/superkaramba - devel/kdebindings4-perl-perlkde - devel/kdebindings4-perl-perlqt - math/analitza - math/kcalc - misc/kde4-l10n-fa - security/kgpg-kde4 - security/kwallet - sysutils/kdf - sysutils/kfloppy - sysutils/sweeper - vietnamese/kde4-l10n - x11-clocks/ktimer - x11/kactivities - x11/libkonq Removed ports: - devel/kdebindings4-kross-interpreters - devel/kdebindings4-python - devel/kdebindings4-ruby - devel/kdebindings4-smoke
* Chase PyQT updatemakc2012-05-257-5/+7
|
* Update to version 4.5.3.bsam2012-05-091-2/+2
| | | | Tested at: redports
* - upgrade to 3.5.2bapt2012-04-234-0/+22
| | | | | | | | | | | | | | | | - switch and force compiler to clang using the one from base on 9 and CURRENT, the one from ports if not found in base - now only build en_US version, all localisation are available through separated ports. - Graphite smart font is now used by default - Rebundle boost to easier upgrading boost - Rebundle mdds the one from the ports seems incompatible with clang - Unbundle all the fonts Thank you to jgh and Kuan-Chung Chiu <buganini@gmail.com> for testings and feedback Thank you to iXsystems for providing resources to build/test libreoffice
* Update to version 4.5.2.bsam2012-04-031-2/+2
| | | | Feature safe: yes
* - Bump PORTREVISION to chase the update of multimedia/libvpxashish2012-02-161-0/+1
|
* The KDE/FreeBSD team is pleased to announce KDE SC 4.7.4, whichavilla2012-01-251-2/+2
| | | | | | | | | | concludes the 4.7 series. The official release notes can be found at: http://kde.org/announcements/announce-4.7.4.php PR: 162216 PR: 163662
* - Update to 9.4.7 (English version only)hrs2012-01-221-0/+2
| | | | | | | | | | | | | | | | | | | | | | | - Add LICENSE. - Add CUPS support. - Add acroread(1) manual page. Security: APSA11-04 Security: APSB11-24 Security: CVE-2011-2462 Security: CVE-2011-1353 Security: CVE-2011-2431 Security: CVE-2011-2432 Security: CVE-2011-2433 Security: CVE-2011-2434 Security: CVE-2011-2435 Security: CVE-2011-2436 Security: CVE-2011-2437 Security: CVE-2011-2438 Security: CVE-2011-2439 Security: CVE-2011-2440 Security: CVE-2011-2441 Security: CVE-2011-2442
* Update to version 4.4.20.bsam2012-01-161-2/+2
|
* - change required APACHE version from 13+ to 20+ohauer2012-01-021-1/+1
| | | | | | | | (prepare to remove www/apache13) - no PORTREVISION bump since apache22 is the default with hat apache@
* Fix a mistake in the MANUAL_PACKAGE_BUILD line.linimon2011-12-121-1/+1
| | | | | Hat: portmgr Feature safe: yes
* Update to version 4.4.19.bsam2011-12-061-2/+2
| | | | Feature safe: yes
* - Pass maintainership to office@FreeBSD.orgsunpoet2011-11-292-2/+2
| | | | | Discussed with: bapt Feature safe: yes
* adjust linking and comments in dependent ports after the math/atlas update;bf2011-11-221-2/+2
| | | | | | | | math/atlas-devel will be updated to use the same constructs at a later date PR: 162706 Approved by: miwi (portmgr) Feature safe: yes
* The KDE on FreeBSD team is pleased to update the KDE4 ports to 4.7.3.rakuco2011-11-142-3/+2
| | | | | | | | | | | This is an incremental update and should be much easier to handle than the transition from 4.6.5 to 4.7.2 in the ports tree. The official release notes can be found at http://www.kde.org/announcements/announce-4.7.3.php. Approved by: avilla (mentor), makc (mentor), portmgr (miwi) Feature safe: yes
* - Get rid FreeBSD 6 supportmiwi2011-11-071-4/+0
|
* The vast majority of pkg-descr files had the following format when theydougb2011-10-241-1/+1
| | | | | | | | | | | | | | | | had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
* The KDE/FreeBSD team is pleased to announce KDE Software Compilationavilla2011-10-172-15/+47
| | | | | | | | | | | | | | | | | | 4.7.2. The official release notes can be found at: http://kde.org/announcements/announce-4.7.2.php This release ships with many improvements. Read more about them here: http://FreeBSD.kde.org/news.php#itemKDESC472availableinports We'd like to say thanks to all testers and contributors, especially to lwhsu@ for his effort on hosting our test packages. PR: 156293 [1] 159219 [2] 160164 [3] Submitted by: Oleg Sidorkin <osidorkin@gmail.com> [1] Alvaro Castillo <gobledb@gmail.com> [2] dkeav04@gmail.com [3] Tested by: exp-run via pav
* Update to version 4.4.18.bsam2011-10-031-2/+2
|
* - Update to 4.3sunpoet2011-10-032-4/+3
|
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)amdmi32011-09-242-5/+6
| | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav
* . update to version 4.4.17;bsam2011-09-071-2/+2
| | | | . add dependency upon misc/shared-mime-info and devel/desktop-file-utils.
* - Disallow from pointyhat: runaway python processpav2011-08-271-0/+2
|
* - bump PORTREVISION from ports if USE_APACHE=13+ or 20+ is definedohauer2011-08-211-2/+2
|
* - Set DIST_SUBDIR: move dist files to DISTDIR/mythessunpoet2011-08-182-2/+3
|
* - Set DIST_SUBDIR: move dist files to DISTDIR/hyphensunpoet2011-08-182-2/+3
|
* - Set DIST_SUBDIR: move dist files to DISTDIR/hunspellsunpoet2011-08-182-2/+3
|
* - Set WRKSRCsunpoet2011-08-131-1/+2
|
* - Unify COMMENT and pkg-descrsunpoet2011-08-132-4/+5
| | | | | | - Set WRKSRC - Fix typo - Add trailing slash of WWW
* - Move language prefix to PKGNAMEPREFIXsunpoet2011-07-293-41/+38
| | | | | | | | | - Use DATADIR - Use PLIST_DIRSTRY for DATADIR - Explicitly list installing filenames - Bump PORTREVISION for PORTNAME and PLIST change - Sort PLIST - Cosmetic change
* Update to 0.1.33, which fixes the verb "chauvir".naddy2011-07-253-4/+6
| | | | Approved by: maintainer timeout (8 weeks)
* - Fix typosunpoet2011-07-251-9/+9
|
* Pass matainership to the new office teambapt2011-07-223-3/+3
|
* Add some locales thesaurusbapt2011-07-214-0/+50
|
* Add french hyphenation rulesbapt2011-07-204-0/+45
|
* Update to 5.12jlaffaye2011-07-201-5/+3
| | | | | PR: ports/158427 Submitted by: Takefu <takefu@airport.fm> (maintainer)
* Add french modern dictionnary for hunspellbapt2011-07-204-0/+45
|
* - Bump PORTREVISION for science/hdf5-18 shlib changesunpoet2011-07-152-4/+4
|
* It seems that Code_Aster does not support Python 2.7 on amd64.thierry2011-07-141-0/+5
| | | | Reported by: pointyhat via Pav
* Reset maintainership de jure. In fact KDE 3 has not been maintained by our teammakc2011-07-082-2/+2
| | | | | | for a long time, not to mention upstream. Discussed a while ago among the KDE/FreeBSD team.
* Update KDE Software Compilation ports to 4.6.5makc2011-07-083-3/+85
| | | | | Official announcement: http://www.kde.org/announcements/announce-4.6.5.php Changelog: http://www.kde.org/announcements/changelogs/changelog4_6_4to4_6_5.php
* Update to version 4.4.16.bsam2011-07-041-2/+2
|
* - Drop MD5 supportmiwi2011-07-031-1/+0
|
* Rework the port, for apache22 exp-run.thierry2011-06-308-446/+421
| | | | | | | Since I'm there, release maintainership. PR: ports/158359 Submitted by: ohauer
* Chase py-mechanize's upgrade.thierry2011-06-221-1/+2
| | | | | Reported by: pointyhat via Pav Pointyhat to: lwhsu
* The FreeBSD KDE Team is pleased to announce KDE SC 4.6.4. Read fullavilla2011-06-141-2/+2
| | | | announcement here: http://kde.org/announcements/announce-4.6.4.php
* Update to version 4.4.15.bsam2011-06-021-2/+2
|
* Update to Adobe Reader 9.4.2 and add a hack to mitigate "RSException" crashhrs2011-05-301-2/+2
| | | | | issue in GUI mode. A linux_adobe.ko kernel module has to be loaded before acroread is invoked.
* Update KDE Software Compilation ports to 4.6.3makc2011-05-172-2/+51
| | | | Special thanks to Raphael Kubo da Costa for his work on this update.
* One more bunch of unmaintained expired ports removalbapt2011-05-0211-327/+0
| | | | | | | | | | 2011-05-01 audio/dap: Upstream disapear and distfile is no more available 2011-05-01 audio/gdrdao: Upstream disapear and no more distfiles available 2011-05-01 databases/gmysql: Upstream disapear and distfile is no more available 2011-05-01 deskutils/kuake: Upstream disapear and distfile is no more available 2011-05-01 finance/xinvest: Outdated, abandoned 2011-05-01 finance/xquote: Outdated, abandoned 2011-05-01 french/plgrenouille: Upstream disapear and distfile is no more available
* Bump PORTREVISION after open-mofit updatemakc2011-05-023-2/+3
|
* - Update KOffice to 2.3.3.avilla2011-04-134-4/+100
|
* The FreeBSD KDE Team is pleased to announce April updates for KDEavilla2011-04-072-2/+11
| | | | | | | Software Compilation: 4.6.2, codename "Congrats". Read the full announcement here: http://kde.org/announcements/announce-4.6.2.php. Special thanks to Raphael Kubo da Costa who ported the release.
* Update to version 4.4.13.bsam2011-04-031-2/+2
|
* - Update KOffice to 2.3.1.avilla2011-03-254-114/+32
| | | | - Force dependency on new libwpg.
* The FreeBSD KDE Team is pleased to announce KDE SC 4.6.1 and KDE PIMavilla2011-03-253-26/+51
| | | | | | | | | 4.4.10. The official 4.6.1 release notes can be found at: http://www.kde.org/announcements/announce-4.6.1.php We'd like to say thanks to all helpers and submitters. Tested by: exp-run via miwi
* - Revertpav2011-03-221-2/+2
| | | | | Pointy hat to: miwi Reported by: pointyhat
* - Get Rid MD5 supportmiwi2011-03-1910-11/+2
| | | | With hat: portmgr (myself)
* Deprecate unmaintained ports from french where upstream disapear and/orbapt2011-03-161-0/+3
| | | | where no distfiles can be found and are not used by maintained ports
* Chase the upgrade of science/cgnslib to 2.5-5; this implies tothierry2011-02-262-7/+8
| | | | | | | | | | switch some dependencies from science/hdf5 to science/hdf5-18. As a side note: I think that all ports depending on science/hdf5 could be switched to science/hdf5-18, by defining H5_USE_16_API when necessary, and then science/hdf5 could be deprecated. PR: ports/154736
* Update to version 4.4.12.bsam2011-02-071-2/+2
| | | | Feature safe: yes
* - Update to 5.04sunpoet2011-01-131-3/+2
| | | | | | | | | | - Cleanup CONFLICTS and DISTINFO_FILE: remove es-MT and nl-MT - Space/Tab twiddle Changes: http://www.movabletype.org/2010/12/movable_type_504_and_435_security_update.html PR: ports/152913 Submitted by: Takefu <takefu@airport.fm> (maintainer) Feature safe: yes
* - Remove unnecessary PKGNAMEPREFIX declarationsunpoet2011-01-095-5/+0
| | | | | | | | - Remove obsolete MD5 checksum while I'm here PR: ports/153634 Submitted by: sunpoet (myself) Approved by: pav (with portmgr hat)
* - The KDE FreeBSD team is proud to announce the release of KDE 4.5.5fluffy2011-01-081-2/+2
| | | | | | for FreeBSD. It's a bugfix-only release, January 2011 set.
* Update to 9.4.1 and add a warning message which explains the GUI mode doeshrs2011-01-051-3/+2
| | | | | | | | not work currently. Security: http://www.adobe.com/support/security/bulletins/apsb10-28.html Security: http://www.adobe.com/support/security/bulletins/apsb10-21.html Security: http://www.adobe.com/support/security/advisories/apsa10-02.html
* Update to version 4.4.11.bsam2011-01-031-2/+2
|
* Fix qtEficas, and re-enable it by default, by replacing QListBoxItem bythierry2011-01-031-3/+4
| | | | | | QListWidgetItem. Obtained from: Code_Aster forums (bjng)
* Garbage-collect expired ports:rene2011-01-0125-585/+0
| | | | | | | | | | | | | | | | | | | | | | | 2010-12-30 databases/p5-sqlrelay: broken and upstream disapeared 2010-12-30 devel/php-dbg2: No upstream support 2010-12-30 dns/fourcdns: upstream has disapeared 2010-12-31 emulators/win4bsd: Development has ceased and distfile is no longer available 2010-12-31 french/mozilla-flp: www/seamonkey port is deprecated. Consider using the www/firefox-i18n. 2010-12-31 french/xtel: Minitel services will be discontinued at the end of 2010. 2010-12-30 ftp/ftpq: upstream has disapeared 2010-12-30 graphics/paintlib: does not compile with new tiff and no more maintained upstream 2010-12-30 graphics/g3dviewer: does not build with gcc 4.2, upstream disapeared 2010-12-30 lang/scriba: Does not compile with gcc 4.2+, looks like abandonware 2010-12-30 math/rascal: Broken on every arch since 2008, looks like an abandonware 2010-12-31 net-mgmt/nrg: Project has vanished. Use cacti instead. 2010-12-31 security/hostsentry: Project is dead. 2010-12-31 sysutils/kcube: Project has vanished 2010-12-31 www/cybercalendar: has been unmaintained since 2001 and is unusable with dates after 2010 (see ports/150974) 2010-12-31 www/flock: Flock 3 moves from Firefox to Chromium 2010-12-31 www/linux-flock: Flock 3 moves from Firefox to Chromium 2010-12-30 x11-clocks/xtu: Looks like abandonware Leave java/tya in for now, as it has outstanding PRs.
* Upgrade to 10.3.0-3.thierry2010-12-306-122/+395
|
* Upgrade to 9.8-1.thierry2010-12-302-523/+464
|
* Chase Code_Aster's upgrade.thierry2010-12-302-2/+1
|
* Upgrade to 2.1.1-1.thierry2010-12-302-14/+103
| | | | Note: qtEficas does not run at the moment, it's disabled.
* Upgrade to 2.1.1-1.thierry2010-12-302-301/+448
|
* Always skip included intl, otherwise the build fails if gettext isn'tnaddy2010-12-261-3/+15
| | | | installed even if we never link against it.
* * Update to 0.1.32.naddy2010-12-235-43/+48
| | | | | | | * Add (optional) support for GTK+ app. * Clean up a lot of cruft, e.g., the GNOME option didn't work at all, Approved by: maintainer
* Fix the Icon of the .desktop file.thierry2010-12-211-0/+2
|
* This project uses Python and Qt to create a small software to download podcaststhierry2010-12-217-0/+333
| | | | | and videos from French websites. It uses plugins to enlarge software possibilities.
* - Updated to 2.6.1.pgollucci2010-12-121-1/+1
| | | | | PR: ports/152989 Submitted by: "SimaMoto, RyoTa" <liangtai.s4@gmail.com> (maintainer)
* Update to version 4.4.10.bsam2010-12-121-3/+2
|
* Sync to new bsd.autotools.mkade2010-12-043-3/+3
|
* KDE FreeBSD team presents KDE SC 4.5.4.makc2010-12-032-6/+14
|
* Chase the upgrade of MPICH2.thierry2010-11-152-6/+8
|
* KDE FreeBSD team presents KDE SC 4.5.3.makc2010-11-042-7/+2
|
* Deprecate md5 in favour of sha256 checksums. md5 checksums will no longererwin2010-10-294-4/+4
| | | | | | | | | | be generated or checked, and will be silently ignored for now. Also, generalize the MD5_FILE macro to DISTINFO_FILO. PR: 149657 Submitted by: rene Approved by: portmgr Tested on: pointyhat i386 7-exp
* Update my MAINTAINER address to culot@FreeBSD.org.culot2010-10-201-1/+1
| | | | Approved by: sahil@ (mentor)
* Punt autoconf267->autoconf268ade2010-10-162-2/+2
|
* Update translation ports for devel/eric4 to version 4.4.9.bsam2010-10-151-3/+3
|
* - Update MT (Moveable Type) to 5.0.31 and all language packspgollucci2010-10-081-1/+1
| | | | | PR: ports/151278 Submitted by: Takefu <takefu@airport.fm>
* KDE FreeBSD team presents KDE SC 4.5.2.makc2010-10-062-3/+10
| | | | | | | | kdebase4-workspace is now shipped with FreeBSD-branded wallpapers [1] (set by default for new accounts). Thanks to Ivan Cukic from KDE for making the wallpapers! [1] http://ivan.fomentgroup.org/blog/2010/09/05/stripes-kde-be-free-freebsd/
* - Mass Cleanup/Update to 5.0.3 of MovableType (MT)pgollucci2010-09-233-0/+26
| | | | | | | | - Add languages (french, german) - Pass MAINTAIENR to submitter PR: ports/139303, ports/142374, ports/146536, ports/149819, ports/150419 Submitted by: Takefu <takefu@airport.fm> (maintainer)
* Update to version 4.4.8.bsam2010-09-181-3/+3
|
* Chase Code_Aster's upgrade.thierry2010-09-176-45/+8
|