notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

FInally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combinatio for a given watch list. This is what FreshPorts will look for.

non port: graphics/tulip/Makefile

Number of commits found: 101 (showing only 100 on this page)

1 | 2  »  

Sunday, 7 Apr 2019
07:43 antoine search for other commits by this committer
Deprecate ports broken for more than 6 months
Original commitRevision:498264 
Saturday, 16 Mar 2019
19:37 tcberner search for other commits by this committer
archivers/quazip: remove flavors (Qt4 deprecation)
Original commitRevision:495949 
16:00 tcberner search for other commits by this committer
graphics/tulip: remove QT4/QT5 options (Qt4 deprecation)

- untested, as marked broken

Approved by:	portmgr (implicit)
Original commitRevision:495898 
Tuesday, 25 Dec 2018
20:25 tcberner search for other commits by this committer
Change cmake default behaviour to outsource.

Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".

I tried to only set insource where explictely needed.

PR:		232038
Exp-run by:	antoine
Original commitRevision:488341 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
Original commitRevision:487272 
Sunday, 2 Dec 2018
15:41 rene search for other commits by this committer
Mark QT4 ports/functionality for removal on 2019-03-15

While here, chase some KDE4 ports and functionality, these are scheduled for
removal on 2018-12-31. Change the default option/flavor to QT5 where applicable
or use alternative toolkits like GTK.

Submitted by:	tcberner
Reviewed by:	adridg, jhale, rene, tcberner
Approved by:	portmgr (implicit, flavor hook)
Differential Revision:	https://reviews.freebsd.org/D17741
Original commitRevision:486467 
Sunday, 29 Jul 2018
22:18 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.

This includes ports
 - featuring USE_GCC=yes or USE_GCC=any,
 - featuring USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and those
 - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
   c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.

PR:		222542
Original commitRevision:475857 
Thursday, 28 Jun 2018
17:39 tcberner search for other commits by this committer
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk

From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	-https://reviews.freebsd.org/D15540
Original commitRevision:473503 
Sunday, 11 Mar 2018
10:05 tcberner search for other commits by this committer
Convert archivers/quazip and archivers/quazip-qt5 into flavors

Approved by:	portmgr (mat)
Differential Revision:	https://reviews.freebsd.org/D14640
Original commitRevision:464159 
Saturday, 18 Nov 2017
19:32 zeising search for other commits by this committer
Bump portrevision to chase graphics/glew shard library version update.

PR:		223370
Submitted by:	zeising
exp-run by:	antoine
Approved by:	antoine
Original commitRevision:454454 
Friday, 22 Sep 2017
10:48 mat search for other commits by this committer
Remove USES=execinfo.

PR:		220271
Submitted by:	mat (review), Yasuhiro KIMURA (PR)
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D11488
Original commitRevision:450351 
Sunday, 10 Sep 2017
20:55 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
   c++14-lang, c++0x, c11, or gcc-c++11-lib.

PR:		219275
Original commitRevision:449591 
Sunday, 25 Jun 2017
21:07 tcberner search for other commits by this committer
Make ninja opt-out in cmake.mk

Using ninja instead of make (1) can lead to significant speed ups while
building.
Therefore switch from having the ninja generator opt-in to having it opt-out.

Previously cmake-ports that wanted to use ninja could set
    CMAKE_NINJA=yes
now, ports that do not work with ninja can set
    cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.

The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary

PR:		219629
PR:		213331
Exp-run by:	antoine
Reviewed by:	rakuco
Differential Revision:	https://reviews.freebsd.org/D10748
Original commitRevision:444324 
Monday, 22 May 2017
16:04 linimon search for other commits by this committer
Mark some ports failing on power64.  In cases where the error message
was a stub, provide a real one.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
Reported by:	swills
Original commitRevision:441468 
Saturday, 1 Apr 2017
15:23 gerald search for other commits by this committer
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
Original commitRevision:437439 
Sunday, 1 Jan 2017
03:45 sunpoet search for other commits by this committer
Remove BROKEN_FreeBSD_9

Approved by:	portmgr (blanket)
Original commitRevision:430235 
Monday, 19 Dec 2016
14:57 woodsb02 search for other commits by this committer
graphics/tulip: Update to 4.10.0

Changes this release:
  http://tulip.labri.fr/TulipDrupal/?q=node/2143

Approved by:	adamw (mentor, implicit)
Original commitRevision:428936 
Friday, 21 Oct 2016
08:35 amdmi3 search for other commits by this committer
- Mark broken on FreeBSD 9.x:

