summaryrefslogtreecommitdiff
path: root/devel/glib
AgeCommit message (Collapse)AuthorFilesLines
2019-11-24devel/glib: Fix compiler check via pkglintgdt1-2/+2
AUTOFIX: Makefile:35: Replacing "${PKGSRC_COMPILER} == \"clang\"" with "${PKGSRC_COMPILER:Mclang}". The PKGSRC_COMPILER can be a list of chained compilers, e.g. "ccache distcc clang". Therefore, comparing it using == or != leads to wrong results in these cases.
2019-05-23all: replace SUBST_SED with the simpler SUBST_VARSrillig1-2/+2
pkglint -Wall -r --only "substitution command" -F With manual review and indentation fixes since pkglint doesn't get that part correct in every case.
2017-08-01Follow some http -> https redirects.wiz1-2/+2
2017-07-16omit low GCC_REQD (3.0)maya1-5/+1
2016-04-24ftp.gtk.org is gone, remove it from MASTER_SITES.wiz1-3/+2
2016-02-25Use OPSYSVARS.jperkin1-4/+2
2016-02-15Workaround broken configure tests for Darwin/clang. Add LICENSE.jperkin3-6/+30
Bump PKGREVISION.
2015-11-03Add SHA512 digests for distfiles for devel categoryagc1-1/+2
Issues found with existing distfiles: distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip distfiles/fortran-utils-1.1.tar.gz distfiles/ivykis-0.39.tar.gz distfiles/enum-1.11.tar.gz distfiles/pvs-3.2-libraries.tgz distfiles/pvs-3.2-linux.tgz distfiles/pvs-3.2-solaris.tgz distfiles/pvs-3.2-system.tgz No changes made to these distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2012-10-31Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2012-10-03Correct `HOMEPAGE'.wiz1-2/+2
From Bug Hunting.
2012-10-03Update `DESCR' files (text taken from the home page).wiz1-4/+6
From Bug Hunting.
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