pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/arcanist



Module Name:    pkgsrc
Committed By:   rillig
Date:           Sun Feb  9 21:10:32 UTC 2020

Modified Files:
        pkgsrc/devel/arcanist: Makefile

Log Message:
devel/arcanist: fix pax command line used during do-install

Fixes PR pkg/54891.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/arcanist/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/arcanist/Makefile
diff -u pkgsrc/devel/arcanist/Makefile:1.12 pkgsrc/devel/arcanist/Makefile:1.13
--- pkgsrc/devel/arcanist/Makefile:1.12 Mon Dec  9 14:20:55 2019
+++ pkgsrc/devel/arcanist/Makefile      Sun Feb  9 21:10:32 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2019/12/09 14:20:55 taca Exp $
+# $NetBSD: Makefile,v 1.13 2020/02/09 21:10:32 rillig Exp $
 
 DISTNAME=              arcanist-20170609
 PKGREVISION=           2
@@ -22,7 +22,7 @@ DEPENDS+=             ${PHP_PKG_PREFIX}-curl-[0-9]*
 DEPENDS+=              ${PHP_PKG_PREFIX}-json-[0-9]*:../../textproc/php-json
 DEPENDS+=              libphutil-[0-9]*:../../devel/libphutil
 
-CONFLICTS+=            arc-[0-9]*:../../archivers/arc
+CONFLICTS+=            arc-[0-9]*
 
 SUBST_CLASSES+=                php
 SUBST_MESSAGE.php=     Fixing PHP path
@@ -42,9 +42,8 @@ ARCANISTDIR=          share/arcanist
 INSTALLATION_DIRS+=    ${ARCANISTDIR} bin
 
 do-install:
-       cd ${WRKSRC} && \
-               ${PAX} -rw * -s',.*\.orig$$,,' \
-               ${DESTDIR}${PREFIX}/${ARCANISTDIR}
+       cd ${WRKSRC} \
+       && ${PAX} -rw -s',.*\.orig$$,,' * ${DESTDIR}${PREFIX}/${ARCANISTDIR}
        ln -s ${PREFIX}/${ARCANISTDIR}/scripts/arcanist.php \
                ${DESTDIR}${PREFIX}/bin/arc
 



Home | Main Index | Thread Index | Old Index