/usr/local/include/bfd.h:1629:38: error: expected ',' or '...' before
'ATTRIBUTE_UNUSED'

Approved by:	portmgr blanket
Original commitRevision:424389 
Saturday, 9 Jul 2016
00:00 woodsb02 search for other commits by this committer
graphics/tulip: Update to 4.9.0
- Add USE_GL+=gl as per new stage-qa dependency detection script
- Refactor patches to apply cleanly against new release

Approved by:	adamw (mentor)
Relnotes:	http://tulip.labri.fr/TulipDrupal/?q=node/2141
Differential Revision:	https://reviews.freebsd.org/D7164
Original commitRevision:418250 
Monday, 9 May 2016
20:46 woodsb02 search for other commits by this committer
Update the maintainer email address for the ports I
maintain to woodsb02@FreeBSD.org

Approved by:	adamw (mentor)
Differential Revision:	https://reviews.freebsd.org/D6278
Original commitRevision:414892 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Monday, 14 Mar 2016
19:51 pi search for other commits by this committer
graphics/tulip: 4.7.0 -> 4.8.1

Changes:
  http://tulip.labri.fr/TulipDrupal/?q=node/2121

PR:		207818
Submitted by:	Ben Woods <woodsb02@gmail.com> (maintainer), rakuco
Original commitRevision:411112 
Monday, 22 Jun 2015
18:33 antoine search for other commits by this committer
Convert to USES=jpeg
Original commitRevision:390310 
Tuesday, 28 Apr 2015
14:47 adamw search for other commits by this committer
Update to 4.7.0, pet portlint, rename patch files so the names are
unambiguous, and assign maintainership to submitter.

PR:		199614
Submitted by:	Ben Woods (new maintainer)
Original commitRevision:384903 
Monday, 16 Feb 2015
07:44 vanilla search for other commits by this committer
1: Upgrade to 4.6.1.
2: add LICENSE.
3: add option for QT5.

PR:		197440
Submitted by:	Ports Fury.
Original commitRevision:379067 
Saturday, 3 Jan 2015
14:40 rakuco search for other commits by this committer
- Add patch to make the port build GCC and CMake 3.1.0.

  Tulip overrides CMake's built-in add_library() and add_executable()
  commands, so obviously things would explode at some point.

  This is a band-aid solution to get things working; the right solution
  would be to stop overriding CMake's commands, or even stopping setting
  RPATH on libraries and executables altogether, but that depends on getting
  the Tulip developers involved (I'm still figuring out if they respond to
  pings and patches).

- Use quazip from ports instead of building Tulip's bundled copy. Bundled
  software is evil.

- Clean up CMAKE_ARGS. PYTHON_INCLUDEDIR and LOCALBASE were used years ago
  in patch-CMakeLists.txt, but that has not been the case for several
  releases at least.

- Clean up the port's dependencies:
  * devel/qt4-assistant, devel/qt4-designer have not been required since
    Tulip 3.something.
  * devel/qt4-libqtassistantclient is severely outdated and unsupported,
    thankfully it has not been used since Tulip 3.4.0.
  * devel/libqxt is not needed because Tulip always builds its own bundled
    copy.
  * Add explicit dependency on print/freetype2 since the port links directly
    against it.
  * Stop depending on devel/libexecinfo directly and use USES=execinfo
    instead.
Original commitRevision:376116 
Thursday, 25 Dec 2014
20:54 bapt search for other commits by this committer
Bump portrevision after png update
Original commitRevision:375598 
Wednesday, 10 Dec 2014
22:29 gahr search for other commits by this committer
- Reset maintainership of my ports
Original commitRevision:374492 
Wednesday, 1 Oct 2014
07:45 gahr search for other commits by this committer
- Update to 4.6.0
  Release notes: http://tulip.labri.fr/TulipDrupal/?q=node/2041
Original commitRevision:369698 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.

Part II, Bump PORTREVISIONs.

PR:		192025
Tested by:	antoine (-exp runs)
Approved by:	portmgr (implicit)
Original commitRevision:367888 
Wednesday, 7 May 2014
14:11 gahr search for other commits by this committer
- Try to fix the linking problem on the cluster
Original commitRevision:353156 
Tuesday, 22 Apr 2014
13:24 gahr search for other commits by this committer
- Add a couple of missing patches
- Explicitely depend on graphics/jpeg
- Remove DOCS
Original commitRevision:351833 
11:41 gahr search for other commits by this committer
graphics/tulip -- depend on graphics/png
Original commitRevision:351810 
Wednesday, 16 Apr 2014
18:28 zeising search for other commits by this committer
The FreeBSD x11@ and graphics team proudly presents
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)
Original commitRevision:351411 
Friday, 20 Sep 2013
18:35 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
graphics)
Original commitRevision:327733 
Friday, 22 Mar 2013
20:06 makc search for other commits by this committer
- convert USE_CMAKE to USES
- while here clean up some ports from CMAKE_VERBOSE, which is intended
  for users

