9c8b5ede43
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.
31 lines
1 KiB
Makefile
31 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2006/03/04 21:30:40 jlam Exp $
|
|
|
|
DISTNAME= raidmgt-3.31
|
|
PKGNAME= dptutil-3.31
|
|
PKGREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.interlude.eu.org/~ad/raidmgt/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://opensource.adaptec.com/
|
|
COMMENT= DPT/Adaptec Storage Management software (dptutil)
|
|
|
|
# Should work for 32-bit PowerPC and SPARC, but untested. 64-bit platforms
|
|
# may have problems.
|
|
ONLY_FOR_PLATFORM= NetBSD-*-i386
|
|
|
|
INSTALLATION_DIRS= bni
|
|
|
|
post-patch:
|
|
${SED} -e "s,@SBINDIR@,${PREFIX}/sbin,g" \
|
|
${WRKSRC}/dpteng/makefile > ${WRKSRC}/dpteng/makefile.tmp
|
|
${MV} ${WRKSRC}/dpteng/makefile.tmp ${WRKSRC}/dpteng/makefile
|
|
${SED} -e "s,@SBINDIR@,${PREFIX}/sbin,g" \
|
|
${WRKSRC}/dptutil/makefile > ${WRKSRC}/dptutil/makefile.tmp
|
|
${MV} ${WRKSRC}/dptutil/makefile.tmp ${WRKSRC}/dptutil/makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dpteng/dpteng ${PREFIX}/sbin/dpteng
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dptutil/raidutil ${PREFIX}/sbin/dptutil
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|