mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
78 lines
2.7 KiB
Makefile
78 lines
2.7 KiB
Makefile
# Created by: George Reid <greid@ukug.uk.freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zziplib
|
|
PORTVERSION= 0.13.62
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}13/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A library to provide transparent read access to zipped files
|
|
|
|
LICENSE= LGPL21 MPL
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip
|
|
|
|
OPTIONS_DEFINE= SDL
|
|
|
|
USE_BZIP2= yes
|
|
USES= pathfix pkgconfig
|
|
USE_PYTHON_BUILD= yes
|
|
USE_AUTOTOOLS= libtool
|
|
CONFIGURE_ENV= ac_cv_path_XMLTO=":"
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
MAN3= __zzip_fetch_disk_trailer.3 __zzip_parse_root_directory.3 __zzip_try_open.3 \
|
|
zzip_close.3 zzip_closedir.3 zzip_compr_str.3 zzip_dir_alloc.3 \
|
|
zzip_dir_alloc_ext_io.3 zzip_dir_close.3 zzip_dir_fdopen.3 \
|
|
zzip_dir_fdopen_ext_io.3 zzip_dir_free.3 zzip_dir_open.3 \
|
|
zzip_dir_open_ext_io.3 zzip_dir_read.3 zzip_dir_real.3 zzip_dir_stat.3 \
|
|
zzip_dirfd.3 zzip_dirhandle.3 zzip_disk_buffer.3 zzip_disk_close.3 zzip_disk_entry_fopen.3 \
|
|
zzip_disk_entry_strdup_comment.3 zzip_disk_entry_strdup_name.3 \
|
|
zzip_disk_entry_to_data.3 zzip_disk_entry_to_file_header.3 \
|
|
zzip_disk_fclose.3 zzip_disk_feof.3 zzip_disk_findfile.3 \
|
|
zzip_disk_findfirst.3 zzip_disk_findmatch.3 zzip_disk_findnext.3 \
|
|
zzip_disk_fopen.3 zzip_disk_fread.3 zzip_disk_init.3 zzip_disk_mmap.3 \
|
|
zzip_disk_munmap.3 zzip_disk_new.3 zzip_disk_open.3 \
|
|
zzip_entry_data_offset.3 zzip_entry_fclose.3 zzip_entry_feof.3 \
|
|
zzip_entry_ffile.3 zzip_entry_findfile.3 zzip_entry_findfirst.3 \
|
|
zzip_entry_findmatch.3 zzip_entry_findnext.3 zzip_entry_fopen.3 \
|
|
zzip_entry_fread.3 zzip_entry_fread_file_header.3 zzip_entry_free.3 \
|
|
zzip_entry_strdup_name.3 zzip_errno.3 zzip_error.3 zzip_fclose.3 \
|
|
zzip_file_close.3 zzip_file_open.3 zzip_file_read.3 zzip_file_real.3 \
|
|
zzip_file_stat.3 zzip_fopen.3 zzip_fread.3 zzip_freopen.3 zzip_fstat.3 \
|
|
zzip_get_default_io.3 zzip_inflate_init.3 zzip_init_io.3 zzip_open.3 \
|
|
zzip_open_ext_io.3 zzip_open_shared_io.3 zzip_opendir.3 \
|
|
zzip_opendir_ext_io.3 zzip_read.3 zzip_readdir.3 zzip_realdir.3 \
|
|
zzip_realfd.3 zzip_rewind.3 zzip_rewinddir.3 zzip_seek.3 zzip_seek32.3 zzip_seekdir.3 \
|
|
zzip_seekdir32.3 zzip_seterror.3 zzip_strerror.3 zzip_strerror_of.3 zzip_tell.3 \
|
|
zzip_tell32.3 zzip_telldir.3 zzip_telldir32.3
|
|
|
|
PORTSCOUT= limit:^0\.
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSDL}
|
|
USE_SDL= sdl
|
|
CONFIGURE_ARGS+=--enable-sdl
|
|
PLIST_SUB+= SDL=""
|
|
.else
|
|
PLIST_SUB+= SDL="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
test check:
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
|
|
${MAKEFILE} ${MAKE_ARGS} check)
|
|
|
|
.if !defined(WITHOUT_TESTS)
|
|
post-build:: test
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|