Approved by:	portmgr (miwi)
Original commitRevision:314960 
Sunday, 3 Feb 2013
18:16 makc search for other commits by this committer
Bump PORTREVISON after devel/py-sip and devel/qscintilla2 update.

x11-toolkits/py-qt:
- mark BROKEN: does not build with latest devel/py-sip
Original commitRevision:311476 
Saturday, 4 Aug 2012
22:52 kwm search for other commits by this committer
Switch from libglut to freeglut and retire libglut. Libglut hasn't been
developed in years and has been dropped from the MESA 8.0 distribution.
Freeglut is a rewrite of glut and is actively developed and is used by
many linux distributions instead of libglut.

Bump all ports that directly depend on libglut because of the shlib version
change.

There are some extra items in this patch.

*) Because freeglut doesn't have the same dependancies as libglut, some ports
	need extra dependencies added to USE_XORG to make them build.
*) Mark graphics/f90gl broken, f90gl depends on a header that is only shipped
	with libglut.
*) Remove option for libglut/freeglut selection in games/cake, only freeglut
	remains now.
*) While here fix a png related build issue games/vegastrike.

Thanks to miwi for running the exp-run.

Approved by:	portmgr (miwi)

Collaboration with:	zeising@
Obtained from:	xorg-dev staging area.
Original commit
Thursday, 14 Jun 2012
09:47 gahr search for other commits by this committer
- Update to 3.8.0
  Release notes: http://tulip.labri.fr/TulipDrupal/?q=node/1851
Original commit
Wednesday, 6 Jun 2012
06:44 miwi search for other commits by this committer
- Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4

Review by:      bapt, David Naylor (kde team)
Original commit
Friday, 1 Jun 2012
05:26 dinoex search for other commits by this committer
- update png to 1.5.10
Original commit
Friday, 25 May 2012
01:50 makc search for other commits by this committer
Chase PyQT update
Original commit
Tuesday, 28 Feb 2012
09:39 gahr search for other commits by this committer
- Update to 3.7.0
  Release notes: http://tulip.labri.fr/TulipDrupal/?q=node/1822
Original commit
Thursday, 8 Dec 2011
20:25 pav search for other commits by this committer
- Mark BROKEN on FreeBSD 7.X: does not compile
  library/tulip/src/PluginLibraryLoader.cpp: In constructor
'tlp::PluginLibraryLoader::PluginLibraryLoader(std::string,
tlp::PluginLoader*)':
  library/tulip/src/PluginLibraryLoader.cpp:232: error: invalid conversion from
'int (*)(const dirent*)' to 'int (*)(dirent*)'
  library/tulip/src/PluginLibraryLoader.cpp:232: error:   initializing argument
3 of 'int scandir(const char*, dirent***, int (*)(dirent*), int (*)(const void*,
const void*))'
  *** Error code 1

Reported by:    pointyhat
Feature safe:   yes
Original commit
Tuesday, 22 Nov 2011
10:36 gahr search for other commits by this committer
- Update to 3.6.1
  This is a maintenance release with many bug fixes, especially in the
  rendering of edges and labels. It includes improvements for the Python
  Scripting view, and new methods for the management of subgraphs.

Feature safe:   yes
Original commit
Thursday, 4 Aug 2011
14:02 gahr search for other commits by this committer
- Update to 3.6.0

  Release notes: http://tulip.labri.fr/TulipDrupal/?q=node/1541
Original commit
Tuesday, 26 Apr 2011
08:46 bapt search for other commits by this committer
depends on qmake_build instead of qmake

Reported by:    makc@
Approved by:    gahr@
Original commit
Thursday, 21 Apr 2011
13:07 bapt search for other commits by this committer
Remove useless dependency on gmake
Add dependency on qmake

PR:             ports/156532
Submitted by:   bapt@
Approved by:    gahr@
Original commit
Tuesday, 12 Apr 2011
15:32 gahr search for other commits by this committer
- Update to 3.5.0
  Release announcement: http://tulip.labri.fr/TulipDrupal/?q=node/1401
- Switch build system to CMake
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Sunday, 3 Oct 2010
19:56 gahr search for other commits by this committer
- Update to 3.4.1
  Announcement: http://tulip.labri.fr/TulipDrupal/?q=node/781
