diff options
author | cjep <cjep> | 2002-12-13 18:38:08 +0000 |
---|---|---|
committer | cjep <cjep> | 2002-12-13 18:38:08 +0000 |
commit | 675bb08eed8eff0dd7bfb10faaab352fbcc36733 (patch) | |
tree | 82cd6954134d2cfc85e8e445446c8a7576c65beb /archivers | |
parent | 1aef559d3e4d46b9fef573932405034249903375 (diff) | |
download | pkgsrc-675bb08eed8eff0dd7bfb10faaab352fbcc36733.tar.gz |
Initial import of nomarch 1.3 into the NetBSD packages collection
as archivers/nomarch.
nomarch is a free version of the arc archiver program. It is available
under the GNU GPL license.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/nomarch/DESCR | 2 | ||||
-rw-r--r-- | archivers/nomarch/Makefile | 15 | ||||
-rw-r--r-- | archivers/nomarch/PLIST | 3 | ||||
-rw-r--r-- | archivers/nomarch/distinfo | 5 | ||||
-rw-r--r-- | archivers/nomarch/patches/patch-aa | 25 |
5 files changed, 50 insertions, 0 deletions
diff --git a/archivers/nomarch/DESCR b/archivers/nomarch/DESCR new file mode 100644 index 00000000000..1b70e0b07e4 --- /dev/null +++ b/archivers/nomarch/DESCR @@ -0,0 +1,2 @@ +nomarch is a free version of the arc archiver program. It is available +under the GNU GPL license. diff --git a/archivers/nomarch/Makefile b/archivers/nomarch/Makefile new file mode 100644 index 00000000000..5e6e03b2612 --- /dev/null +++ b/archivers/nomarch/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/12/13 18:38:08 cjep Exp $ +# + +DISTNAME= nomarch-1.3 +CATEGORIES= archivers +MASTER_SITES= ${MASTER_SITE_SUNSITE:=utils/compress/} + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://rus.members.beeb.net/nomarch.html +COMMENT= Free replacement for the arc program + +USE_BUILDLINK2= YES +MAKE_FLAGS+= PREFIX=${PREFIX} + +.include "../../mk/bsd.pkg.mk" diff --git a/archivers/nomarch/PLIST b/archivers/nomarch/PLIST new file mode 100644 index 00000000000..e8f4c6697e2 --- /dev/null +++ b/archivers/nomarch/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/12/13 18:38:08 cjep Exp $ +bin/nomarch +man/man1/nomarch.1 diff --git a/archivers/nomarch/distinfo b/archivers/nomarch/distinfo new file mode 100644 index 00000000000..777de45defe --- /dev/null +++ b/archivers/nomarch/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/12/13 18:38:08 cjep Exp $ + +SHA1 (nomarch-1.3.tar.gz) = 5f17dc8b8cbd843fd75ddaeb3d975714b5235b58 +Size (nomarch-1.3.tar.gz) = 22491 bytes +SHA1 (patch-aa) = 3b8d2246089be7cec5d13cb4b61066c191b052b5 diff --git a/archivers/nomarch/patches/patch-aa b/archivers/nomarch/patches/patch-aa new file mode 100644 index 00000000000..a256cc7b91a --- /dev/null +++ b/archivers/nomarch/patches/patch-aa @@ -0,0 +1,25 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/12/13 18:38:08 cjep Exp $ + +--- Makefile.orig Thu Aug 8 13:24:33 2002 ++++ Makefile +@@ -1,7 +1,8 @@ + # Makefile - makefile for nomarch + + CC=gcc +-CFLAGS=-O2 -Wall ++#CFLAGS=-O2 -Wall ++CFLAGS+=-Wall + + # Set BINDIR to directory for binary, + # MANDIR to directory for man page. +@@ -25,8 +26,8 @@ installdirs: + /bin/sh ./mkinstalldirs $(BINDIR) $(MANDIR) + + install: nomarch installdirs +- install -m 755 nomarch $(BINDIR) +- install -m 644 nomarch.1 $(MANDIR) ++ install -c -m 755 nomarch $(BINDIR) ++ install -c -m 644 nomarch.1 $(MANDIR) + + uninstall: + $(RM) $(BINDIR)/nomarch $(MANDIR)/nomarch.1 |