aboutsummaryrefslogtreecommitdiff
path: root/devel/gdb66
Commit message (Collapse)AuthorAgeFilesLines
* Make GDB build when basename() is POSIX compliant.Ed Schouten2016-06-011-0/+11
| | | | | | | | | | | | | | | | | | GDB's libiberty.h has a prototype of the basename() function it which does not match the one that is part of POSIX, declared in libgen.h. This is normally never visible, as GDB never includes libgen.h. On FreeBSD, it unfortunately is, as our locally added copy of kgdb includes both. Fix up libiberty.h to just include libgen.h. I'm currently discussing with upstream how a clean fix should be done, but I guess that requires more refactoring to the existing code. We'd better not bother importing that and stick to this compact workaround. Reviewed by: bapt@, mi@, Luca Pizzamiglio Differential Revision: https://reviews.freebsd.org/D6630 Notes: svn path=/head/; revision=416247
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415498
* many ports: mark broken on powerpc64Steve Wills2016-04-211-0/+2
| | | | Notes: svn path=/head/; revision=413746
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Cleanup DIST* variables.Mathieu Arnold2015-05-111-3/+2
| | | | | | | | | | | | | | When appropriate: - Try to use DISTVERSION{SUF,PRE}FIX - Replace PORTNAME-PORTVERSION by DISTNAME - Convert MASTER_SITES to use macros - Other light cleanup With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386097
* Unbreak build against devel/readline (used on 11.0-CURRENT)Jan Beich2015-04-281-0/+4
| | | | | | | | libgdb.a(tui-io.o): In function `tui_setup_io': tui-io.c:(.text+0x16f8): undefined reference to `readline_echoing_p' Notes: svn path=/head/; revision=384930
* Don't use profiling and static libreadline after r344754Jan Beich2015-04-281-2/+2
| | | | | | | | | | | | | | | | | | gdb66 and insight neither build with -pg nor link any other _p library. For profiling to work the ports may also need to disable stripping of non-debug symbols, build with -fno-omit-frame-pointer and do so for all the dependencies as well. poudriere fails because before 9.0R proflibs were packaged separately not in DIST list for |jail -c|, and 11.0C removed libreadline while devel/readline doesn't provide _p variant. Reported by: pkg-fallout (-quaterly lacks 84* and head* slaves) Approved by: portmgr blanket MFH: 2015Q2 Notes: svn path=/head/; revision=384925
* Switch some dependencies from a directory name or a file generated by ↵Antoine Brodin2015-01-241-1/+1
| | | | | | | | | pkg-install to a package name, as the former can't be attributed to a package Notes: svn path=/head/; revision=377795
* Cleanup plistBaptiste Daroussin2014-10-271-8/+0
| | | | Notes: svn path=/head/; revision=371544
* Left-align comment to appease older make.Adam Weinberger2014-09-051-1/+1
| | | | Notes: svn path=/head/; revision=367348
* Older make (8 and 9) treats a string as one large string. Newer make (10+)Adam Weinberger2014-09-051-1/+2
| | | | | | | | | | | | | | treats a string as a collection of words. Somehow a double-space was introduced into CFLAGS, which caused gdb66's configure to choke. Newer make had to be told to examine the entire line to get rid of it, but that syntax (/W) was unknown to older make. So, split the difference and just make a shell call to remove the space. The port can now build on 10 and 11. Notes: svn path=/head/; revision=367347
* Revert previous. It only works on newer make.Adam Weinberger2014-08-281-1/+1
| | | | | | | I give up. Notes: svn path=/head/; revision=366433
* The :C modifier doesn't seem to work as described. It seems to behaveAdam Weinberger2014-08-281-1/+1
| | | | | | | | | | exactly the same as :S here. Build was failing here because it was counting on :C doing the right thing. Change the regex into a simple string to fix the build. Notes: svn path=/head/; revision=366431
* Fix build with readline from portsBaptiste Daroussin2014-07-011-2/+1
| | | | Notes: svn path=/head/; revision=359994
* - STAGE-cleanPietro Cerutti2014-02-172-17/+16
| | | | | | | | - Convert to USES=tk - Fix build Notes: svn path=/head/; revision=344754
* Reduce over inclusion of bsd.port.mkBaptiste Daroussin2014-01-161-6/+4
| | | | Notes: svn path=/head/; revision=339877
* devel/gdb66: Restore ?= to COMMENT definitionJohn Marino2013-11-181-1/+1
| | | | | | | | Actually, devel/gdb66 is a master port after all. devel/insight is its slave with its own comment. Notes: svn path=/head/; revision=334161
* devel/gdb66: Disable -Werror to unbreak build on F10 and DragonFlyJohn Marino2013-11-182-8/+8
| | | | | | | | | | | | | Also: * Remove extra whitespace from WWW * Convert USE_GMAKE to USES * Remove ?= from comment; this is not a master port * Align with 2 tabs Approved by: portmgr (bapt, implicit) Notes: svn path=/head/; revision=334156
* Fix pkg name collisionBaptiste Daroussin2013-10-071-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=329689
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | devel part 2) Notes: svn path=/head/; revision=327723
* Introduce ICONV_CONFIGURE_ARG variable defined at Uses/iconv.mk.Boris Samorodov2013-09-041-5/+1
| | | | | | | | | | | It's value is "--with-libiconv-prefix=/usr/local" for systems before 100043 with ports libiconv and to use at systems post 100043 with base iconv it's value is "" (NULL). Co-authors: bapt, madpilot and bsam (me) Notes: svn path=/head/; revision=326316
* - Make ports use the libc provided iconv implementation on 10-CURRENTGuido Falsi2013-09-041-2/+6
| | | | | | | | | | | | | after r254273 - Fix a bunch of ports to properly work after this - Mark converters/libiconv as IGNORE for systems with iconv in libc Reviewed by: bapt Approved by: portmgr (bapt) Discussed with: bapt, bsam (who both contributed ideas and code) Notes: svn path=/head/; revision=326307
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - Fix patch when INSIGHT is not selectedPietro Cerutti2013-07-233-1/+3
| | | | | | | Reported by: bapt Notes: svn path=/head/; revision=323530
* - Fix build with Tcl/Tk 8.6Pietro Cerutti2013-07-152-0/+108
| | | | | | | Reported by: bapt Notes: svn path=/head/; revision=323028
* - adoption of optionsNGJason Helfman2013-05-291-5/+4
| | | | | | | | | | | | - add trace options to ncurses{-deve} - doc knob conversion in subversion{16} - trim headers/comments - eliminate some processing of bsd.port.pre.mk Approved by: portmgr (miwi) Notes: svn path=/head/; revision=319339
* Add a patch to properly locate, where itcl's library is located.Mikhail Teterin2013-05-132-1/+11
| | | | | | | | | | Bump PORTREVISION (only for insight) to reflect the update of itcl -- the updated, which necessitated the above fix. Obtained from: gahr@ Notes: svn path=/head/; revision=318125
* Rely on bsdtar to autodetermine the format of the distfiles when possibleBaptiste Daroussin2013-04-291-7/+2
| | | | | | | | | | For a while now bsdtar is able to autotermine compression and archive format. Let's then use tar directly instead of piping to tar. Now USE_BZIP2 and USE_XZ only set EXTRACT_SUFX to the right format Notes: svn path=/head/; revision=316786
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-2/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: bapt, kwm Notes: svn path=/head/; revision=316654
* - Convert USE_GETTEXT to USES (part 3)Alex Kozlov2013-04-241-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316464
* Force numerous ports that fail to build with clang over to instead alwaysMark Linimon2012-10-091-0/+1
| | | | | | | | | | | | | | | | | | | | | | rely on gcc. The patch uses the new USE_GCC=any code in Mk/bsd.gcc.mk to accomplish this. The ports chosen were ports that blocked 2 or more ports from building with clang. (There are several hundred other ports that still fail to build with clang, even with this patch. This is merely one step along the way.) Those interested in fixing these ports with clang, and have clang as their default compiler, can simply set FORCE_BASE_CC_FOR_TESTING=yes. For those who have gcc as their default compiler, this change is believed to cause no change. Hat: portmgr Tested with: multiple runs on amd64-8-exp-bcm and 9-exp-clang, with various combinations of patch/no-patch and flag settings. Notes: svn path=/head/; revision=305610
* -remove MD5Olli Hauer2011-07-031-2/+0
| | | | Notes: svn path=/head/; revision=276999
* Resolve the LATEST_LINK conflict. Insight is now simply "insight".Mikhail Teterin2010-12-041-1/+1
| | | | | | | Notified by: erwin Notes: svn path=/head/; revision=265677
* Add a slave port of insight -- the gdb's GUI front-end. Having a slaveMikhail Teterin2010-12-031-7/+8
| | | | | | | | | | | | | port will ensure, the packages are auto-built for insight and that the WITH_INSIGHT option of gdb66 does not bit-rot with time... In gdb66 use bsd.port.options.mk to parse options and then act on them before bsd.port.pre.mk -- as Suggested by: pav Notes: svn path=/head/; revision=265627
* Allow the slave port (insight) to overwrite the CONFLICTS.Mikhail Teterin2010-12-031-1/+1
| | | | Notes: svn path=/head/; revision=265612
* Re-work the CONFLICTS line to avoid conflicting with ourselves...Mikhail Teterin2010-12-031-1/+2
| | | | Notes: svn path=/head/; revision=265611
* Rephrase pkg-descr -- this is not, any longer, "the latest" version ofMikhail Teterin2010-12-032-2/+8
| | | | | | | | | | | | | | gdb. Prepare for a new slave-port insight -- use a different suffix and PORTREVISION, when building with insight enabled. Register conflict with gdb-* (be that gdb-7.x or gdb-insight). Mention explicitly, that the previous commit enabled MAKE_JOBS_SAFE. Notes: svn path=/head/; revision=265610
* Make this work with what TCL/TK are installed in case, Insight isMikhail Teterin2010-12-032-6/+18
| | | | | | | | | | | | | | | | requested. This required an explicit inclusion of bsd.tcl.mk -- because options-parsing occurs in bsd.ports.pre.mk, and it is too late to set USE_TK after that. Don't know a better way around :( Also update the iTcl version to 3.4... Freshen up to work with Tcl-8.5, which is a default, and is a bit pickier about package version-numbers. Notified by: Bruce Cran Notes: svn path=/head/; revision=265608
* - Sync with devel/gdb6 from which it have been repocopiedPav Lucistnik2010-11-241-2/+6
| | | | Notes: svn path=/head/; revision=265105
* Bounce PORTREVISION for gettext-related ports. Have fun, ya'll.Ade Lovett2010-05-311-1/+1
| | | | Notes: svn path=/head/; revision=255371
* Unbreak this for amd64. I don't know if this is the correct fix,Daniel Eischen2009-09-102-5/+15
| | | | | | | but it seems to work. Notes: svn path=/head/; revision=241161
* - Mark BROKEN on amd64/8Pav Lucistnik2009-07-261-0/+5
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=238378
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=214430
* Help linker find -liconv in some cases.Mikhail Teterin2007-06-291-0/+1
| | | | | | | Notified by: Abdullah Ibn Hamad Al-Marri Notes: svn path=/head/; revision=194459
* Fix the PREFIX vs. LOCALBASE nits, and install man-pages withMikhail Teterin2007-06-282-8/+141
| | | | | | | | | | | INSTALL_MAN into MANPREFIX as suggested by sat earlier. Add more fixes to the itcl-3.3 compatibility patch, and upgrade the status of Insight-GUI from "broken" to "experimental". It, actually, seems to work now... Notes: svn path=/head/; revision=194418
* Rename a GUI-specific patch file, so that it is only applied,Mikhail Teterin2007-06-272-0/+1
| | | | | | | | | when INSIGHT is requested. Otherwise, it has nothing to patch. Notified by: Abdullah Ibn Hamad Al-Marri Notes: svn path=/head/; revision=194350
* Add the overlooked new minor patches.Mikhail Teterin2007-06-272-0/+80
| | | | Notes: svn path=/head/; revision=194343
* Update the stale port from a 3 year-old snapshot to the most recentMikhail Teterin2007-06-2736-2959/+337
| | | | | | | | | | | | | | | | | | | | | release 6.6 based on own work and that of the PR's submitter. Our patches appear to be part of the distribution mostly. Many thanks to the previous maintainer for his diligence and hardwork. Begin bringing INSIGHT (gdb's GUI-frontend) in. Insight is currently broken, but enabling it (via OPTIONS) will allow someone with ITk/Iwidgets expertise to port it to the recent version of ITk, as installed by the itk port. Take over maintainership for the time being. PR: 100067 Submitted by: Philip M. Gollucci Approved by: maintainer timeout Notes: svn path=/head/; revision=194342
* Unbreak for GCC 4.x.Alexander Kabaev2007-04-151-0/+11
| | | | Notes: svn path=/head/; revision=189979
* Re-add PowerPC related patches - they were committed with inconsistantDavid E. O'Brien2006-08-127-7/+7
| | | | | | | | | file names. Patches submitted by: Andreas Tobler <toa@pop.agri.ch> Notes: svn path=/head/; revision=170435