Original commit
Thursday, 1 Jul 2010
13:32 gahr search for other commits by this committer
- Update to 3.4.0

Feature safe:   yes
Original commit
Tuesday, 27 Apr 2010
21:58 gahr search for other commits by this committer
- Add glew to the list of supported USE_GL variables
- Patch ports depending on GLEW directly

Approved by:    portmgr (pav)
Original commit
Saturday, 3 Apr 2010
15:43 gahr search for other commits by this committer
- Update to 3.3.1
- Unbreak after dirent.h MFC
Original commit
Sunday, 28 Mar 2010
06:47 dinoex search for other commits by this committer
- update to 1.4.1
Reviewed by:    exp8 run on pointyhat
Supported by:   miwi
Original commit
Monday, 22 Mar 2010
02:26 linimon search for other commits by this committer
Note that this also got broken with the dirent.h MFC.

Hat:            portmgr
Original commit
Thursday, 27 Aug 2009
15:04 amdmi3 search for other commits by this committer
- Remove remaining SFP references (switch these ports to SF)

Approved by:    portmgr (pav)
Original commit
Monday, 17 Aug 2009
07:59 gahr search for other commits by this committer
- Chase distfile mismatch after silent update
Original commit
Friday, 14 Aug 2009
18:17 miwi search for other commits by this committer
- Change to new SFP macro
Original commit
Sunday, 2 Aug 2009
19:36 mezz search for other commits by this committer
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
Original commit
Friday, 19 Jun 2009
17:38 gahr search for other commits by this committer
- Fix PORTDOCS installation

Reported by:    PH via pav
Original commit
Monday, 15 Jun 2009
20:52 gahr search for other commits by this committer
- Chase unversioned distfile update by using DIST_SUBDIR

Reported by:    PH via pav
Original commit
Wednesday, 25 Mar 2009
06:20 gahr search for other commits by this committer
- Refactor (fix) pkg-plist

Reported by:    QA Tindie,
                TB via pav@
cvs: ----------------------------------------------------------------------
Original commit
Sunday, 22 Mar 2009
22:05 gahr search for other commits by this committer
- Update to 3.1.2

  * performance improvements: Open GL rendering of nodes has been improved;
    the undo/redo mechanism has been also improved.
  * bug fixes: the management of multiple views has been improved.
  * http proxy management: the plugins manager allows the download of plugins
    through the use of an http proxy.
Original commit
Tuesday, 10 Mar 2009
20:59 gahr search for other commits by this committer
- Update to 3.1.1
Original commit
Friday, 23 Jan 2009
16:28 flz search for other commits by this committer
- Update X.org ports to 7.4+ (few ports are more recent than the katamari).
- Bump PORTREVISION for all ports depending on libglut since the shlib
version number went from 4 to 3.
- Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't
installed anymore.
- Couple of ports fixes (mostly missing xorg components added to USE_XORG).
Original commit
Friday, 28 Nov 2008
11:15 gahr search for other commits by this committer
- Update to 3.0.3
Original commit
Thursday, 21 Aug 2008
06:18 rafan search for other commits by this committer
Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:             126524 (obsoletes 52917)
Submitted by:   rafan
Tested on:      two pointyhat 7-amd64 exp runs (by pav)
Approved by:    portmgr (pav)
Original commit
Monday, 4 Aug 2008
23:33 miwi search for other commits by this committer
- Fix build after qt 4.4.1 update
Original commit
Wednesday, 30 Jul 2008
16:53 gahr search for other commits by this committer
- Fix dependency list
- Bump PORTREVISION

Reported by:    miwi
Original commit
Friday, 18 Jul 2008
14:20 gahr search for other commits by this committer
- Update to 3.0.2
Original commit
Friday, 6 Jun 2008
13:35 edwin search for other commits by this committer
Bump portrevision due to upgrade of devel/gettext.

The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
Original commit
Saturday, 19 Apr 2008
17:56 miwi search for other commits by this committer
- Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
        Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
        ehaupt, nox, itetcu, flz, pav

PR:             116263
Tested on:      pointyhat
Approved by:    portmgr (pav)
Original commit
Thursday, 20 Mar 2008
09:46 pav search for other commits by this committer
- Remove USE_GETOPT_LONG which is a no-op since March 2007
Original commit
Thursday, 21 Feb 2008
21:20 gahr search for other commits by this committer
My reference e-mail address as a ports maintainer is now gahr@FreeBSD.org.

Approved by:    miwi (mentor)
Original commit
Wednesday, 30 Jan 2008
18:45 pav search for other commits by this committer
- Mark BROKEN on amd64 and ia64 with gcc 4.2

