New Ports / archivers/untar
PR: Report ports/41084 Submitted by: KIMURA Shigekazu <zau50357@lion.zero.ad.jp>
This commit is contained in:
parent
cb98152597
commit
3f88e62a9d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73609
7 changed files with 47 additions and 0 deletions
|
@ -59,6 +59,7 @@
|
|||
SUBDIR += undms
|
||||
SUBDIR += unlzx
|
||||
SUBDIR += unrar
|
||||
SUBDIR += untar
|
||||
SUBDIR += unzip
|
||||
SUBDIR += xdms
|
||||
SUBDIR += xpk
|
||||
|
|
31
archivers/untar/Makefile
Normal file
31
archivers/untar/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
# New ports collection makefile for: untar
|
||||
# Date created: 14 Jul 2002
|
||||
# Whom: KIMURA Shigekazu <zau50357@lion.zero.ad.jp>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= untar
|
||||
PORTVERSION= 1.4
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= archivers
|
||||
MASTER_SITES= ftp://ftp.cs.pdx.edu/pub/elvis/
|
||||
DISTNAME= ${PORTNAME}
|
||||
EXTRACT_SUFX= .c
|
||||
EXTRACT_ONLY=
|
||||
|
||||
MAINTAINER= zau50357@lion.zero.ad.jp
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
NO_INSTALL_MANPAGES= yes
|
||||
|
||||
PROG= untar
|
||||
|
||||
pre-patch:
|
||||
@${CP} ${DISTDIR}/untar.c ${WRKSRC}
|
||||
@${CP} ${FILESDIR}/Makefile.untar ${WRKSRC}/Makefile
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${PROG} ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
1
archivers/untar/distinfo
Normal file
1
archivers/untar/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (untar.c) = 2ff9fde53ff509b54412f57b2821f882
|
11
archivers/untar/files/Makefile.untar
Normal file
11
archivers/untar/files/Makefile.untar
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Makefile for untar-1.4
|
||||
# For FreeBSD-[43].X
|
||||
|
||||
PROG= untar
|
||||
SRCS= untar.c
|
||||
NOMAN= yes
|
||||
|
||||
CFLAGS+= -D_POSIX_SOURCE
|
||||
LDFLAGS+= -static
|
||||
|
||||
.include <bsd.prog.mk>
|
1
archivers/untar/pkg-comment
Normal file
1
archivers/untar/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Lists/Extracts files from a "*.tgz" or "*.gz" archive
|
1
archivers/untar/pkg-descr
Normal file
1
archivers/untar/pkg-descr
Normal file
|
@ -0,0 +1 @@
|
|||
untar
|
1
archivers/untar/pkg-plist
Normal file
1
archivers/untar/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
bin/untar
|
Loading…
Reference in a new issue