summaryrefslogtreecommitdiff
path: root/devel/glib
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-2/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-4/+1
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.
2008-11-18add missing NetBSD cvs tag to patch filechuck2-2/+4
2008-11-18do not use "extern inline", use "static inline" instead, as suggestedchuck2-8/+15
by joerg. see discussion here: http://mail-index.netbsd.org/tech-toolchain/2008/11/17/msg000501.html
2008-05-25Remove me as maintainer of some package, clame ownership of a few packages.tron1-2/+2
2007-06-08Remove dead MASTERS_SITES. From Zafer Aydogan.wiz1-2/+1
2007-01-18This package is not MAKE_JOBS_SAFE.rillig1-1/+2
2006-11-02DESTDIR support.joerg1-1/+2
2006-07-19Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrcjlam1-2/+1
had actually been ignoring LTCONFIG_OVERRIDE anyway and just using the default LIBTOOL_OVERRIDE to replace libtool scripts in packages. This just formalizes the fact that LTCONFIG_OVERRIDE is not used meaningfully by pkgsrc.
2006-07-11ISO C90 does not allow code intermixed with declarations. (hi tron!)rillig2-11/+12
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-08Use fix for "glib" package from PR pkg/21909 on all platforms. This willtron4-47/+33
fix problems with this package under Mac OS X (and eventually DragonFly). Fix various problems reported by "pkglint". Bump package revision because of these changes. This fixes PR pkg/33664 by Darrin B.Jewell.
2006-05-13Fixed pkglint warnings.rillig1-8/+11
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-03-30* Honor PKGINFODIR.jlam2-4/+4
* List the info files directly in the PLIST.
2006-01-12Fix glib.h's NULL definition for C++: it MUST be 0 there, not (void *)0.joerg3-7/+20
Bump revision.
2005-06-06Fix build under DragonFly. Patch from Joerg Sonnenberger.jmmv2-5/+15
2005-04-27Fix AC_DEFUN argument quoting for automake 1.8 and newer. Addresseswiz2-1/+15
part of PR 30053. No PKGREVISION bump because most people won't care.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-24Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to bewiz1-3/+1
useful.
2005-02-23Add RMD160 digests.agc1-1/+2
2004-11-12Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're addedjlam1-2/+1
automatically by pthread.buildlink3.mk. Also, factor out the pthread library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS and use it in packages where necessary (usually the ones that don't have a GNU configure script).
2004-10-05Correct library permission. Patch provided by Hiramatsu Yoshifumiminskim3-8/+19
in PR pkg/27116. Bump PKGREVISION.
2004-10-04distinguish between glib1 and glib2 in COMMENT.grant1-2/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-13/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-07-01Unused.wiz1-27/+0
2004-06-01Re: PR 25706 Syntax error prevents compilation with gcc 3.4.0shannonjr2-1/+28
Applied patch provided by Christian Biere <christianbiere@gmx.de> The patch ensures that G_GNUC_FUNCTION and G_GNUC_PRETTY_FUNCTION always expand to string literals - necessary since they will be concatenated (the source of the compilation error). This closes the PR.
2004-04-15Make this build under FreeBSD.xtraeme1-1/+2
2004-04-12Make this build under IRIX by only applying this patch on non-irix.jschauma2-8/+18
(Is this patch really needed on all other platforms?)
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-3/+6
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-27Fix PR pkg/24464 again. We need to patch config.status instead ofkristerw1-2/+2
config.status.overridden since the change in rev. 1.1413 of bsd.pkg.mk.
2004-02-19The name for the real config.status script is "config.status.overridden".jlam1-2/+2
That's the script that we need to patch for our special glib version numbering handling. This fixes PR 24464.
2004-02-19Whitespace nits.jlam1-8/+8
2004-02-15Remove info files entries from PLIST.seb1-2/+1
2004-02-14PKGCONFIG_OVERRIDE is relative to WRKSRC.jmmv1-4/+4
2004-02-09Increment pkgrevision.mjl1-2/+2
2004-02-08Make FreeBSD patch for ld.so semantic differences between linux and bsdmjl3-14/+14
apply for NetBSD too: this closes PR/21452 (problem with gnucash not finding its symbols in dynamically loaded modules) for -currentish installations (this needs RTLD_DEFAULT support in ld_elf.so). 1.6 installations still suffer unless a -current ld_elf.so and /usr/include/dlfcn.h are installed, sorry. Make other FreeBSD-specific patch apply too since it looks sensible (adds error checking).
2004-02-01In the new compiler selection framework, GCC_REQD is appended to, notjlam1-2/+2
overridden.
2004-01-24Append to BUILDLINK_DEPENDS.<pkg> instead of setting a default value. Injlam1-2/+2
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched.
2004-01-05bl3ifyjlam1-3/+5
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-9/+6
2004-01-03Initial sprinkling of work-in-progress buildlink3.mk files for using thejlam1-0/+23
buildlink3 framework.
2003-12-29improve descriptions of glib/gtk packages. taken straight fromgrant1-8/+4
www.gtk.org.
2003-09-17get rid of USE_GCC2/3 in pkg Makefiles, and set GCC_REQD orgrant1-2/+2
USE_PKGSRC_GCC as appropriate, as this is handled by compiler.mk now.
2003-09-12kill all references to gcc.buildlink2.mk and compiler.mk, and definegrant1-3/+2
USE_GCC2 or USE_GCC3 where appropriate. the functionality of the old gcc.buildlink2.mk has been rolled into compiler.mk now, which is automatically used. more changes to come later...