summaryrefslogtreecommitdiff
path: root/devel/gob2
AgeCommit message (Collapse)AuthorFilesLines
2011-08-01Fix bug that was emitting #line directives with a line number of 0, whichdholland4-3/+45
clang strenuously objects to. Fixes clang build of audio/gmpc and maybe others. PKGREVISION -> 2.
2011-04-22recursive bump from gettext-lib shlib bump.obache2-3/+4
2011-01-12update to 2.0.18drochner2-6/+6
changes: -add ctop (works like alltop but only in the C file) -bugfixes
2010-02-07add license.zafer1-3/+3
2009-11-01Needs to link with -lfl with new enough flex. Shouldn't hurt anyonejoerg1-1/+5
else, so do it unconditionally.
2009-07-29update to 2.0.16drochner2-6/+6
changes: Function attributes; simple destroy, finalize, construct override support; afterdecls C block; minor other fixes/improvements.
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2009-01-20update to 2.0.15drochner2-6/+6
changes: Couple of minor fixes
2008-06-20Add DESTDIR support.joerg1-1/+3
2006-10-03Update to 2.0.14, provided by Martin Wilke in PR/34439:dillo2-7/+6
* Fix major segfault * --no-touch support to avoid spurious rebuilds (see manpage) (Jean-Yves Lefort) * abstract class flag support (Jean-Yves Lefort) * allow BOXED in signal arguments (see manpage) (Big Thor) * fix libglade support (Nicolas Bruguier)
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-06-27USE_TOOLS+=lexminskim1-2/+2
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-2/+4
2005-09-07Changes 2.0.12:adam2-9/+8
* libglade support (see manpage) (Nicolas Brugier) * Fixes to property parsing and allow user created parameters (Jean-Yves Lefort) * Add support for prealloc and allow bitfields (K. Haley) * Don't reference TYPE_SELF when generating privates (Big Thor)
2005-08-10Remove the abuse of buildlink that was pkg-config/buildlink3.mk. Thatjlam1-2/+2
file's sole purpose was to provide a dependency on pkg-config and set some environment variables. Instead, turn pkg-config into a "tool" in the tools framework, where the pkg-config wrapper automatically adds PKG_CONFIG_LIBDIR to the environment before invoking the real pkg-config. For all package Makefiles that included pkg-config/buildlink3.mk, remove that inclusion and replace it with USE_TOOLS+=pkg-config.
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz1-2/+2
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-05-09Replaced wip category with devel. Approved by xtraeme.rillig1-2/+2
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests.agc1-1/+2
2004-12-02Initial import of gob2 2.0.11 (package provided by Greg Troxel via pkgsrc-wip):dillo5-0/+52
GObject Builder (for glib2) is a simple preprocessor for easily creating GObject objects. It does not parse any C code and ignores any C errors. It is in spirit similar to things like lex or yacc. In some ways it also resembles java. But it is really just a simple preprocessor for creating GObjects for use in C or C++ and it is not a programming language.