6982b5a295
* Option --owner can be used in copy-out mode, allowing to uniformly override ownership of the files being added to the archive. * Symlinks were handled incorrectly in copy-out mode. * Fix handling of large files. * Fix setting the file permissions in copy-out mode. * Honor umask when creating intermediate directories, not specified in the archive.
26 lines
493 B
Makefile
26 lines
493 B
Makefile
# $OpenBSD: Makefile,v 1.12 2007/07/09 17:38:42 naddy Exp $
|
|
|
|
COMMENT= "GNU copy-in/out (cpio)"
|
|
|
|
DISTNAME= cpio-2.9
|
|
PKGNAME= g${DISTNAME}
|
|
CATEGORIES= archivers
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=cpio/}
|
|
|
|
MODULES= gettext
|
|
WANTLIB= c
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --program-prefix="g" \
|
|
--with-rmt=/etc/rmt
|
|
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/build-aux
|
|
|
|
.include <bsd.port.mk>
|