diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 02:13:14 +0000 |
commit | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (patch) | |
tree | b711f279533efa082bd9211a7161438542a8810d /sysutils/storage-manager | |
parent | 7f7f5ce9170554e6c0c04606c5c2c0548ffab031 (diff) | |
download | pkgsrc-3d8ef5a52d6570c7a88c64337bb6c476b78c810c.tar.gz |
Second round of explicit pax dependencies. As reminded by tnn@,
many packages used to use ${PAX}. Use the common way of directly calling
pax, it is created as tool after all.
Diffstat (limited to 'sysutils/storage-manager')
-rw-r--r-- | sysutils/storage-manager/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysutils/storage-manager/Makefile b/sysutils/storage-manager/Makefile index 46f07dbebeb..72e382054b3 100644 --- a/sysutils/storage-manager/Makefile +++ b/sysutils/storage-manager/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2007/10/31 21:45:33 gdt Exp $ +# $NetBSD: Makefile,v 1.25 2008/05/26 02:13:24 joerg Exp $ DISTNAME= sm_linux_v314_install PKGNAME= storage-manager-3.14 @@ -11,6 +11,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://opensource.adaptec.com/ COMMENT= Adaptec Storage Management software +USE_TOOLS+= pax + LICENSE= generic-nonlicense RESTRICTED= Redistribution not permitted NO_SRC_ON_FTP= ${RESTRICTED} @@ -42,7 +44,7 @@ INSTALLATION_DIRS= etc/rc.d sbin do-extract: ${MKDIR} ${WRKSRC} cd ${WRKSRC} && rpm2cpio ${DISTDIR}/${DISTNAME}.rpm > ${DISTNAME}.cpio - cd ${WRKSRC} && ${PAX} -O -d -rf ${DISTNAME}.cpio + cd ${WRKSRC} && pax -O -d -rf ${DISTNAME}.cpio do-patch: ${SED} -e "s,@PREFIX@,${PREFIX},g" \ |