summaryrefslogtreecommitdiff
path: root/audio/dap
AgeCommit message (Collapse)AuthorFilesLines
2013-01-26Revbump after graphics/jpeg and textproc/icuadam1-2/+2
2012-09-11"user-destdir" is default these daysasau1-3/+1
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
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-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-10-30Provide a value for OTHER_INCLUDE_DIR, so that -I is not used without arguments.joerg1-2/+2
2009-08-26bump revision because of graphics/jpeg updatesno1-1/+2
2009-06-30Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build withjoerg1-1/+3
MAKE_JOBS=2 and worked without.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-2/+1
2008-07-27MASTER_SITES is not available anymore, commented out.obache1-2/+2
2008-04-07Fix DESTDIR.joerg1-2/+2
2008-03-02Mechanical changes to add full DESTDIR support to packages that installjlam1-3/+5
their files via a custom do-install target.
2007-03-24Changes 2.1.5:adam8-86/+77
* Improvements
2006-12-15Mechanically replace all includes of buildlink3.mk of the followingjoerg1-2/+2
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-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-2/+2
2006-05-19Fixed some pkglint warnings by removing the "@" at the start of shellrillig1-4/+4
commands.
2006-03-09Replace references to ossaudio.buildlink3.mk with oss.buildlink3.mk.jlam1-2/+2
Remove deprecated ossaudio.buildlink3.mk.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+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-16Update MASTER_SITES. However, the currently used distfilewiz1-2/+2
is not available there, so comment it out.
2005-06-16Create directories before installing files into them.jlam1-1/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests to the SHA1 ones.agc1-1/+2
2005-01-01Use ossaudio.buildlink3.mk to build on more platforms.minskim4-13/+17
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
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-04-11bl3ify audio/dap, set USE_LANGUAGES=c c++, s/USE_X11BASE/USE_X11/;xtraeme1-7/+8
bump PKGREVISION.
2004-01-03Bump package revisions for tiff update.reed1-2/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2002-12-28Bump PKGREVISION on packages that depend on x11/xforms, since therejschauma1-2/+2
has been a soname change. Pointed out by fredb.
2002-09-21buildlink1 -> buildlink2jlam1-6/+6
2002-07-24Undo unnecessary version number bump from last commit.wiz1-2/+2
2002-07-24Stronly buildlinkify this package - from Julio Merino in PR 17699agc1-7/+8
2002-04-17Update dependency on xforms. We're mainly bumping the dependencyfredb3-11/+16
and package revision, since we may now link against the forms shared library, and because we also have to add a dependency on jpeg lib.
2002-04-01Update to version 2.1.2:fredb3-7/+8
Added ability to balance / pan in mixplay screens (2, 4, desk). Added FEATURES document. Update TODO document with user suggestions.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-05-31Pass X11PREFIX down through the environment, and use it when building.agc5-17/+34
Makes this package build with xpkgwedge installed
2001-04-18Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-11/+9
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-05Remove ONLY_FOR_PLATFORM line which only was there because of the xformswiz1-2/+1
dependency, and not in sync with it either.
2001-03-05Shorten DESCR to the most interesting part (for this file).wiz1-117/+8
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-09-28Belatedly bump "nb" version for xforms, and likewise increment packagesfredb1-2/+2
that depend it, as suggested by wrstuden. The reason is so that older binary packages which were linked against an a.out shared lib won't have their package dependencies satisfied by the latest package, which has no shared libraries. There's no help for old ELF packages, unfortunately.
2000-08-23Use "USE_XPM" option instead of direct dependence on the "xpm" package.tron1-2/+2
2000-07-06Adjust to reality.hubertf1-2/+2
Noted in PR 10518 by Lennart Augustsson.
2000-04-10defuzzrh2-7/+7
2000-02-29Update to version 2.1.1.scw19-1259/+20
The author has incorporated the stdio changes which were originally in the patch files being deleted.
2000-02-23install license, lowercase program name, USE_X11BASEwiz2-4/+5
2000-02-23honor X11BASE during compile, install additional documentationwiz5-13/+38
2000-02-22Update package to dap-2.1, and simplify the Makefile nowscw2-6/+5
that the tarfile has a version number.