1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

HA archiver

This commit is contained in:
Andrey A. Chernov 1995-01-24 16:43:33 +00:00
parent e1f99584be
commit c209ef1e9b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=818
3 changed files with 40 additions and 0 deletions

20
archivers/ha/Makefile Normal file
View File

@ -0,0 +1,20 @@
# New ports collection makefile for: ha
# Version required: 0999
# Date created: 24 Jan 1995
# Whom: ache
#
# $Id: Makefile,v 1.1.1.1 1994/12/28 15:19:16 ache Exp $
#
DISTNAME= ha0999
EXTRACT_SUFX= .tgz
MASTER_SITES= ftp://ftp.kiae.su/unix/arcers/
NO_WRKSUBDIR= YES
MAKEFILE= makefile.nix
MAKE_FLAGS= CC=cc -f
ALL_TARGET= ha
USE_GMAKE= YES
install:
cd ${WRKSRC}; ${INSTALL} ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ha ${PREFIX}/bin
.include <bsd.port.mk>

1
archivers/ha/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (ha0999.tgz) = 77f3266a451712bec55d60df67f61486

View File

@ -0,0 +1,19 @@
*** nix/machine.c.bak Thu Jan 12 09:53:00 1995
--- nix/machine.c Tue Jan 24 19:38:07 1995
***************
*** 417,423 ****
if (plainname!=NULL) free(plainname),plainname=NULL;
if ((plainname=malloc(strlen(mdfullpath)+1))==NULL)
error(1,ERR_MEM,"md_stripname()");
! for (i=strlen(mdfullpath)-1;i>0;i--) {
if (mdfullpath[i]=='/') {
i++;
break;
--- 417,423 ----
if (plainname!=NULL) free(plainname),plainname=NULL;
if ((plainname=malloc(strlen(mdfullpath)+1))==NULL)
error(1,ERR_MEM,"md_stripname()");
! for (i=strlen(mdfullpath)-1;i>=0;i--) {
if (mdfullpath[i]=='/') {
i++;
break;