Reported by:    pointyhat
Original commit
Saturday, 22 Dec 2007
15:24 miwi search for other commits by this committer
- Fix build with gcc 4.2
- Pass maintainership to submitter

PR:             ports/118867
Submitted by:   Pietro Cerutti <gahr@gahr.ch>
Original commit
Saturday, 19 May 2007
20:32 flz search for other commits by this committer
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Original commit
Saturday, 21 Apr 2007
17:27 kris search for other commits by this committer
BROKEN on 7.0: does not comopile
Original commit
Sunday, 3 Dec 2006
23:21 miwi search for other commits by this committer
- Respect X11BASE

PR:             ports/106158
Submitted by:   trasz
Original commit
Monday, 14 Aug 2006
23:06 clsung search for other commits by this committer
- s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include dns/ editors/ emulators/ finance/
  games/ graphics/ maintained by ports@

PR:             ports/101916
Submitted by:   Gea-Suan Lin <gslin_AT_gslin dot org>
Original commit
Sunday, 7 May 2006
23:46 edwin search for other commits by this committer
Remove USE_REINPLACE for categories starting with a G
Original commit
Wednesday, 22 Feb 2006
10:28 vd search for other commits by this committer
Unbreak by removing bin/tlprender from pkg-plist and explicitly
disabling it with --disable-tlprender. Building it with the current
version of libOSMesa looks impossible, see ports/93667

Approved by:    garga (mentor)
Original commit
Sunday, 12 Feb 2006
22:19 kris search for other commits by this committer
BROKEN: Incorrect pkg-plist (does not compile completely?)
Original commit
Thursday, 12 Jan 2006
12:54 sem search for other commits by this committer
- Update graphics/libglut to 6.4.1.
- Shared lib version and PORTREVISION bumb for all affected ports.

While I'm here:
- Remove USE_MESA knob where it was (35 ports).
  It marked as depricated for 2 years.

PR:             ports/90247
Submitted by:   Ermal Lu?i <eri--@albabsd.org>
Original commit
Thursday, 29 Dec 2005
13:36 erwin search for other commits by this committer
Fix mastersites

PR:             91055
Submitted by:   Jean Milanez Melo <jmelo@freebsdbrasil.com.br>
Original commit
Tuesday, 12 Apr 2005
03:26 obrien search for other commits by this committer
At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
Original commit
Monday, 11 Apr 2005
08:04 obrien search for other commits by this committer
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
Original commit
Monday, 14 Mar 2005
10:09 flz search for other commits by this committer
- Fix build on amd64.

PR:             ports/78793
Submitted by:   Johan van Selst <johans@stack.nl>
Original commit
Friday, 29 Oct 2004
08:29 danfe search for other commits by this committer
Unbreak with recent GCC (fix bad C++ code).

Approved by:    fjoe (mentor, implicit)
Original commit
Wednesday, 29 Sep 2004
05:32 kris search for other commits by this committer
BROKEN on 5.x: Does not compile

Approved by:    portmgr (self)
Original commit
Thursday, 18 Mar 2004
12:53 kris search for other commits by this committer
BROKEN on amd64 and ia64: Does not compile (missing -fPIC from shared library
objects)
Original commit
Wednesday, 4 Feb 2004
05:21 marcus search for other commits by this committer
Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 2)
Original commit
Sunday, 25 Jan 2004
08:40 krion search for other commits by this committer
- Fix build on 4.x

Noticed by:     bento via kris
Original commit
Thursday, 4 Sep 2003
16:59 krion search for other commits by this committer
- Update to version 1.2.5

PR:             56434
Submitted by:   Ports Fury
Original commit
Tuesday, 1 Jul 2003
06:14 daichi search for other commits by this committer
update graphics/tulip: 1.2.3 --> 1.2.4

PR:             52697
Submitted by:   KATO Tsuguru <tkato@prontomail.com>
Original commit
Saturday, 17 May 2003
01:56 petef search for other commits by this committer
- update to 1.2.3
- sort pkg-plist

PR:             51227
Submitted by:   Ports Fury
Original commit
Saturday, 10 May 2003
17:06 petef search for other commits by this committer
The distfile is now in it's own versioned subdir.

Noticed by:     fenner's portsurvey
Original commit
Thursday, 27 Feb 2003
11:29 arved search for other commits by this committer
Add dependency on autoconf

Submitted by:   bento
Original commit
Thursday, 20 Feb 2003
18:08 knu search for other commits by this committer
de-pkg-comment
Original commit

Number of commits found: 101 (showing only 100 on this page)

1 | 2  »