Up to [cvs.NetBSD.org] / pkgsrc / math / xldlas
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.40 / (download) - annotate - [select for diffs], Tue Jan 3 17:37:51 2023 UTC (4 months, 3 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
HEAD
Changes since 1.39: +2 -2
lines
Diff to previous 1.39 (colored)
*: recursive bump for tiff shlib major bump
Revision 1.39 / (download) - annotate - [select for diffs], Sat Jul 4 16:18:37 2015 UTC (7 years, 10 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1,
pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1,
pkgsrc-2020Q4-base,
pkgsrc-2020Q4,
pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3,
pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4,
pkgsrc-2017Q3-base,
pkgsrc-2017Q3,
pkgsrc-2017Q2-base,
pkgsrc-2017Q2,
pkgsrc-2017Q1-base,
pkgsrc-2017Q1,
pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3,
pkgsrc-2016Q2-base,
pkgsrc-2016Q2,
pkgsrc-2016Q1-base,
pkgsrc-2016Q1,
pkgsrc-2015Q4-base,
pkgsrc-2015Q4,
pkgsrc-2015Q3-base,
pkgsrc-2015Q3
Changes since 1.38: +1 -2
lines
Diff to previous 1.38 (colored)
Remove USE_X11BASE and X11PREFIX.
Revision 1.38 / (download) - annotate - [select for diffs], Sat Jan 26 21:38:12 2013 UTC (10 years, 4 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2015Q2-base,
pkgsrc-2015Q2,
pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4,
pkgsrc-2014Q3-base,
pkgsrc-2014Q3,
pkgsrc-2014Q2-base,
pkgsrc-2014Q2,
pkgsrc-2014Q1-base,
pkgsrc-2014Q1,
pkgsrc-2013Q4-base,
pkgsrc-2013Q4,
pkgsrc-2013Q3-base,
pkgsrc-2013Q3,
pkgsrc-2013Q2-base,
pkgsrc-2013Q2,
pkgsrc-2013Q1-base,
pkgsrc-2013Q1
Changes since 1.37: +2 -2
lines
Diff to previous 1.37 (colored)
Revbump after graphics/jpeg and textproc/icu
Revision 1.37 / (download) - annotate - [select for diffs], Tue Sep 11 23:04:35 2012 UTC (10 years, 8 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2012Q4-base,
pkgsrc-2012Q4,
pkgsrc-2012Q3-base,
pkgsrc-2012Q3
Changes since 1.36: +1 -3
lines
Diff to previous 1.36 (colored)
"user-destdir" is default these days
Revision 1.36 / (download) - annotate - [select for diffs], Mon Feb 6 12:40:54 2012 UTC (11 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base,
pkgsrc-2012Q2,
pkgsrc-2012Q1-base,
pkgsrc-2012Q1
Changes since 1.35: +2 -2
lines
Diff to previous 1.35 (colored)
Revbump for a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
Revision 1.35 / (download) - annotate - [select for diffs], Thu Dec 23 11:44:49 2010 UTC (12 years, 5 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4
Changes since 1.34: +2 -2
lines
Diff to previous 1.34 (colored)
Mechanically replace references to graphics/jpeg with the suitable 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
Revision 1.34 / (download) - annotate - [select for diffs], Mon Jan 18 09:59:13 2010 UTC (13 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1
Changes since 1.33: +2 -2
lines
Diff to previous 1.33 (colored)
Second try at jpeg-8 recursive PKGREVISION bump.
Revision 1.33 / (download) - annotate - [select for diffs], Wed Aug 26 19:57:59 2009 UTC (13 years, 9 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base,
pkgsrc-2009Q4,
pkgsrc-2009Q3-base,
pkgsrc-2009Q3
Changes since 1.32: +2 -2
lines
Diff to previous 1.32 (colored)
bump revision because of graphics/jpeg update
Revision 1.32 / (download) - annotate - [select for diffs], Tue Sep 2 02:39:44 2008 UTC (14 years, 9 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1,
pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-2008Q3-base,
pkgsrc-2008Q3,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.31: +3 -4
lines
Diff to previous 1.31 (colored)
Location on MASTER_SITE_SUNSITE has beenn changed. Noticed by Zafer Aydogan via private mail. Also primary? MASITERE_SITE and HOMPEAGE is not resolved anymore, removed and commented out.
Revision 1.31 / (download) - annotate - [select for diffs], Tue Mar 4 18:12:59 2008 UTC (15 years, 3 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
cwrapper
Changes since 1.30: +7 -5
lines
Diff to previous 1.30 (colored)
Mechanical changes to add DESTDIR support to packages that install their files via a custom do-install target.
Revision 1.30 / (download) - annotate - [select for diffs], Sun Jan 7 09:14:00 2007 UTC (16 years, 4 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
pkgsrc-2007Q3-base,
pkgsrc-2007Q3,
pkgsrc-2007Q2-base,
pkgsrc-2007Q2,
pkgsrc-2007Q1-base,
pkgsrc-2007Q1
Changes since 1.29: +3 -3
lines
Diff to previous 1.29 (colored)
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with ${PREFIX}/${PKGMANDIR}. Fixes PR 35265, although I did not use the patch provided therein.
Revision 1.29 / (download) - annotate - [select for diffs], Fri Dec 15 20:32:58 2006 UTC (16 years, 5 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base,
pkgsrc-2006Q4
Changes since 1.28: +2 -2
lines
Diff to previous 1.28 (colored)
Mechanically replace all includes of buildlink3.mk of the following 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
Revision 1.28 / (download) - annotate - [select for diffs], Fri Mar 24 11:28:09 2006 UTC (17 years, 2 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base,
pkgsrc-2006Q3,
pkgsrc-2006Q2-base,
pkgsrc-2006Q2,
pkgsrc-2006Q1-base,
pkgsrc-2006Q1
Changes since 1.27: +1 -5
lines
Diff to previous 1.27 (colored)
Remove ONLY_FOR_PLATFORMS from the days of binary-only xforms.
Revision 1.27 / (download) - annotate - [select for diffs], Sat Mar 4 21:30:08 2006 UTC (17 years, 3 months ago) by jlam
Branch: MAIN
Changes since 1.26: +2 -2
lines
Diff to previous 1.26 (colored)
Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 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.
Revision 1.26 / (download) - annotate - [select for diffs], Sun Feb 5 23:10:04 2006 UTC (17 years, 3 months ago) by joerg
Branch: MAIN
Changes since 1.25: +2 -2
lines
Diff to previous 1.25 (colored)
Recursive revision bump / recommended bump for gettext ABI change.
Revision 1.25 / (download) - annotate - [select for diffs], Fri Jun 17 03:50:20 2005 UTC (17 years, 11 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base,
pkgsrc-2005Q4,
pkgsrc-2005Q3-base,
pkgsrc-2005Q3,
pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.24: +2 -1
lines
Diff to previous 1.24 (colored)
Create directories before installing files into them.
Revision 1.24 / (download) - annotate - [select for diffs], Mon Apr 11 21:46:31 2005 UTC (18 years, 1 month ago) by tv
Branch: MAIN
Changes since 1.23: +1 -2
lines
Diff to previous 1.23 (colored)
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
Revision 1.23 / (download) - annotate - [select for diffs], Thu Mar 24 21:12:56 2005 UTC (18 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.22: +1 -3
lines
Diff to previous 1.22 (colored)
Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to be useful.
Revision 1.22 / (download) - annotate - [select for diffs], Sun Oct 3 00:12:57 2004 UTC (18 years, 8 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1,
pkgsrc-2004Q4-base,
pkgsrc-2004Q4
Changes since 1.21: +2 -2
lines
Diff to previous 1.21 (colored)
Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 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.
Revision 1.21 / (download) - annotate - [select for diffs], Sat Apr 24 04:28:20 2004 UTC (19 years, 1 month ago) by snj
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base,
pkgsrc-2004Q3,
pkgsrc-2004Q2-base,
pkgsrc-2004Q2
Changes since 1.20: +5 -5
lines
Diff to previous 1.20 (colored)
Convert to buildlink3.
Revision 1.20 / (download) - annotate - [select for diffs], Tue Jan 20 12:20:05 2004 UTC (19 years, 4 months ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base,
pkgsrc-2004Q1
Changes since 1.19: +2 -2
lines
Diff to previous 1.19 (colored)
Move WRKSRC definition away from the first paragraph in a Makefile.
Revision 1.19 / (download) - annotate - [select for diffs], Sat Jan 3 18:49:46 2004 UTC (19 years, 5 months ago) by reed
Branch: MAIN
Changes since 1.18: +2 -2
lines
Diff to previous 1.18 (colored)
Bump package revisions for tiff update. Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
Revision 1.18 / (download) - annotate - [select for diffs], Thu Jul 17 21:48:19 2003 UTC (19 years, 10 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base,
pkgsrc-2003Q4
Changes since 1.17: +2 -2
lines
Diff to previous 1.17 (colored)
s/netbsd.org/NetBSD.org/
Revision 1.17 / (download) - annotate - [select for diffs], Wed Jun 11 20:50:57 2003 UTC (19 years, 11 months ago) by abs
Branch: MAIN
Changes since 1.16: +4 -3
lines
Diff to previous 1.16 (colored)
Update for the fact that 'arm' ports have been called NetBSD-*-arm for a while now and not NetBSD-*-arm32. Changes include one or more of: - Change MACHINE_ARCH == arm32 to also match arm - Where ONLY_FOR_PLATFORM includes NetBSD-*-arm32, add NetBSD-*-arm - Where BROKEN or worked around for arm gcc bugs, set USE_GCC3 The last may shake out a few more broken packages the next bulk build.
Revision 1.16 / (download) - annotate - [select for diffs], Mon Jun 2 01:18:20 2003 UTC (20 years ago) by jschauma
Branch: MAIN
Changes since 1.15: +2 -2
lines
Diff to previous 1.15 (colored)
Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages. Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
Revision 1.15 / (download) - annotate - [select for diffs], Sat Dec 28 21:24:22 2002 UTC (20 years, 5 months ago) by jschauma
Branch: MAIN
CVS Tags: netbsd-1-6-1-base,
netbsd-1-6-1
Changes since 1.14: +2 -2
lines
Diff to previous 1.14 (colored)
One more: Bump PKGREVISION on packages that depend on x11/xforms, since there has been a soname change. Pointed out by fredb.
Revision 1.14 / (download) - annotate - [select for diffs], Sat Sep 21 00:41:06 2002 UTC (20 years, 8 months ago) by jlam
Branch: MAIN
Changes since 1.13: +6 -5
lines
Diff to previous 1.13 (colored)
buildlink1 -> buildlink2
Revision 1.13 / (download) - annotate - [select for diffs], Wed Apr 17 04:45:15 2002 UTC (21 years, 1 month ago) by fredb
Branch: MAIN
CVS Tags: pkgviews-base,
pkgviews,
netbsd-1-6-RELEASE-base,
netbsd-1-6,
buildlink2-base,
buildlink2
Changes since 1.12: +5 -2
lines
Diff to previous 1.12 (colored)
Update dependency on xforms. We're mainly bumping the dependency 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.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Feb 25 04:18:01 2001 UTC (22 years, 3 months ago) by hubertf
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH003,
netbsd-1-5-PATCH001
Changes since 1.11: +2 -2
lines
Diff to previous 1.11 (colored)
Cleanup MKDIR usage => INSTALL_*_DIR XXX need to teach pkglint to be more picky about this
Revision 1.11 / (download) - annotate - [select for diffs], Sat Feb 17 18:22:47 2001 UTC (22 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.10: +2 -1
lines
Diff to previous 1.10 (colored)
Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.
Revision 1.10 / (download) - annotate - [select for diffs], Fri Jan 12 12:21:04 2001 UTC (22 years, 4 months ago) by dent
Branch: MAIN
Changes since 1.9: +3 -4
lines
Diff to previous 1.9 (colored)
Update HOMEPAGE and MASTER_SITES.
Revision 1.9 / (download) - annotate - [select for diffs], Thu Sep 28 20:34:04 2000 UTC (22 years, 8 months ago) by fredb
Branch: MAIN
CVS Tags: netbsd-1-5-RELEASE,
netbsd-1-4-PATCH003
Changes since 1.8: +2 -2
lines
Diff to previous 1.8 (colored)
Belatedly bump "nb" version for xforms, and likewise increment packages 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.
Revision 1.8 / (download) - annotate - [select for diffs], Sat May 13 23:41:55 2000 UTC (23 years ago) by dmcmahill
Branch: MAIN
Changes since 1.7: +2 -2
lines
Diff to previous 1.7 (colored)
[space]->[tab]
Revision 1.7 / (download) - annotate - [select for diffs], Sat May 13 23:40:38 2000 UTC (23 years ago) by dmcmahill
Branch: MAIN
Changes since 1.6: +3 -2
lines
Diff to previous 1.6 (colored)
add more arch's to the ONLY_FOR.. list since xforms runs on more than when the list was made.
Revision 1.6 / (download) - annotate - [select for diffs], Sun Jun 20 21:06:20 1999 UTC (23 years, 11 months ago) by tron
Branch: MAIN
CVS Tags: netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
comdex-fall-1999
Changes since 1.5: +2 -2
lines
Diff to previous 1.5 (colored)
Don't use "{}" or "[]" in "ONLY_FOR_PLATFORM" or "NOT_FOR_PLATFORM" because "bsd.pkg.mk" can't handle those patterns. Fixes PR pkg/7808 by Chris Demetriou.
Revision 1.5 / (download) - annotate - [select for diffs], Mon May 24 20:39:45 1999 UTC (24 years ago) by tv
Branch: MAIN
Changes since 1.4: +13 -13
lines
Diff to previous 1.4 (colored)
Change {ONLY,NOT}_FOR_{ARCH,OPSYS} format to {ONLY,NOT}_FOR_PLATFORM pattern match format. Minor pkglint along the way.
Revision 1.4 / (download) - annotate - [select for diffs], Thu Apr 15 20:39:44 1999 UTC (24 years, 1 month ago) by tron
Branch: MAIN
CVS Tags: netbsd-1-4-RELEASE
Changes since 1.3: +2 -3
lines
Diff to previous 1.3 (colored)
Completely replace "MASTER_SITE_SUBDIR" and "PATCH_SITE_SUBDIR" with variable substituition of "MASTER_SITES" and "PATCH_SITES".
Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 30 23:18:52 1999 UTC (24 years, 4 months ago) by agc
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
Replace all occurrences of USE_X11 with USE_X11BASE. This means "install this package into ${X11BASE}". Replace all occurrences of BUILD_USES_X11 with USE_X11. This means "use X11 headers and libraries to build this package".
Revision 1.2 / (download) - annotate - [select for diffs], Sat Jan 16 17:26:03 1999 UTC (24 years, 4 months ago) by frueauf
Branch: MAIN
Changes since 1.1: +3 -2
lines
Diff to previous 1.1 (colored)
Set ONLY_FOR_ARCHS so that it matches xforms.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Oct 3 20:37:01 1998 UTC (24 years, 8 months ago) by frueauf
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Initial addition of xldlas-0.85, an XForms-based statistics package. Closes pr 6236 by Rene Hexel.
Revision 1.1 / (download) - annotate - [select for diffs], Sat Oct 3 20:37:01 1998 UTC (24 years, 8 months ago) by frueauf
Branch: MAIN
Initial revision