View | Details | Raw Unified | Return to bug 223176 | Differences between
and this patch

Collapse All | Expand All

(-)archivers/zipios/Makefile (+28 lines)
Line 0 Link Here
1
# Created by: blubee <hello@blubee.me>
2
# $FreeBSD$
3
4
PORTNAME=	zipios
5
PORTVERSION=	2.1.1
6
CATEGORIES=	archivers
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}++/${PORTVERSION}
8
9
MAINTAINER=	hello@blubee.me
10
COMMENT=	Zipios is a small C++ library for reading and writing zip files
11
12
LICENSE=	LGPL20+
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
15
USES=	cmake:outsource
16
CMAKE_ARGS=	--no-warn-unused-cli \
17
		-DBUILD_ZIPIOS_TESTS:BOOL=OFF \
18
		-DBUILD_DOCUMENTATION:BOOL=OFF
19
20
OPTIONS_DEFINE=	BUILD_DOCS
21
BUILD_DOCS_DESC=	build DOXYGEN documents
22
OPTIONS_SUB=	yes
23
USE_LDCONFIG=	yes
24
25
BUILD_DOCS_CONFIGURE_ON=	\
26
		-DBUILD_DOCUMENTATION:BOOL=ON
27
28
.include <bsd.port.mk>
(-)archivers/zipios/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1508243927
2
SHA256 (zipios-2.1.1.tar.gz) = 5b95e19c92f1c4a9fd3a689997eae7e3f83475500de15834d02f70dcac2aedc2
3
SIZE (zipios-2.1.1.tar.gz) = 274923
(-)archivers/zipios/pkg-descr (+6 lines)
Line 0 Link Here
1
Zipios++ is a small C++ library for reading and writing zip files. The
2
structure and public interface are based (somewhat loosely) on the
3
`java.util.zip` package. The streams created to access the individual
4
entries in a zip file are based on the standard iostream library.
5
6
WWW: http://zipios.sourceforge.net/
(-)archivers/zipios/pkg-plist (+18 lines)
Line 0 Link Here
1
bin/appendzip
2
bin/dostime
3
bin/zipios
4
include/zipios/collectioncollection.hpp
5
include/zipios/directorycollection.hpp
6
include/zipios/directoryentry.hpp
7
include/zipios/filecollection.hpp
8
include/zipios/fileentry.hpp
9
include/zipios/filepath.hpp
10
include/zipios/virtualseeker.hpp
11
include/zipios/zipfile.hpp
12
include/zipios/zipios-config.hpp
13
include/zipios/zipiosexceptions.hpp
14
lib/libzipios.so
15
lib/libzipios.so.2
16
lib/libzipios.so.2.1
17
share/cmake-2.8/Modules/FindCatch.cmake
18
share/cmake-2.8/Modules/FindZipIos.cmake

Return to bug 223176