diff options
author | minskim <minskim@pkgsrc.org> | 2004-04-11 23:04:50 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-04-11 23:04:50 +0000 |
commit | a75e443d46e417dc43882ef2511ea7ca72960bcc (patch) | |
tree | 2929dcbdfec795b25d071d37e894eaf09c5e8888 /archivers/afio/Makefile | |
parent | b3d1130cf95839ad708f50076fc45a108e3f33b5 (diff) | |
download | pkgsrc-a75e443d46e417dc43882ef2511ea7ca72960bcc.tar.gz |
- Update afio to 2.5.
- Use buildlink framework.
- NO_CONFIGURE=yes
- Enable pkgviews installation.
Changes in 2.5:
- In afio.h ulo and ull macros, added L and LL letters in constants.
- Documented `long long' issues in PORTING file. Removed ifdeffed
typedef ulonglong porting hacks from the afio.h file.
- Changed mknod() call to mkfifo() call when creating named pipe from
archive. Freebsd cannot make named pipes with mknod.
- Added some extra defines to suppress some warnings on sun platform.
Also added some stuff around awk invocations in makefile and regtest
to make things easier on sun -- the sun platform I tried it on had a
default awk that was too ancient to understand things like gsub.
- Added some discussion of sun and freebsd to PORTING file.
- Fix to regression test: no longer complains if two compared directory
inodes have a size difference. Bases on bug report by vasudeva.
- Changed sanity check on the stdin at the start of executing -o mode:
now the check only happens if stdin is a tty. This allows scripts to
make empty archives, and is needed for compatibility with tob. Based
on problem report by Dirk Eddelbuettel.
- Changed read() to readall() in outdata().
- Updated SCRIPTS file.
Diffstat (limited to 'archivers/afio/Makefile')
-rw-r--r-- | archivers/afio/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/archivers/afio/Makefile b/archivers/afio/Makefile index db7aec9d08d..82853e1764d 100644 --- a/archivers/afio/Makefile +++ b/archivers/afio/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2003/12/30 17:32:33 cjep Exp $ +# $NetBSD: Makefile,v 1.4 2004/04/11 23:04:50 minskim Exp $ -DISTNAME= afio-2.4.7 +DISTNAME= afio-2.5 CATEGORIES= archivers MASTER_SITES= http://www.ibiblio.org/pub/Linux/system/backup/ EXTRACT_SUFX= .tgz @@ -9,6 +9,12 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://freshmeat.net/projects/afio/ COMMENT= cpio-format archive creator with data corruption handling +PKG_INSTALLATION_TYPES= overwrite pkgviews + +USE_BUILDLINK3= yes +NO_CONFIGURE= yes ALL_TARGET= afio +INSTALLATION_DIRS= bin man/man1 + .include "../../mk/bsd.pkg.mk" |