summaryrefslogtreecommitdiff
path: root/devel/libscsi
AgeCommit message (Collapse)AuthorFilesLines
2009-07-08user-destdir supportjoerg3-12/+11
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-05-20Drop -Werror, it doesn't appear to be warns safe:tnn1-1/+3
scsi.c:1047: warning: pointer type mismatch in conditional expression
2007-09-12Fixed gcc error message:rillig2-5/+14
scsi.c:1047: warning: dereferencing 'void *' pointer scsi.c:1047: error: void value not ignored as it ought to be The reason is that scsireq_t->data has now (NetBSD 4.99.30) the type void *, which seems to have been char * before.
2007-01-07Mechanically replaced man/* with ${PKGMANDIR}/* in the definition ofrillig1-2/+2
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.
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-18Added {BIN,MAN}{OWN,GRP} to MAKE_ENV to support unprivileged bulkrillig1-1/+4
builds. Bumped PKGREVISION. Since this package is a dependency of only two packages, this is just under the limit for pkgsrc freeze.
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-2/+2
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.
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-31NOT_FOR_PLATFORM Interix.tv1-1/+3
2005-10-23Sorted PLISTs.rillig1-9/+9
2005-02-23Add RMD160 digests.agc1-1/+2
2004-05-31Add buildlink3.mk, required by tosha.minskim1-0/+19
2004-05-31Enable pkgviews installation. Patches provided by Joachim Kuebart onminskim1-1/+5
tech-pkg@.
2004-05-30Install into PREFIX, not LOCALBASE. Required to enable pkgviewsminskim2-4/+4
installation. Pointed out by Joachim Kuebart on tech-pkg@.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2002-10-08Unused.wiz1-34/+0
2002-07-24Add buildlink.mk (pkg/17697 by Julio Merino)martti1-0/+34
2001-12-20Fix build problem under NetBSD-current.tron2-9/+7
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-9/+7
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
1999-12-01Add missing NetBSD RCS ID.fredb2-2/+4
1999-09-18Make manpages install always, to make PLIST correct, even if user setsfredb2-9/+9
MANINSTALL conditionally on !BSD_PKG_MK in /etc/mk.conf.
1999-07-09Add package patch-sum filesagc1-0/+6
1999-07-02Some packages use bsd-style .mk files when building, and so any manualagc1-6/+2
pages that are installed will be gzip-compressed, if MANZ is set, or not if MANZ is not set. If the package uses bsd-style .mk files, the variable MANCOMPRESSED_IF_MANZ should be set to a value of "yes" in the package Makefile. This replaces the previous method of specific inclusion of bsd.prefs.mk, followed by a check for MANZ and conditional assignment of MANCOMPRESSED. Add appropriate documentation, and change all necessary ocurrences in package Makefiles.
1999-01-24errno carnage.mycroft1-0/+13
1998-12-28Make consistent with other library pkgs: NOPIC=1 and NOPROFILE=1 (NOPIC=1tv2-5/+3
can be removed if a real shlib is later created of this pkg). Without these, the PLIST can be inconsistent with what is installed, since mk.conf can modify this behavior.
1998-08-07Add NetBSD RCS Ids.agc1-0/+2
1998-08-07Add NetBSD RCS Ids.agc3-0/+6
1998-06-27Fix broken "va_lists" calls to get this work on alpha. Patches suppliedtron1-0/+73
by Tim Rightnour in PR pkg/5618.
1998-06-20Make packages which use NetBSD's bsd.man.mk work with automatic manualagc1-3/+6
page handling.
1998-05-03Initial import of libscsi 1.6 based on pr 5393.frueauf7-0/+93