- update to 1.13.23; input from todd@

- fix install of info docs
This commit is contained in:
naddy 2001-09-19 17:30:44 +00:00
parent c73c57b940
commit 881b3007a0
4 changed files with 26 additions and 12 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.22 2001/09/15 14:50:08 naddy Exp $
# $OpenBSD: Makefile,v 1.23 2001/09/19 17:30:44 naddy Exp $
COMMENT= "GNU version of the traditional tar archiver"
DISTNAME= tar-1.13.22
DISTNAME= tar-1.13.23
PKGNAME= g${DISTNAME}
CATEGORIES= archivers
NEED_VERSION= 1.384
@ -25,15 +25,17 @@ SEPARATE_BUILD= flavored
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --program-prefix=g
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
DEFAULT_ARCHIVE="/dev/rst0"
LDFLAGS="-L${LOCALBASE}/lib ${LDSTATIC}" \
DEFAULT_ARCHIVE="/dev/rst0" \
MAKEINFO="makeinfo --no-split"
FLAVORS= static
FLAVOR?=
.if ${FLAVOR:L:Mstatic}
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib -static"
LDSTATIC= -static
.else
CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib"
LDSTATIC=
.endif
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (tar-1.13.22.tar.gz) = 6336bb0531efec441617a2fc5211b396
RMD160 (tar-1.13.22.tar.gz) = 2ca5e17ff7bbd591270b9fb11d753af87d1cf9cd
SHA1 (tar-1.13.22.tar.gz) = a5b853cfa95869ad6fe511851473cb0c0b780513
MD5 (tar-1.13.23.tar.gz) = 32a5e0c4ff014b050db77b2c7009d124
RMD160 (tar-1.13.23.tar.gz) = 07bd9307979f60d12ca60bb7a35e8d7df505412a
SHA1 (tar-1.13.23.tar.gz) = 3c515833d8b2af681a378624e1d2fd95b165327b

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-lib_Makefile_in,v 1.1 2001/09/15 14:50:08 naddy Exp $
--- lib/Makefile.in.orig Fri Sep 7 02:13:04 2001
+++ lib/Makefile.in Fri Sep 7 02:13:19 2001
@@ -444,6 +444,7 @@ $(srcdir)/getdate.c: getdate.y
$OpenBSD: patch-lib_Makefile_in,v 1.2 2001/09/19 17:30:44 naddy Exp $
--- lib/Makefile.in.orig Sat Sep 15 07:59:41 2001
+++ lib/Makefile.in Wed Sep 19 18:35:06 2001
@@ -450,6 +450,7 @@ $(srcdir)/getdate.c: getdate.y
cd $(srcdir) && \
$(YACC) $(YFLAGS) getdate.y && \
mv -f y.tab.c getdate.c

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-lib_copysym_c,v 1.1 2001/09/19 17:30:44 naddy Exp $
--- lib/copysym.c.orig Wed Sep 19 18:38:31 2001
+++ lib/copysym.c Wed Sep 19 18:39:22 2001
@@ -60,7 +60,7 @@ copyright_symbol (char *buf, size_t bufs
#endif
}
- if (*outcharset)
+ if (outcharset && *outcharset)
{
iconv_t conv = iconv_open (outcharset, "UTF-8");