87f03a9eb8
the first except this issue is triggered by prefixing the .. sequence with certain non-printable characters which are filtered out resulting in just the .. sequence.
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.31 2003/07/02 16:03:59 brad Exp $
|
|
|
|
COMMENT= "extract, list & test files in a ZIP archive"
|
|
|
|
VERSION= 5.50
|
|
DISTNAME= unzip${VERSION:S/.//}
|
|
PKGNAME= unzip-${VERSION}p1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= ftp://ftp.info-zip.org/pub/infozip/src/ \
|
|
ftp://ftp.uu.net/pub/archiving/zip/src/ \
|
|
ftp://ftp.icce.rug.nl/infozip/src/
|
|
|
|
HOMEPAGE= http://www.ctan.org/tex-archive/tools/zip/info-zip/UnZip.html
|
|
|
|
# Conditional
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MAKE_FLAGS= CC="${CC}" LD="${CC}" CF='-I. $$(LOC)' \
|
|
LOC="${CFLAGS} -DUSE_UNSHRINK"
|
|
FAKE_FLAGS= prefix="${WRKINST}${PREFIX}"
|
|
|
|
MAKE_FILE= unix/Makefile
|
|
|
|
ALL_TARGET= bsd
|
|
|
|
WRKDIST= ${WRKDIR}/unzip-${VERSION}
|
|
|
|
DOCS= COPYING.OLD LICENSE README WHERE
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/unzip
|
|
cd ${WRKSRC}; ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/unzip
|
|
|
|
do-regress:
|
|
cd ${WRKBUILD} && ./unzip -x -a -o testmake.zip
|
|
cmp -s ${WRKBUILD}/notes files/notes
|
|
|
|
.include <bsd.port.mk>
|