CVS log for ports/graphics/hugin/Makefile
Up to [FreeBSD] / ports / graphics / hugin
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.53: download - view: text, markup, annotated - select for diffs
Mon Nov 14 03:26:41 2011 UTC (2 months, 4 weeks ago) by rakuco
Branches: MAIN
CVS tags: RELEASE_9_0_0, HEAD
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +0 -1 lines
Remove CMAKE_USE_PTHREAD from the ports using it. This setting has not had any effect since r1.13 to bsd.cmake.mk, as it was only useful when we supported FreeBSD < 7. Approved by: avilla (mentor), portmgr (miwi) Feature safe: yes
Revision 1.52: download - view: text, markup, annotated - select for diffs
Mon May 2 12:44:36 2011 UTC (9 months, 1 week ago) by makc
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +1 -1 lines
Bump PORTREVISION after open-mofit update
Revision 1.51: download - view: text, markup, annotated - select for diffs
Tue Apr 12 08:24:29 2011 UTC (10 months ago) by bapt
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2 lines
- chase exiv2 library bump - while here remove some MD5 - fix some forgottern desktop-file-utils dependencies
Revision 1.50: download - view: text, markup, annotated - select for diffs
Tue Jan 25 15:45:45 2011 UTC (12 months, 2 weeks ago) by vd
Branches: MAIN
CVS tags: RELEASE_8_2_0, RELEASE_7_4_0
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +1 -0 lines
Fix graphics/hugin pkg-plist Feature safe: yes
Revision 1.49: download - view: text, markup, annotated - select for diffs
Mon Jan 10 09:39:38 2011 UTC (13 months ago) by vd
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +11 -7 lines
Upgrade graphics/hugin from 2009.4.0 to 2010.4.0 * WX Unicode is now required to build Hugin * Remove the requirement for GCC 4.2 on 6.x since Hugin does not do RPATH_REMOVE anymore (see the log message for graphics/hugin/Makefile, rev 1.43)
Revision 1.48: download - view: text, markup, annotated - select for diffs
Fri Aug 20 08:34:49 2010 UTC (17 months, 3 weeks ago) by kwm
Branches: MAIN
CVS tags: RELEASE_6_EOL
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +1 -1 lines
Chase exiv2 shlib bump.
Revision 1.47: download - view: text, markup, annotated - select for diffs
Fri Jun 25 22:21:04 2010 UTC (19 months, 2 weeks ago) by makc
Branches: MAIN
CVS tags: RELEASE_8_1_0
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -2 lines
Change dependency from boost-python back to boost-libs. PR: ports/147801 Submitted by: makc@ Approved by: vd@ (maintainer timeout two weeks) Feature safe: yes
Revision 1.46: download - view: text, markup, annotated - select for diffs
Mon May 31 01:59:18 2010 UTC (20 months, 1 week ago) by ade
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +1 -1 lines
Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.
Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue Apr 27 21:58:26 2010 UTC (21 months, 2 weeks ago) by gahr
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +2 -2 lines
- Add glew to the list of supported USE_GL variables - Patch ports depending on GLEW directly Approved by: portmgr (pav)
Revision 1.44: download - view: text, markup, annotated - select for diffs
Sun Mar 28 06:36:47 2010 UTC (22 months, 2 weeks ago) by dinoex
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +1 -1 lines
- update to 1.4.1 Reviewed by: exp8 run on pointyhat Supported by: miwi
Revision 1.43: download - view: text, markup, annotated - select for diffs
Sat Feb 20 16:30:00 2010 UTC (23 months, 2 weeks ago) by vd
Branches: MAIN
CVS tags: RELEASE_7_3_0
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -1 lines
The error with GCC 4.4: /libexec/ld-elf.so.1: /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.11 required by /usr/local/bin/hugin not found which I just fixed by using an older GCC is because hugin-2009.4.0/src/hugin1/hugin/cmake_install.cmake includes this code: FILE(RPATH_REMOVE FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/hugin") which does remove the rpath setting -Wl,rpath=/usr/local/lib/gcc44 which was injected by /usr/ports/Mk/bsd.gcc.mk and then /usr/lib/libstdc++.so.6 is picked up instead of /usr/local/lib/gcc44/libstdc++.so.6 If we have to compile with GCC 4.4 some day, then we will have to remove the above RPATH_REMOVE code from cmake files. $ strings /usr/lib/libstdc++.so.6 |grep GLIBCXX GLIBCXX_3.4 GLIBCXX_3.4.1 GLIBCXX_3.4.2 GLIBCXX_3.4.3 GLIBCXX_3.4.4 GLIBCXX_3.4.5 GLIBCXX_3.4.6 GLIBCXX_3.4.7 GLIBCXX_3.4.8 GLIBCXX_3.4.9 GLIBCXX_FORCE_NEW $ strings /usr/local/lib/gcc44/libstdc++.so.6 |grep GLIBCXX GLIBCXX_3.4 GLIBCXX_3.4.1 GLIBCXX_3.4.2 GLIBCXX_3.4.3 GLIBCXX_3.4.4 GLIBCXX_3.4.5 GLIBCXX_3.4.6 GLIBCXX_3.4.7 GLIBCXX_3.4.8 GLIBCXX_3.4.9 GLIBCXX_3.4.10 GLIBCXX_3.4.11 GLIBCXX_3.4.12 GLIBCXX_3.4.13 GLIBCXX_FORCE_NEW GLIBCXX_DEBUG_MESSAGE_LENGTH $ Feature safe: yes
Revision 1.42: download - view: text, markup, annotated - select for diffs
Sat Feb 20 14:40:17 2010 UTC (23 months, 2 weeks ago) by vd
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +4 -4 lines
Use ${OSVERSION} after including bsd.port.pre.mk
Feature safe: yes
PR:
Submitted by:
Reviewed by:
Approved by:
Obtained from:
MFC after:
Security:
Feature safe:
Revision 1.41: download - view: text, markup, annotated - select for diffs
Sat Feb 20 14:36:41 2010 UTC (23 months, 2 weeks ago) by vd
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +3 -1 lines
graphics/hugin: The compilation is known to fail on 6.x with GCC 3.4, so use non-standard GCC (4.4+) only on 6.x and older. On 7.x and above use the base GCC instead of GCC 4.4+ because: 1. GCC 4.4+ is not needed anyway and 2. The hugin executable compiled on 8.0/gcc-4.4.4.20100216 fails to start: /libexec/ld-elf.so.1: /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.11 required by /usr/local/bin/hugin not found Reported by: Hannes Hauswedell <h2@fsfe.org> Feature safe: yes
Revision 1.40: download - view: text, markup, annotated - select for diffs
Fri Feb 5 11:38:42 2010 UTC (2 years ago) by dinoex
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +1 -0 lines
- update to jpeg-8
Revision 1.39: download - view: text, markup, annotated - select for diffs
Sat Jan 23 16:32:49 2010 UTC (2 years ago) by vd
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +2 -0 lines
graphics/hugin: Use GCC 4.4 or higher The compilation fails on 6.x with GCC 3.4: ... [ 11%] Building CXX object src/hugin_base/CMakeFiles/huginbase.dir/algorithms/nona/NonaFileStitcher.cpp.o cd /work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/hugin_base && /usr/bin/c++ -Dhuginbase_EXPORTS -O2 -fno-strict-aliasing -pipe -O2 -g -fPIC -I/work/a/ports/graphics/hugin/work/hugin-2009.4.0/src -I/work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/hugin_base -I/work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/foreign -I/work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/foreign/vigra -I/work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/celeste -I/usr/local/include -I/usr/local/include/OpenEXR -o CMakeFiles/huginbase.dir/algorithms/nona/NonaFileStitcher.cpp.o -c /work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/hugin_base/algorithms/nona/NonaFileStitcher.cpp In file included from /usr/local/include/boost/thread/future.hpp:12, from /usr/local/include/boost/thread.hpp:24, from /work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/hugin_base/vigra_ext/MultiThreadOperations.h:30, from /work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/hugin_base/vigra_ext/ImageTransforms.h:42, from /work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/hugin_base/nona/Stitcher.h:49, from /work/a/ports/graphics/hugin/work/hugin-2009.4.0/src/hugin_base/algorithms/nona/NonaFileStitcher.cpp:33: /usr/local/include/boost/exception_ptr.hpp:43: error: looser throw specifier for `virtual boost::exception_ptr::~exception_ptr()' /usr/local/include/boost/exception/detail/exception_ptr_base.hpp:27: error: overriding `virtual boost::exception_detail::exception_ptr_base::~exception_ptr_base() throw ()' *** Error code 1 ... Reported by: pav
Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Jan 11 09:33:45 2010 UTC (2 years, 1 month ago) by vd
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +3 -1 lines
Upgrade graphics/hugin from 2009.2.0 to 2009.4.0. Release notes: http://hugin.sourceforge.net/releases/2009.4.0/en.shtml ChangeLog: http://hugin.svn.sourceforge.net/viewvc/hugin/hugin/trunk/ChangeLog
Revision 1.37: download - view: text, markup, annotated - select for diffs
Sat Jan 9 17:47:32 2010 UTC (2 years, 1 month ago) by pav
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +1 -1 lines
- Fix build - switch dependency to boost-python-libs Reported by: pointyhat
Revision 1.36: download - view: text, markup, annotated - select for diffs
Mon Oct 5 07:19:06 2009 UTC (2 years, 4 months ago) by vd
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +4 -1 lines
graphics/hugin: Add missing dependencies that were added in the latest release. Reported by: erwin@, pav@
Revision 1.35: download - view: text, markup, annotated - select for diffs
Wed Sep 30 07:16:05 2009 UTC (2 years, 4 months ago) by vd
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +1 -1 lines
graphics/hugin: Chase a distfile that has been moved. Pointed by: QAT@ Feature safe: yes
Revision 1.34: download - view: text, markup, annotated - select for diffs
Tue Sep 29 16:36:45 2009 UTC (2 years, 4 months ago) by vd
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +13 -6 lines
Upgrade graphics/hugin from 0.8.0 to 2009.2.0. Release notes: http://hugin.sourceforge.net/releases/2009.2.0/en.shtml ChangeLog: http://hugin.svn.sourceforge.net/viewvc/hugin/hugin/trunk/ChangeLog Feature safe: yes
Revision 1.33: download - view: text, markup, annotated - select for diffs
Wed Sep 9 15:07:16 2009 UTC (2 years, 5 months ago) by vd
Branches: MAIN
CVS tags: RELEASE_8_0_0
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +0 -8 lines
graphics/hugin: Get rid of the idea to add lapack dependency. Bruno Postle says it is not needed.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sat Aug 22 05:41:10 2009 UTC (2 years, 5 months ago) by vd
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +29 -4 lines
Upgrade graphics/hugin from 0.7.0 to 0.8.0. Release notes: http://hugin.sourceforge.net/releases/0.8.0/en.shtml ChangeLog: http://hugin.svn.sourceforge.net/viewvc/hugin/hugin/trunk/ChangeLog
Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Aug 22 00:22:52 2009 UTC (2 years, 5 months ago) by amdmi3
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +1 -1 lines
- Switch SourceForge ports to the new File Release System: categories starting with G
Revision 1.30: download - view: text, markup, annotated - select for diffs
Tue Jul 28 11:45:01 2009 UTC (2 years, 6 months ago) by pav
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +1 -1 lines
- Update boost to 1.39 - Split boost port to separate components, with boost-all metaport PR: ports/137054 Submitted by: Alexander Churanov <churanov.port.maintainer@gmail.com> (maintainer)
Revision 1.29: download - view: text, markup, annotated - select for diffs
Sat Jul 18 11:10:52 2009 UTC (2 years, 6 months ago) by dinoex
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +1 -1 lines
- update to jpeg7 Tested by: pav on pointyhat
Revision 1.28: download - view: text, markup, annotated - select for diffs
Tue Mar 24 19:13:10 2009 UTC (2 years, 10 months ago) by makc
Branches: MAIN
CVS tags: RELEASE_7_2_0
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +1 -1 lines
bump PORTREVISION after cmake update
Revision 1.27: download - view: text, markup, annotated - select for diffs
Wed Mar 11 22:19:39 2009 UTC (2 years, 11 months ago) by bsam
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +1 -0 lines
. update graphics/exiv2 to the new version; . bump ports which depends upon libexiv2.so (the library was bumpted from *.so.3 to *.so.7); . mark current graphics/py-exiv2 as broken since it doesn't compile with new libexiv2; this should change with graphics/py-exiv2-0.2. PR: ports/131376 Submitted by: bsam (me) Discussed with: kde@ Approved by: maintainer timeout (5 weeks)
Revision 1.26: download - view: text, markup, annotated - select for diffs
Wed Dec 3 13:43:20 2008 UTC (3 years, 2 months ago) by vd
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +4 -6 lines
Upgrade graphics/hugin from 0.7.r3135 to 0.7.0.
Revision 1.25: download - view: text, markup, annotated - select for diffs
Tue Jul 1 14:47:01 2008 UTC (3 years, 7 months ago) by vd
Branches: MAIN
CVS tags: RELEASE_7_1_0, RELEASE_6_4_0
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +40 -48 lines
Upgrade graphics/hugin from 0.7_beta4 to 0.7.r3135 (SVN revision 3135). This version is not archived by the authors, so this is a snapshot of the SVN repository as of revision 3135. The archive is put on the freebsd.org cluster.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Sun Jun 15 15:35:34 2008 UTC (3 years, 7 months ago) by vd
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +1 -1 lines
graphics/hugin: Fix reference to autopano-complete - it is installed as autopano-complete, not autopano-complete.sh and does not recognize long options under FreeBSD. PR: ports/123588 Submitted by: marck
Revision 1.23: download - view: text, markup, annotated - select for diffs
Fri Jun 6 13:34:33 2008 UTC (3 years, 8 months ago) by edwin
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +1 -1 lines
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)
Revision 1.22: download - view: text, markup, annotated - select for diffs
Tue Jan 22 10:35:57 2008 UTC (4 years ago) by vd
Branches: MAIN
CVS tags: RELEASE_5_EOL
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -1 lines
Hugin does not work with wxgtk 2.8. It crashes at startup, after displaying the startup tip. This has been reported in ports/118190 and ports/119866. So limit the WX dependency to 2.6 only.
Revision 1.21: download - view: text, markup, annotated - select for diffs
Sat Jan 19 08:31:35 2008 UTC (4 years ago) by vd
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +36 -19 lines
* Upgrade graphics/hugin from 0.6.1 to 0.7.b4 * Update libpano dependency to libpano13 * Add OPTIONS to depend on enblend, autopano-sift and ptstitcher * Update automake dependency to 1.10 * Get rid of the autotools hack in pre-configure:, not necessary anymore * Sync pkg-plist * Sync the patches in files/
Revision 1.20: download - view: text, markup, annotated - select for diffs
Sun Sep 30 04:46:53 2007 UTC (4 years, 4 months ago) by linimon
Branches: MAIN
CVS tags: RELEASE_7_0_0, RELEASE_6_3_0
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -2 lines
Switch autoconf dependencies from 2.53 or 2.59 to 2.61. PR: ports/116639 Submitted by: aDe
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat May 19 20:09:30 2007 UTC (4 years, 8 months ago) by flz
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +1 -0 lines
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Wed Mar 28 20:46:18 2007 UTC (4 years, 10 months ago) by vd
Branches: MAIN
CVS tags: PRE_XORG_7
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -0 lines
Allow the execution of gettextize because the present gettext infrastructure does not work with the new gettext version. Unfortunately gettextize is interactive (it just wants one to hit enter) and there seems no way to circumvent this, so I set IS_INTERACTIVE=yes (it does ``read dummy < /dev/tty''!)
Revision 1.17: download - view: text, markup, annotated - select for diffs
Mon Mar 5 06:14:29 2007 UTC (4 years, 11 months ago) by vd
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +1 -1 lines
Adopt graphics/hugin and related ports.
Revision 1.16: download - view: text, markup, annotated - select for diffs
Tue Feb 27 05:43:23 2007 UTC (4 years, 11 months ago) by linimon
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -1 lines
Reset cartola@openit.com.br due to maintainer-timeouts and no response to previous email. Hat: portmgr
Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Feb 19 09:47:45 2007 UTC (4 years, 11 months ago) by vd
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +19 -8 lines
Update graphics/hugin from 0.5 to 0.6.1: * Change dependency on libpano12 >= 2.8.4 * Hook dependencies on the autotools, we need to recreate the autogenerated files because now we have changed the autotools source config files (configure.ac etc.) with the hope that our changes will be propagated upstream PR: ports/108266 Submitted by: vd Approved by: cartola@openit.com.br (maintainer timeout)
Revision 1.14: download - view: text, markup, annotated - select for diffs
Fri Dec 1 07:38:55 2006 UTC (5 years, 2 months ago) by pav
Branches: MAIN
CVS tags: RELEASE_4_EOL
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +3 -4 lines
- Use features of bsd.wx.mk, especially USE_WX PR: ports/101613 Submitted by: alepulver
Revision 1.13: download - view: text, markup, annotated - select for diffs
Mon Jan 30 14:40:58 2006 UTC (6 years ago) by garga
Branches: MAIN
CVS tags: RELEASE_6_2_0, RELEASE_6_1_0, RELEASE_5_5_0
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +16 -11 lines
- Update to 0.5 - Use DATADIR - Respect WITHOUT_NLS - Require wxgtk26 instead wxgtk24 and patch to use wxrc-gtk2-2.6 - Unbreak PR: ports/90619 Submitted by: Marco Molteni <molter@tin.it> Reworked by: garga Approved by: maintainer
Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Dec 17 18:39:13 2005 UTC (6 years, 1 month ago) by kris
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -0 lines
BROKEN: Does not compile
Revision 1.11: download - view: text, markup, annotated - select for diffs
Sat Nov 5 05:19:13 2005 UTC (6 years, 3 months ago) by marcus
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +1 -1 lines
Bump PORTREVISION to chase the glib20 shared library update.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Sun Aug 14 13:43:22 2005 UTC (6 years, 5 months ago) by fjoe
Branches: MAIN
CVS tags: RELEASE_6_0_0
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +4 -4 lines
- Fix build on RELENG_4. - Fix dependencies on wxgtk (include lib versions, otherwise wxgtk2 2.6.x libarries could match) - Bump PORTREVISION. Approved by: portmgr
Revision 1.9: download - view: text, markup, annotated - select for diffs
Tue Aug 9 14:13:44 2005 UTC (6 years, 6 months ago) by fjoe
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +5 -1 lines
- Fix pkg-plist. - Bump PORTREVISION. Approved by: portmgr
Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Jul 15 08:33:00 2005 UTC (6 years, 6 months ago) by fjoe
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +3 -1 lines
Fix the build (wx-config has different name now). Maintainer timeout. Pointy hat to: fjoe
Revision 1.7: download - view: text, markup, annotated - select for diffs
Thu May 12 16:39:52 2005 UTC (6 years, 9 months ago) by fjoe
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2 lines
Finish repo copy of wxgtk 2.4.2 ports to wxgtk24*
Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue Apr 12 03:25:38 2005 UTC (6 years, 10 months ago) by obrien
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -1 lines
At Kris's request, back out the MACHINE_ARCH spelling correction until after 5.4-RELEASE.
Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Apr 11 08:02:41 2005 UTC (6 years, 10 months ago) by obrien
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1 lines
Assist getting more ports working on AMD64 by obeying the Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sat Mar 12 10:52:18 2005 UTC (6 years, 11 months ago) by marcus
Branches: MAIN
CVS tags: RELEASE_5_4_0
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -0 lines
Bump PORTREVISION to chase the glib20 shared lib version change.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Mar 5 19:26:29 2005 UTC (6 years, 11 months ago) by pav
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +12 -10 lines
- Update to 0.5 beta2 PR: ports/78350 Submitted by: Marco Molteni <molter@tin.it> Approved by: Carlos Eduardo <cartola@openit.com.br> (maintainer)
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Dec 28 23:01:00 2004 UTC (7 years, 1 month ago) by edwin
Branches: MAIN
CVS tags: RELEASE_4_11_0
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -0 lines
Add use_imake to get makedepend Noticed by: pointyhat / kris
Revision 1.1: download - view: text, markup, annotated - select for diffs
Wed Dec 15 23:04:42 2004 UTC (7 years, 1 month ago) by edwin
Branches: MAIN
New port: graphics/hugin - a gui system to mount panoramic images from individual pictures Goal: an easy to use cross-platform GUI for Panorama Tools. With hugin you can assemble a mosiac of photographs into a complete immersive panorama, stitch any series of overlapping pictures and much more. WWW: http://hugin.sourceforge.net/ PR: ports/71849 Submitted by: Carlos Eduardo G. Carvalho <cartola@openit.com.br>
