aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* These need Module::Build.Mathieu Arnold2015-04-1210-10/+10
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=383844
* games/megaglest: Unbreak on F10+ with an unsavory solutionJohn Marino2015-04-121-2/+6
| | | | | | | | | | | | | | | | | | | | Megaglest cannot be built under c++11 standard from the latest clang. It catches a narrowing error. The real solution is to fix the c++ code (it wasn't the only problem, but the first to trigger an error over a warning). The c++11 standard is required for wx, so it can't be unspecified. It turns out that gcc48 will not catch the error that clang does so the temporary fix is to require gcc48 for all FreeBSD releases. This may work for gcc49 as well, but it's likely that gcc5 will also catch the bug and break. So the unsavory short-term solution is to require GCC to build megaglest, but the long term fix is either patch the code or hopefully update to new version when upstream fixes the bug (then USE_GCC can be removed). Reported by: amdmi3 Notes: svn path=/head/; revision=383843
* graphics/delaboratory: Unbreak F8 and F9 tooJohn Marino2015-04-121-4/+4
| | | | | | | Reported by: amdmi3 Notes: svn path=/head/; revision=383842
* Only try to execute java if we building the jdbc plugin. Else java isn'tKoop Mast2015-04-121-0/+2
| | | | | | | | | available. Submitted by: antoine@ Notes: svn path=/head/; revision=383841
* graphics/gtimelapse: Unbreak F8 and F9 tooJohn Marino2015-04-121-2/+2
| | | | | | | Reported by: amdmi3 Notes: svn path=/head/; revision=383840
* x11-toolkits/py-wxPython30: Unbreak on F10John Marino2015-04-121-3/+4
| | | | | | | | | | | | | It turns out that wxPython30 won't build with clang at all. The c++ code is illegal according to clang (e.g. illegal cast), so remove the USES=compiler setting and replace with USE_GCC=yes. Tested on F8 and F10. I apologize for adding the GCC dependence for F10+ users but I didn't see any other simple fix. Approved by: blanket Notes: svn path=/head/; revision=383839
* New port: x11/p5-X11-XlibKurt Jaeger2015-04-125-0/+39
| | | | | | | | | | This module provides low-level access to X11 library functions, including access to some X11 extensions like the X11 test library (Xtst). WWW: http://search.cpan.org/dist/X11-Xlib/ Notes: svn path=/head/; revision=383838
* Configure fails to find proper link command for Boost unit_test_frameworkDon Lewis2015-04-122-9/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | because it first tries to link this library statically, and when that fails, it "forgets" to try linking it dynamically. The reason is that it has a bunch of nested loops to try multiple variations on the library name and keeps track of which library names it has tried so that it doesn't retry the same library name. The problem is that one of the loop variables also governs whether it should try static or dynamic liking, and if static linking fails, the library name gets added to the exclusion list, which prevents it from trying dynamic linking. Fix by the value of the loop variable $boost_rtopt_ to the key value into the list of library variations to disambiguate the two cases so that linking both ways is tried. Also move the location where $boost_failed_libs is set out by one nesting level to prevent the same library name value from being added to the list multiple times. Get rid of .include <bsd.port.options.mk> and .if ${PORT_OPTIONS:MDOCS} as suggested by mat@. Portlint whines about it but the Porters Handbook says it is OK because the doc files are few and small. Unmute ${INSTALL_DATA} as suggested by portlint. PR: 195597 Differential Revision: https://reviews.freebsd.org/D2279 Reviewed by: kwm Approved by: mat (mentor) Notes: svn path=/head/; revision=383837
* Add CPE infoJosh Paetzel2015-04-121-1/+2
| | | | | | | | PR: 199370 Submitted by: shun.fbsd.pr@dropcut.net Notes: svn path=/head/; revision=383836
* - Fix build on < 10.x after wxgtk30 updateDmitry Marakasov2015-04-121-0/+1
| | | | Notes: svn path=/head/; revision=383835
* - Remove debug printfDmitry Marakasov2015-04-122-3/+2
| | | | | | | Noticed by: danfe Notes: svn path=/head/; revision=383834
* Update 2.9.2 --> 2.9.3Cy Schubert2015-04-122-4/+3
| | | | | | | Submitted by: mi Notes: svn path=/head/; revision=383833
* This needs Module::Build.Mathieu Arnold2015-04-111-1/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=383832
* Fix "amd64" hardcode in java library path lookup and regen theKoop Mast2015-04-111-0/+3
| | | | | | | | | | | .class file which configure uses to figure out java setting. In theory this should fix other archs too if java ever gets ported. Annoyed by: pkg-fallout mails Notes: svn path=/head/; revision=383831
* x11-toolkits/py-wxPython30: Unbreak on F8 and F9John Marino2015-04-112-2/+12
| | | | | | | | | | | | | | | | This port must be built under c++11 standard like the rest of the wx-dependent ports. I couldn't find a way to pass the flag so I had to patch the python script directly. Also, the USES=compiler setting was missing, which is required to actually pull in a c++11 capable compiler on the older FreeBSD releases. This port was blocking ~29 other ports from building on releases that it wouldn't build on. Approved by: blanket Notes: svn path=/head/; revision=383830
* Update to 1.7.4Olivier Duchateau2015-04-112-3/+3
| | | | Notes: svn path=/head/; revision=383829
* x11/p5-X11-XCB: fix duplicate DEPEND lineKurt Jaeger2015-04-111-2/+0
| | | | Notes: svn path=/head/; revision=383828
* - Update to 0.4.0Olivier Duchateau2015-04-119-33/+100
| | | | | | | | | | - Enhance description - Adjust dependencies Changelog: https://mail.xfce.org/pipermail/xfce/2015-April/034400.html Notes: svn path=/head/; revision=383827
* There's no need for a SINGLE here, the ports works perfecly without any patchesMathieu Arnold2015-04-111-2/+2
| | | | | | | | | | | applied. Differential Revision: https://reviews.freebsd.org/D2282 Approved by: swills (maintainer) Sponsored by: Absolight Notes: svn path=/head/; revision=383826
* Clean up historic entanglements with other ports:Christian Weisgerber2015-04-114-60/+43
| | | | | | | | | * Merge Makefile and Makefile.inc. * Add our own proper pkg-descr file. * Remove support for building a BMP plugin. Notes: svn path=/head/; revision=383825
* New port: x11/p5-X11-XCBKurt Jaeger2015-04-115-0/+76
| | | | | | | | | | The modul bindings wrap libxcb, a C library to speak with X11. It provides an object oriented interface to the libxcb methods using Mouse. WWW: http://search.cpan.org/dist/X11-XCB/ Notes: svn path=/head/; revision=383824
* ftp/wget: add CPE informationBartek Rutkowski2015-04-111-1/+2
| | | | | | | | | | - Maintainer's timeout (vd@FreeBSD.org) PR: 198840 Submitted by: Shun <shun.fbsd.pr@dropcut.net> Notes: svn path=/head/; revision=383823
* cad/ldraw: Fix fetch; distfile was rerolledJohn Marino2015-04-112-5/+4
| | | | | | | | | | | | | | | I have the idea that ldraw is always released under the same filename. The port was marked broken due to a checksum mismatch; the file was fetched but it had changed. I've expanded DIST_SUBDIR to include the PORTVERSION. I think the scheme used is just {YEAR}{ITERATION-2-DIGIT} so I picked 201501 as the new PORTREVISION. This builds under poudriere testport just fine. Approved by: blanket Notes: svn path=/head/; revision=383822
* net/tramp: add CPE informationBartek Rutkowski2015-04-111-1/+2
| | | | | | | | | | - Maintainer's timeout (kuriyama@FreeBSD.org) PR: 198839 Submitted by: Shun <shun.fbsd.pr@dropcut.net> Notes: svn path=/head/; revision=383821
* - Update to upstream version 0.5.0 [1]Thomas Zander2015-04-114-22/+47
| | | | | | | | | | | | | | - General port cleanup [1] - Fix sporadic build failures on SMP systems [2] - Un-break build on arm [2] PR: 199247 Submitted by: tkato432@yahoo.com [1] Reviewed by: riggs [2] MFH: 2015Q2 Notes: svn path=/head/; revision=383820
* n FreeBSD 8 the name of the mtime member of struct stat was st_mtimespec.Don Lewis2015-04-112-4/+14
| | | | | | | | | | | | | | | | | | In the early days of FreeBSD 9 (after the branch but before 9.0-RELEASE), it was renamed to st_mtim in src rev r205792 for POSIX 2008 compliance. This change was never merged back to 8-STABLE. There was no corresponding bump of __FreeBSD_version, but the change happened between r900010 and r900011. Patch the source to use the old name when building on FreeBSD 8. Remove the BROKEN tag to allow the port to be built on FreeBSD 8. PR: 195601 Differential Revision: https://reviews.freebsd.org/D2281 Reviewed by: kwm Approved by: mat (mentor) Notes: svn path=/head/; revision=383819
* The problem causing the build breakage on FreeBSD 8 was fixedDon Lewis2015-04-111-4/+0
| | | | | | | | | | | | | upstream, but the BROKEN tag was never removed from the port. Remove the flag. PR: 195943 Differential Revision: https://reviews.freebsd.org/D2280 Reviewed by: kwm Approved by: mat (mentor) Notes: svn path=/head/; revision=383818
* Update to 1.2.2Antoine Brodin2015-04-112-4/+4
| | | | Notes: svn path=/head/; revision=383817
* - Update websiteJohan van Selst2015-04-112-2/+2
| | | | | | | - Adopt port Notes: svn path=/head/; revision=383816
* cad/brickutils: unbreak fetch (relocated at sourceforge)John Marino2015-04-111-4/+2
| | | | | | | | | | There's a new version of brickutils, so the distinfo file was moved to an "obsolete" folder. Adjust MASTER_SITES accordingly. Approved by: blanket Notes: svn path=/head/; revision=383815
* Build WITHOUT=NLS.Mathieu Arnold2015-04-111-0/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=383814
* - Update to libssh 0.6.4 (security and bugfix release)Johan van Selst2015-04-113-14/+14
| | | | | | | | | | | https://www.libssh.org/2014/12/19/libssh-0-6-4-security-and-bugfix-release/ - This version does not compile with gcrypt: force use of openssl - Adopt port MFH: 2015Q2 Notes: svn path=/head/; revision=383813
* biology/seaview: Unbreak -- it fetches fineJohn Marino2015-04-111-4/+1
| | | | | | | | | | | The second MASTER_SITES entry worked fine, so this must have been a transient fetch problem. I removed the first entry which is still failing though. Approved by: blanket Notes: svn path=/head/; revision=383812
* Fix build WITHOUT=NLS.Mathieu Arnold2015-04-113-0/+3
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=383811
* biology/platon: Upgrade from 05 MAR 2015 => 30 MAR 2015 to unbreakJohn Marino2015-04-112-6/+5
| | | | | | | | | | | | As noted by previous commit, upstream rerolls the same distfile frequently. When FreeBSD cache was removed, the port broke. I'm fixing it again with a new digest, but I'm also defining DIST_SUBDIR, which is the correct thing to do with rerolls-by-policy. Also I removed the bad backup MASTER_SITES and tested in poudriere. Notes: svn path=/head/; revision=383810
* - Add missing dependency on USES=pythonKevin Lo2015-04-111-4/+4
| | | | | | | - Bump PORTREVISION Notes: svn path=/head/; revision=383809
* Fix warnings with modern perl (5.16+) and which errors out with newest (5.21+)Koop Mast2015-04-111-0/+50
| | | | | | | | PR: 199380 Submitted by: mat@ Notes: svn path=/head/; revision=383808
* biology/p5-Bio-ASN1-EntrezGene: bump PORTEPOCHJohn Marino2015-04-111-0/+1
| | | | | | | | | | Apparently in some world I don't live in 1.091 > 1.70 pkg needs this port's epoch to be bumped reported by: wen Notes: svn path=/head/; revision=383807
* - Update to 0.10.1Wen Heping2015-04-112-4/+3
| | | | Notes: svn path=/head/; revision=383806
* biology/p5-Bio-ASN1-EntrezGene: Upgrade 1.09 => 1.70 to unbreakJohn Marino2015-04-113-15/+15
| | | | | | | | | | While here, reset the port. The last time the maintainer was seen was in 2005, when the port was created. Also, rewrap the package description such that it keeps within 75 characters; also move the url so it won't wrap across lines. Notes: svn path=/head/; revision=383805
* - Add a patch to replace deprecated des_* methods from des_old.h, whichAlexey Dokuchaev2015-04-113-10/+57
| | | | | | | | | | | | | | | enables the build against LibreSSL (OpenSSL head has also removed this header) - Simplify WRKSRC and move it where it normally belongs in Makefile - Remove no longer required "/LIBS=/s|-lpthread|-pthread|" gimmick, and bring Makefile header under standard form - Provide a better port description while I'm here PR: 198984 Submitted by: Bernard Spil Notes: svn path=/head/; revision=383804
* audio/taglookup: Remove BROKEN; it fetches just fineJohn Marino2015-04-111-1/+0
| | | | | | | | The site is up and the distfile fetches with the current checksum. I just this was just a transient issue. Notes: svn path=/head/; revision=383803
* Archive::Extract has been removed from core in 5.20.Mathieu Arnold2015-04-111-1/+8
| | | | | | | | With hat: perl Sponsored by: Absolight Notes: svn path=/head/; revision=383802
* Update to 1.4.99.20 aka pkg 1.5.0 rc2Baptiste Daroussin2015-04-112-3/+3
| | | | | | | | | | | | Changes: - Print notice to stdout - Prevent pkg-static from trying to load plugins - Bring back displaying of download size - pkg shlib now support -q (quiet) - Accept symlinks in pkg repo and ignore directories named (Latest or hidden: starting with a .) Notes: svn path=/head/; revision=383801
* - Update to version 2.768; canonicalize Makefile headerAlexey Dokuchaev2015-04-112-10/+12
| | | | | | | | | | | | - Add LICENSE knob (ART10 GPLv2; multi) - Drop unneeded "xt" from USE_XORG and adjust its position - Improve test target by using -C and thus get rid of "cd" - Remove ".if ${PORT_OPTIONS:MDOCS}" guard, no longer needed PR: 199240 Notes: svn path=/head/; revision=383800
* lang/c: Adding a well described pkg-descrMuhammad Moinur Rahman2015-04-111-0/+12
| | | | Notes: svn path=/head/; revision=383799
* net/micro_inetd: Update version 2005.06.29=>2014.08.14Muhammad Moinur Rahman2015-04-113-28/+6
| | | | | | | | | | | - Add LICENSE (BSD2CLAUSE) PR: 197860 Submitted by: neel@neelc.org Approved by: maintainer (timeout, 7 weeks) Notes: svn path=/head/; revision=383798
* Add CPE information.Juergen Lock2015-04-111-2/+4
| | | | | | | | PR: 199374 Submitted by: shun.fbsd.pr at dropcut.net Notes: svn path=/head/; revision=383797
* graphics/aeskulap: Unbreak fetch with new MASTER_SITESJohn Marino2015-04-112-9/+8
| | | | | | | | | | | | Most of the PR's changes to Makefile were rejected as being "gratuitous" as they did not functionally change anything. The port's description changes were accepted. PR: 199231 Submitted by: ports fury Notes: svn path=/head/; revision=383796
* Change the COMPHOLIO-specific BUILD_DEPENDS to EXTRACT_DEPENDS now thatGerald Pfeifer2015-04-111-1/+1
| | | | | | | | | | we moved the unpacking and initial patching from the pre-configure target to post-extract. Reported by: pkg-fallout Notes: svn path=/head/; revision=383795