A BSD-licensed replacement of the ar utility.

Written by:	Kai Wang <kaiw@FreeBSD.org>
Sponsored by:	Google Summer of Code 2007
This commit is contained in:
Gabor Kovesdan 2008-01-18 23:11:34 +00:00
parent 2e6399a8bd
commit b3fe4f8a74
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=205811
4 changed files with 39 additions and 0 deletions

View File

@ -9,6 +9,7 @@
SUBDIR += arc
SUBDIR += arj
SUBDIR += bicom
SUBDIR += bsdar
SUBDIR += bzip
SUBDIR += bzip2
SUBDIR += cabextract

33
archivers/bsdar/Makefile Normal file
View File

@ -0,0 +1,33 @@
# New ports collection makefile for: bsdar
# Date created: 18 Jan 2008
# Whom: Gabor Kovesdan <gabor@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= ar
PORTVERSION= 20080112
CATEGORIES= archivers
MASTER_SITES= http://web.student.chalmers.se/~kaiw/patch/
PKGNAMEPREFIX= bsd-
EXTRACT_SUFX= .tgz
MAINTAINER= gabor@FreeBSD.org
COMMENT= BSD-licensed replacement of the ar utility
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_FILES= bin/ar bin/ranlib
MAN1= ar.1 ranlib.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 700055
IGNORE= does not compile
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ar ${PREFIX}/bin/ar
${LN} -s ${PREFIX}/bin/ar ${PREFIX}/bin/ranlib
${INSTALL_DATA} ${WRKSRC}/ar.1 ${MAN1PREFIX}/man/man1/ar.1
${INSTALL_DATA} ${WRKSRC}/ar.1 ${MAN1PREFIX}/man/man1/ranlib.1
.include <bsd.port.post.mk>

3
archivers/bsdar/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (ar-20080112.tgz) = 5ac74dbbaa8058d097800549a3a75049
SHA256 (ar-20080112.tgz) = 950917d9595626c4dbef8ee86d520187d21bd542f065e45a4f50aeca413f24c0
SIZE (ar-20080112.tgz) = 54013

View File

@ -0,0 +1,2 @@
A BSD-licensed replacement of the ar utility written by Kai Wang in the
Summer of Code program in 2007.