upgrade to gmake 3.79.1
This commit is contained in:
parent
03a8e05ef7
commit
440809dfc9
@ -1,12 +1,16 @@
|
||||
# $OpenBSD: Makefile,v 1.17 2000/06/30 02:10:09 fgsch Exp $
|
||||
# $OpenBSD: Makefile,v 1.18 2000/07/04 01:55:23 brad Exp $
|
||||
|
||||
DISTNAME= make-3.78.1
|
||||
PKGNAME= gmake-3.78.1
|
||||
DISTNAME= make-3.79.1
|
||||
PKGNAME= gmake-3.79.1
|
||||
CATEGORIES= devel
|
||||
NEED_VERSION= 1.309
|
||||
NEED_VERSION= 1.310
|
||||
MASTER_SITES= ${MASTER_SITE_GNU}
|
||||
MASTER_SITE_SUBDIR= make
|
||||
|
||||
HOMEPAGE= http://www.gnu.org/software/make/
|
||||
|
||||
LIB_DEPENDS= intl::devel/gettext
|
||||
|
||||
MAINTAINER= todd@openbsd.org
|
||||
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
@ -16,7 +20,9 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
SEPARATE_BUILD= simple
|
||||
CONFIGURE_STYLE= gnu
|
||||
CONFIGURE_ARGS= --program-transform-name='s/^/g/'
|
||||
CONFIGURE_ARGS= --program-prefix="g"
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
post-extract:
|
||||
@rm -f ${WRKSRC}/make.info*
|
||||
@ -24,6 +30,5 @@ post-extract:
|
||||
post-install:
|
||||
@chmod g-s ${PREFIX}/bin/gmake
|
||||
@chown ${BINOWN}:${BINGRP} ${PREFIX}/bin/gmake
|
||||
@install-info ${PREFIX}/info/make.info ${PREFIX}/info/dir
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (make-3.78.1.tar.gz) = afd70cd88dbaf692ba92aadf641551bb
|
||||
RMD160 (make-3.78.1.tar.gz) = 6d7e539802d37fe38318cfba822cf9b6ba8691d5
|
||||
SHA1 (make-3.78.1.tar.gz) = 29adeb2ea92cfab7104c27adfcaff488634f0442
|
||||
MD5 (make-3.79.1.tar.gz) = 22ea95c125c7b80e04354d4ee4ae960d
|
||||
RMD160 (make-3.79.1.tar.gz) = 7e4ce54ca5152c466dbe81beeac45e83fa609c79
|
||||
SHA1 (make-3.79.1.tar.gz) = d3cdff9f91a9cda71af8b2df2a94f9b844fa9704
|
||||
|
@ -1,15 +1,15 @@
|
||||
--- Makefile.in.orig Thu Sep 23 13:46:00 1999
|
||||
+++ Makefile.in Tue Oct 26 16:12:29 1999
|
||||
@@ -67,7 +67,7 @@
|
||||
GETCONF = @GETCONF@
|
||||
--- Makefile.in.orig Fri Jun 23 12:35:23 2000
|
||||
+++ Makefile.in Sat Jul 1 19:06:31 2000
|
||||
@@ -72,7 +72,7 @@
|
||||
GLOBINC = @GLOBINC@
|
||||
GLOBLIB = @GLOBLIB@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
-MAKEINFO = @MAKEINFO@
|
||||
+MAKEINFO = @MAKEINFO@ --no-split
|
||||
MOFILES = @MOFILES@
|
||||
PACKAGE = @PACKAGE@
|
||||
PERL = @PERL@
|
||||
RANLIB = @RANLIB@
|
||||
@@ -322,13 +322,6 @@
|
||||
@@ -346,13 +346,6 @@
|
||||
done; \
|
||||
done
|
||||
@$(POST_INSTALL)
|
@ -1,30 +0,0 @@
|
||||
--- main.c.orig Tue Oct 26 09:32:12 1999
|
||||
+++ main.c Tue Oct 26 09:34:46 1999
|
||||
@@ -1144,8 +1144,15 @@
|
||||
#else
|
||||
static char name[] = "/tmp/GmXXXXXX";
|
||||
#endif
|
||||
+#ifndef __OpenBSD__
|
||||
(void) mktemp (name);
|
||||
#else
|
||||
+ int ftmp;
|
||||
+
|
||||
+ if ((ftmp = mkstemp (name)) < 0)
|
||||
+ pfatal_with_name ("mkstemp (temporary file)");
|
||||
+#endif
|
||||
+#else
|
||||
static char name[L_tmpnam];
|
||||
(void) tmpnam (name);
|
||||
#endif
|
||||
@@ -1153,7 +1160,11 @@
|
||||
if (stdin_nm)
|
||||
fatal (NILF, _("Makefile from standard input specified twice."));
|
||||
|
||||
+#ifndef __OpenBSD__
|
||||
outfile = fopen (name, "w");
|
||||
+#else
|
||||
+ outfile = fdopen (ftmp, "w");
|
||||
+#endif
|
||||
if (outfile == 0)
|
||||
pfatal_with_name (_("fopen (temporary file)"));
|
||||
while (!feof (stdin))
|
@ -1,3 +1,3 @@
|
||||
This directory contains the release of GNU Make.
|
||||
All bugs reported for previous test releases have been fixed.
|
||||
Some bugs surely remain.
|
||||
|
||||
WWW: ${HOMEPAGE}
|
||||
|
@ -1,6 +1,15 @@
|
||||
@comment $OpenBSD: PLIST,v 1.5 2000/06/30 02:10:10 fgsch Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.6 2000/07/04 01:55:24 brad Exp $
|
||||
bin/gmake
|
||||
@unexec install-info --delete --info-dir=%D/info %D/info/make.info
|
||||
info/make.info
|
||||
@exec install-info --info-dir=%D/info %D/info/make.info
|
||||
man/man1/gmake.1
|
||||
share/locale/de/LC_MESSAGES/make.mo
|
||||
share/locale/es/LC_MESSAGES/make.mo
|
||||
share/locale/fr/LC_MESSAGES/make.mo
|
||||
share/locale/ja/LC_MESSAGES/make.mo
|
||||
share/locale/ko/LC_MESSAGES/make.mo
|
||||
share/locale/nl/LC_MESSAGES/make.mo
|
||||
share/locale/pl/LC_MESSAGES/make.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/make.mo
|
||||
share/locale/ru/LC_MESSAGES/make.mo
|
||||
|
Loading…
Reference in New Issue
Block a user