summaryrefslogtreecommitdiff
path: root/x11/xview-lib
AgeCommit message (Collapse)AuthorFilesLines
2013-05-20Avoid conflicts with SunOS regexp.h.jperkin2-3/+12
2013-03-25Make xview-lib as not available for linuxsbd1-1/+2
2012-12-16Revert this patch; it is uncompilable. Hi joerg.dholland2-14/+1
2012-11-16Fix return with/without value errors.joerg41-49/+990
2012-10-29Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-06-15Whitespace. (as whined about by pkglint)dholland1-2/+2
2012-05-07Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)dholland1-2/+2
It turns out there were a lot of these.
2011-09-29Since rmind cleaned up sys/fd_set.h last winter, sys/types.h no longerdholland4-8/+38
exposes howmany(). This is generally a good thing, but as a result libxview fails to find it, so it turns up as a missing external function instead. Due to the wonders of ELF libs, combined with help from imake, this results in a broken libxview that nothing else can successfully link with. So, patch it up. PKGREVISION -> 9.
2011-09-19fix a clang build failuredholland2-1/+17
2010-04-24The time_t changes made the gum holding the logic together fall off.dholland2-4/+20
Scrape it up and stick it back on again. Fixes build on -current.
2009-12-10- Add PKG_DESTDIR_SUPPORTabs133-629/+709
- Depend on the latest version of xview-config - Mark as LICENSE sun-openlook-license - Bump pkgrevision
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-9/+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-08-30Make this crap build again. Don't use sigvec(); it's no longer supporteddholland9-37/+334
on NetBSD and probably elsewhere. Because the build wasn't stopping on error, prior builds of this package "succeeded" and generated a shared library missing some code. For this reason, bump both PKGREVISION and BUILDLINK_ABI_DEPENDS.
2007-06-12Fix a problem with patch-fe: Only use va_copy() for the va_list, nottnn2-9/+7
for the av_list which is a type internal to xview.
2007-05-12Patch a bunch of gcc4 breakages, mostly static prototype mismatches.tnn17-35/+284
2007-02-22Whitespace cleanup, courtesy of pkglint.wiz1-2/+2
Patch provided by Sergey Svishchev in private mail.
2006-12-27- fine grained X11 dependencies for packages which have either USE_IMAKEjoerg2-2/+5
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or via buildlink3.mks - introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm in the !modular case - fix some cases where the check for libX11 couldn't work at all by using C++ for compilation without including the proper headers Verified using a full X11_TYPE=xorg bulk build without additional breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.
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-04-22Fix typo or mispelling.reed1-1/+1
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
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-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-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-3/+4
2006-01-05First try on fixing xview. Fix errno. Add DragonFly support.joerg35-119/+952
Use NAME_MAX when available. Don't try to fake a FILE on DragonFly. The implementation of textsw_scanf can be improved, it is very defensively and slow ATM, the snprintf usage should be portable. Fix a number of prototype mismatches, e.g. variable argument functions can conflict with K&R prototypes. Bump revision since the package "compiled" before, e.g. build errors where ignored.
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-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig1-2/+2
NO_BUILD, USE_LIBTOOL.
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 checksums to the SHA1 ones.wiz1-1/+2
2005-02-10the daily security patch:drochner3-3/+35
sprintf->snprintf to fix security problem (CAN-2005-0076) (patch from Debian) bump PKGREVISION
2004-09-30Make this compile on NetBSD 2.0 too.kristerw3-14/+16
Thanks to Douglas Wade Needham for providing patches (on pkgsrc-bulk@).
2004-05-01No longer used.snj1-28/+0
2004-04-22Change MAINTAINER to tech-pkg@. Requested by jlam@.snj1-2/+2
These packages are going to be removed soon. If you care about them (and are interested in fixing them), please speak up.
2004-04-13Convert to buildlink3.snj2-2/+20
2004-03-29Add a BUILDLINK_PKGBASE.<pkg> definition where it's not equal to <pkg>,jlam1-1/+2
e.g. "BUILDLINK_PKGBASE.gtk?= gtk+". This is mandated by the example buildlink[23].mk files in bsd.buildlink[23].mk.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-03-03Use new IMAKE_MAN_DIR variables in PLISTs to make these packages morejschauma2-4/+4
portable. Bump PKGREVISION accordingly.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam2-1/+29
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-04-10This package's lib/help/*.info are not Info files: remove theseb2-13/+2
texinfo/install-info/... support bits.
2002-02-18Introduce new framework for handling info files generation and installation.seb2-12/+13
Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information.
2001-12-20Fix build problem under NetBSD-current.tron2-7/+6
2001-12-20Cleanup patch files:tron107-3246/+2755
- unified format - only one patch per file - no files gets patched twice
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf1-2/+3
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-05-11don't return the address of a local variable.dmcmahill4-3/+79
2001-05-02Fix on powerpc. Patches provided by Andrew Cagney <cagney@tpgi.com.au>dmcmahill9-42/+470
in PR pkg/12803 and integrated by me. It also now compiles on alpha but segfaults there so change the broken message accordingly.
2001-04-19Move to sha1 digests, and add distfile sizes.skrll1-2/+3