summaryrefslogtreecommitdiff
path: root/wm/windowmaker
AgeCommit message (Collapse)AuthorFilesLines
2012-10-23Remove xextproto/buildlink3.mk in most cases where it occurs withwiz1-2/+1
libXext/buildlink3.mk, now that it is included there. Leave the places where its API version is set or variables from it are used directly (about 3 packages).
2012-10-08Drop PKG_DESTDIR_SUPPORT setting, "user-destdir" is default these days.asau1-3/+1
2012-10-03Bump all packages that use perl, or depend on a p5-* package, orwiz1-2/+2
are called p5-*. I hope that's all of them.
2012-02-06Revbump forwiz2-4/+4
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd2-4/+4
2011-09-21Needs pkg-configjoerg1-2/+2
2011-05-17Fix the previous fix for png 1.5, makes png icons work again.hans2-4/+4
2011-05-15Don't even try to use the obsolete Sun-Xinerama stuff. Fixes build onhans1-1/+5
SunOS.
2011-04-22recursive bump from gettext-lib shlib bump.obache2-4/+4
2011-03-27Installs Perl script --> runtime dependency. Bump revisionjoerg1-2/+3
2011-03-09libungif/buildlink3.mk -> mk/giflib.buildlink3.mkdrochner2-5/+5
(uses giflib now per default) bump PKGREV
2011-01-14Fix build with the latest version of the "png" package.tron2-1/+17
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz2-4/+4
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty2-4/+4
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz2-4/+4
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-04-21Add patch fixing a problem with Qt applications on 64bit machines,wiz3-3/+100
from Debian via Helge Mühlmeier in PR 43178. Bump PKGREVISION.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz2-4/+4
2009-08-26bump revision because of graphics/jpeg updatesno2-4/+4
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-3/+1
2009-06-14Remove @dirrm entries from PLISTsjoerg1-18/+1
2009-05-19Explicitly enable xinerama support (bl3.mk was already included).wiz1-22/+25
Fixes PR 41449 by Pierre Pronchery. While here: Remove excessive quoting operators, and convert to user-destdir.
2009-05-01update mirrors.zafer1-3/+3
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-08-10No need to define INSTALL_TARGET=install-strip.obache1-2/+1
Framework pass -s flag automatically if required (INSTALL_UNSTRIPPED!=yes). Part of fixes PR 15107.
2007-12-02Remove Ex-MASTER_SITE. From Zafer Aydogan.wiz1-2/+1
2007-06-21If gcc-4 is used, disable inline assembly until GCC Bug #25221 is fixed.minskim2-2/+9
Previously, it was done in Makefile for gcc-4.1 only. Now it covers gcc-4.0.* and is located in the proper place (hacks.mk). This fixes PR 36460.
2007-06-21Add link options to build on Darwin. Patches provided by Mark E. Perkinsminskim3-1/+62
in PR 36460. This fixes the second half of the PR.
2007-02-03Finish the last commit: libXt is actually needed for configure andjoerg1-1/+6
having Xinerama around is useful.
2007-02-01Modular Xorg support.joerg1-3/+3
2006-12-15Mechanically replace all includes of buildlink3.mk of the followingjoerg2-6/+6
packages with the modular Xorg equivalent. Those are falling back to the old location by default, so this commmit doesn't change dependencies. graphics/xpm ==> x11/libXpm fonts/Xft2 ==> x11/libXft x11/Xfixes ==> x11/libXfixes x11/xcursor ==> x11/libXcursor x11/Xrender ==> x11/libXrender x11/Xrandr ==> libXrandr
2006-10-04Include ../../mk/x11.buildlink3.mk.reed1-1/+2
This definitely uses X. (I noticed because in my environment, libXt was not buildlinked.)
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-29Disable inline assembler if GCC 4.1.x is used to fix build problems.tron1-6/+6
2006-05-30Fix homepage and/or master sites.reed1-4/+5
Add another mirror (http) for wm/windowmaker. Homepage URL change reported by C David Rigby via WWW feedback form.
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz2-4/+4
2006-04-17Strip ${PKGLOCALEDIR} from PLISTs of packages that already obeyjlam1-49/+49
PKGLOCALEDIR and which install their locale files directly under ${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now on, pkgsrc/mk/plist/plist-locale.awk will automatically handle transforming the PLIST to refer to the correct locale directory.
2006-04-13BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace withjlam1-2/+2
USE_TOOLS+=msgfmt.
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-10Added REPLACE_PERL for a Perl program that requires it. Didn't add Perlrillig3-30/+34
as a dependency since that program is only useful when KDE is installed. Chances are high that Perl is then also installed. Bumped PKGREVISION. Fixed pkglint warnings.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-22Has BROKEN_GETTEXT_DETECTION.joerg1-1/+2
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2006-01-24Bump BUILDLINK_RECOMMENDED of textproc/expat to 2.0.0 becausewiz2-4/+4
of the shlib major bump. PKGREVISION++ for the dependencies.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-10-27@dirrm share/examples/WindowMaker. Bump revision.joerg2-3/+4
2005-09-27Fix for WPrefsadam2-74/+79
2005-09-24Assembler code is disabled for anything except MACHINE_ARCH=="i386". Thisrillig1-1/+5
fixes the build on x86_64. Bumped PKGREVISION to 1.