aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - Fix problem with size mismatchSylvio Cesar Teixeira2010-02-211-1/+1
| | | | | | | | | | - Change MASTER_SITES Approved by: itetcu (mentor) Feature safe: yes Notes: svn path=/head/; revision=250116
* Update to 0.11.Anton Berezin2010-02-212-4/+4
| | | | | | | | Changes: http://search.cpan.org/dist/Markapl/Changes Feature safe: yes Notes: svn path=/head/; revision=250115
* - Update to 1.0.1Sylvio Cesar Teixeira2010-02-214-8/+8
| | | | | | | | Approved by: itetcu (mentor) Feature safe: yes Notes: svn path=/head/; revision=250114
* - Add new dependencies to portSylvio Cesar Teixeira2010-02-212-2/+4
| | | | | | | | | | | | - BUMP PORTREVISION "Thanks to: Javier Villarroya and Jim Mercer" Approved by: itetcu (mentor) Feature safe: yes Notes: svn path=/head/; revision=250113
* There are now 125 supported cities by BBBikeWolfram Schneider2010-02-211-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250112
* ONLY_FOR_ARCH -> ONLY_FOR_ARCHS.Boris Samorodov2010-02-211-1/+1
| | | | | | | | | PR: ports/144155 Submitted by: Andrius Morkunas <hinokind at gmail.com> Feature safe: yes Notes: svn path=/head/; revision=250111
* . Attempt to fix the build for recent 8-STABLE and 9-CURRENT which haveGreg Lewis2010-02-211-0/+24
| | | | | | | | | sigignore(3). Feature safe: yes Notes: svn path=/head/; revision=250110
* Updat to 2.6.6. See http://developer.pidgin.im/wiki/ChangeLog for a listJoe Marcus Clarke2010-02-215-7/+11
| | | | | | | | | of changes. Feature safe: yes Notes: svn path=/head/; revision=250109
* - Update MASTER_SITESSylvio Cesar Teixeira2010-02-212-18/+12
| | | | | | | | | | | | | - Update email of maintainer - Update pkg-descr PR: ports/143646 Submitted by: Alexander Best <alexbestms@wwu.de> (maintainer) Approved by: itetcu (mentor) Feature safe: yes Notes: svn path=/head/; revision=250108
* - Update to 0.7.2Sylvio Cesar Teixeira2010-02-214-25/+23
| | | | | | | | | | | | | - Change patch file - Update plist PR: ports/143183 Submitted by: Joachim Fritschi <fritschi@hrz.tu-darmstadt.de> Approved by: maintainer (timeout > 14days), itetcu (mentor) Feature safe: yes Notes: svn path=/head/; revision=250107
* - Update to 8.2Sylvio Cesar Teixeira2010-02-212-7/+7
| | | | | | | | Approved by: itetcu (mentor) Feature safe: yes Notes: svn path=/head/; revision=250106
* - Update to 2.11Sylvio Cesar Teixeira2010-02-212-4/+4
| | | | | | | | Approved by: itetcu (mentor) Feature safe: yes Notes: svn path=/head/; revision=250105
* - also broken on sparc64 are ported by portsmon/pointhatPhilip M. Gollucci2010-02-211-2/+2
| | | | | | | | | Submitted by: b.f. (maintainer) Feature safe: yes Notes: svn path=/head/; revision=250104
* - restrict broken to i386, maintainer as reported this upstreamPhilip M. Gollucci2010-02-201-2/+6
| | | | | | | | | Submitted by: b.f. (maintainer) Feature safe: yes Notes: svn path=/head/; revision=250102
* ftp/wget: Fix build with GNUTLSVasil Dimov2010-02-201-0/+11
| | | | | | | | | PR: ports/144144 Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> Feature safe: yes Notes: svn path=/head/; revision=250101
* - Update to 2.1 releaseDima Panov2010-02-203-5/+5
| | | | | | | | | | | v.2.0 no longer available, author force users to update to 2.1 with critical network fixes. Reported by: QAT via pav Approved by: portmgr (pav) Feature safe: yes Notes: svn path=/head/; revision=250100
* - Update to 20100218Dmitry Marakasov2010-02-206-30/+75
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250099
* - Add forgotten patchDmitry Marakasov2010-02-201-0/+20
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250098
* - Update to 0.8.7Dmitry Marakasov2010-02-203-11/+21
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250097
* - Update to 2.2.13Tim Bishop2010-02-204-16/+7
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250096
* - Update to 8.6Tim Bishop2010-02-203-217/+90
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250095
* The error with GCC 4.4:Vasil Dimov2010-02-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | /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 Notes: svn path=/head/; revision=250094
* Update to 0.34Max Brazhnikov2010-02-202-5/+4
| | | | | | | | | PR: ports/144126 Submitted by: Andras Horvath (maintainer) Feature safe: yes Notes: svn path=/head/; revision=250093
* Use ${OSVERSION} after including bsd.port.pre.mkVasil Dimov2010-02-201-4/+4
| | | | | | | | | | | | | | | Feature safe: yes PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after: Security: Feature safe: Notes: svn path=/head/; revision=250092
* graphics/hugin:Vasil Dimov2010-02-201-1/+3
| | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=250091
* Fix pkg-plist (2nd attempt).Vasil Dimov2010-02-201-2/+0
| | | | | | | | | | share/locale/en_AU is not listed in /etc/mtree/BSD.local.dist but QAT@ is complaining that the port has deleted it upon deinstall. Feature safe: yes Notes: svn path=/head/; revision=250090
* Fix pkg-plistVasil Dimov2010-02-201-0/+8
| | | | | | | | Reported by: QAT@ Feature safe: yes Notes: svn path=/head/; revision=250089
* - Update to 0.12.1 releaseDima Panov2010-02-202-5/+8
| | | | | | | | | | | | - Support for Russian Gold Edition PR: 143421, 143430 Submitted by: Andrey V. Elsukov <bu7cher AT yandex DOT ru>, myself Approved by: maintainer timeout >2 weeks Feature safe: yes Notes: svn path=/head/; revision=250088
* * Upgrade ftp/wget from 1.11.4 to 1.12Vasil Dimov2010-02-204-24/+17
| | | | | | | | | | | * Do not remove .gmo files because this causes the .po files not to be installed * Make the post-patch: commands visible Feature safe: yes Notes: svn path=/head/; revision=250087
* Mark BROKEN: does not buildErwin Lansing2010-02-201-0/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250086
* - Update to 1.5.0Tim Bishop2010-02-202-5/+4
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250085
* - Update to 3.5.3Tim Bishop2010-02-202-5/+4
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250084
* - Update to 5.8.14Tim Bishop2010-02-203-5/+5
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250083
* - Update to 1.13Li-Wen Hsu2010-02-204-17/+7
| | | | | | | | | | PR: ports/144122 Submitted by: Peter Johnson <johnson.peter AT gmail.com> Feature safe: yes Notes: svn path=/head/; revision=250082
* Reset maintainer: email address bounces.Mark Linimon2010-02-202-4/+1
| | | | | | | | Spotted by: gerald Feature safe: yes Notes: svn path=/head/; revision=250081
* Update to Wine 1.1.39. Among others, this includes the following changes:Gerald Pfeifer2010-02-196-12/+16
| | | | | | | | | | | | | | - Support for registry symbolic links. - Many MSI fixes. - Build process improvements. - MSXML cleanups and fixes. - A number of MSHTML improvements. - Various bug fixes. Feature safe: yes Notes: svn path=/head/; revision=250079
* - use $SUB_FILES to dynamically update pkg-messageGreg Larkin2010-02-192-3/+5
| | | | | | | | | | PR: ports/143143 Submitted by: Sevan Janiyan <venture37@geeklan.co.uk> Approved by: maintainer (implicit; timeout 26 days) Feature safe: yes Notes: svn path=/head/; revision=250078
* - Updated to 1.10.1Greg Larkin2010-02-193-18/+25
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250077
* - Mark BROKEN: bad plistPav Lucistnik2010-02-191-0/+2
| | | | | | | | Reported by: pointyhat Feature safe: yes Notes: svn path=/head/; revision=250076
* - Update to 0.22Gabor Kovesdan2010-02-192-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Version: lbzip2-0.22 Focus: Minor bugfixes Date: 18-Feb-2010 Changes: Building lbzip2 on Debian unstable discovered that the "lfs.sh" build script, due to a typo, did not invoke the "getconf" utility in a SUSv2-conformant way. This bug has been corrected. Version: lbzip2-0.21 Focus: Minor bugfixes Date: 17-Feb-2010 Changes: Code examination revealed that lbzip2-0.18 introduced a race between the following two code paths: (1) the muxer thread displays an error message when it encounters a write error, (2) the main thread, in preparation to terminate the process, frees the output file name after an INT or TERM signal is delivered to it. This bug had negligible chance to occur, but it was fixed nonetheless. Feature safe: yes Notes: svn path=/head/; revision=250075
* Fix pkg-plistTilman Keskinoz2010-02-192-13/+7
| | | | | | | | | | | | | | | Reported by: QAT/pointyhat Desupport PostgreSQL, it is no longer supported. Reported by: Cheasy <christoph.sold@googlemail.com> Bump PORTREVISION. Feature safe: yes Notes: svn path=/head/; revision=250074
* Add japanese/font-takao:Hiroki Sato2010-02-198-0/+231
| | | | | | | | | | | Takao Fonts are a community developed derivative of IPA Fonts. The main purpose of this project is to secure the possibility to maintain the fonts by the community. Feature safe: yes Notes: svn path=/head/; revision=250073
* Add OSVERSION check in order to apply d_mmap() fix only when required.Alexey Dokuchaev2010-02-191-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250072
* Catch up with production.Mark Linimon2010-02-191-0/+14
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250071
* Bring this up to date with what is in production: add 'queue length'Mark Linimon2010-02-191-3/+20
| | | | | | | | | column from pav; fix first-column formatting. Feature safe: yes Notes: svn path=/head/; revision=250070
* Fix a matching rule for fonts.dir lines in pkg-install. It removedHiroki Sato2010-02-192-2/+2
| | | | | | | | | all of -ipa-* lines when deinstalling. Feature safe: yes Notes: svn path=/head/; revision=250069
* Update to the 20100216 snapshot of GCC 4.4.4.Gerald Pfeifer2010-02-192-21/+25
| | | | | | | | | | | | | | | | | Use current GNU binutils from ports (devel/binutils) instead of the system tools. The latter are half a decade old and fail to properly support modern CPUs and their standard features such as SSE or AVX in the case of AMD64/Intel64 which means that they even break when using a simple -march=native. This helps address repeated user problems here and there, also by establishing a consistent base if, for example, the user has different flavors of as and ld in her path. On the way, sort CONFIGURE_ARGS. Feature safe: yes Notes: svn path=/head/; revision=250068
* Update to the 20100218 snapshot of GCC 4.5.0.Gerald Pfeifer2010-02-1910-80/+80
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=250067
* - Update to 1.6.1Pietro Cerutti2010-02-192-4/+4
| | | | | | | | | | PR: 144103 Submitted by: Sofian Brabez <sbrabez@gmail.com> (maintainer) Approved by: jadawin (wants his PRs but can't commit right now) Feature safe: yes Notes: svn path=/head/; revision=250066
* Add knobs for experimental Graphite support.Maho Nakata2010-02-196-0/+126
| | | | | | | | | | PR: 139607 Submitted by: Nikola Lecic <nikola.lecic@anthesphoria.net> Reviewed by: maho@ (patch to OOo has been rewritten) Feature safe: yes Notes: svn path=/head/; revision=250065