diff options
author | taca <taca@pkgsrc.org> | 2022-10-30 10:50:01 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2022-10-30 10:50:01 +0000 |
commit | a488d221fed8586c9fca847aeabd0b934a7d02d6 (patch) | |
tree | be0e32a966bf1f6157be041a6cdeadccd7d3bd40 | |
parent | d6d217683fd1922d14488295d6c1d2087ed9be96 (diff) | |
download | pkgsrc-a488d221fed8586c9fca847aeabd0b934a7d02d6.tar.gz |
lang/php: post-install clean up
Do not manually install executable files and manual.
These are already done by php's Makefile from some time ago.
-rw-r--r-- | lang/php56/Makefile | 10 | ||||
-rw-r--r-- | lang/php74/Makefile | 6 | ||||
-rw-r--r-- | lang/php80/Makefile | 6 | ||||
-rw-r--r-- | lang/php81/Makefile | 6 |
4 files changed, 8 insertions, 20 deletions
diff --git a/lang/php56/Makefile b/lang/php56/Makefile index f9fcb32bcee..264f8b6ba99 100644 --- a/lang/php56/Makefile +++ b/lang/php56/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2022/04/18 19:09:56 adam Exp $ +# $NetBSD: Makefile,v 1.30 2022/10/30 10:50:01 taca Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. @@ -49,10 +49,10 @@ CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WITHOUT_ZONEMALLOC .endif post-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cli/php ${DESTDIR}${PREFIX}/bin/php - ${INSTALL_DATA} ${WRKSRC}/sapi/cli/php.1 \ - ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/php.1 - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cgi/php-cgi ${DESTDIR}${CGIDIR}/php +# ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cli/php ${DESTDIR}${PREFIX}/bin/php +# ${INSTALL_DATA} ${WRKSRC}/sapi/cli/php.1 \ +# ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/php.1 +# ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cgi/php-cgi ${DESTDIR}${CGIDIR}/php cd ${WRKSRC}; ${INSTALL_DATA} php.ini-development php.ini-production \ ${DESTDIR}${EGDIR} ${INSTALL_DATA} ${WRKSRC}/php.gif ${DESTDIR}${PREFIX}/share/php diff --git a/lang/php74/Makefile b/lang/php74/Makefile index 4f9aab00aa2..7b67a6f89ba 100644 --- a/lang/php74/Makefile +++ b/lang/php74/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2022/06/09 15:00:38 taca Exp $ +# $NetBSD: Makefile,v 1.17 2022/10/30 10:50:01 taca Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. @@ -66,10 +66,6 @@ CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WITHOUT_ZONEMALLOC .endif post-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cli/php ${DESTDIR}${PREFIX}/bin/php - ${INSTALL_DATA} ${WRKSRC}/sapi/cli/php.1 \ - ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/php.1 - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cgi/php-cgi ${DESTDIR}${CGIDIR}/php cd ${WRKSRC}; ${INSTALL_DATA} php.ini-development php.ini-production \ ${DESTDIR}${EGDIR} diff --git a/lang/php80/Makefile b/lang/php80/Makefile index 8ab2bd21ced..112746b6e71 100644 --- a/lang/php80/Makefile +++ b/lang/php80/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2022/06/10 00:00:07 taca Exp $ +# $NetBSD: Makefile,v 1.10 2022/10/30 10:50:01 taca Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. @@ -66,10 +66,6 @@ CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WITHOUT_ZONEMALLOC .endif post-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cli/php ${DESTDIR}${PREFIX}/bin/php - ${INSTALL_DATA} ${WRKSRC}/sapi/cli/php.1 \ - ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/php.1 - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cgi/php-cgi ${DESTDIR}${CGIDIR}/php cd ${WRKSRC}; ${INSTALL_DATA} php.ini-development php.ini-production \ ${DESTDIR}${EGDIR} diff --git a/lang/php81/Makefile b/lang/php81/Makefile index 3b24e5251df..cdbd3d7ed9a 100644 --- a/lang/php81/Makefile +++ b/lang/php81/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2022/06/09 15:10:50 taca Exp $ +# $NetBSD: Makefile,v 1.8 2022/10/30 10:50:01 taca Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. @@ -66,10 +66,6 @@ CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_WITHOUT_ZONEMALLOC .endif post-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cli/php ${DESTDIR}${PREFIX}/bin/php - ${INSTALL_DATA} ${WRKSRC}/sapi/cli/php.1 \ - ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/php.1 - ${INSTALL_PROGRAM} ${WRKSRC}/sapi/cgi/php-cgi ${DESTDIR}${CGIDIR}/php cd ${WRKSRC}; ${INSTALL_DATA} php.ini-development php.ini-production \ ${DESTDIR}${EGDIR} |