svn commit: r487899 - in head/devel: . libfsapfs

Antoine Brodin antoine at FreeBSD.org
Thu Dec 20 19:28:42 UTC 2018


Author: antoine
Date: Thu Dec 20 19:28:39 2018
New Revision: 487899
URL: https://svnweb.freebsd.org/changeset/ports/487899

Log:
  New port: devel/libfsapfs
  
  Library and tools to access the Apple File System (APFS)
  
  WWW: https://github.com/libyal/libfsapfs

Added:
  head/devel/libfsapfs/
  head/devel/libfsapfs/Makefile   (contents, props changed)
  head/devel/libfsapfs/distinfo   (contents, props changed)
  head/devel/libfsapfs/pkg-descr   (contents, props changed)
  head/devel/libfsapfs/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Dec 20 18:36:21 2018	(r487898)
+++ head/devel/Makefile	Thu Dec 20 19:28:39 2018	(r487899)
@@ -1456,6 +1456,7 @@
     SUBDIR += libfmt
     SUBDIR += libfortuna
     SUBDIR += libfreefare
+    SUBDIR += libfsapfs
     SUBDIR += libfsntfs
     SUBDIR += libftdi
     SUBDIR += libftdi1

Added: head/devel/libfsapfs/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfsapfs/Makefile	Thu Dec 20 19:28:39 2018	(r487899)
@@ -0,0 +1,40 @@
+# Created by: Antoine Brodin <antoine at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libfsapfs
+# If/When moving from experimental to alpha, switch to DISTVERSIONPREFIX to prevent PORTEPOCH
+DISTVERSION=	experimental-20181215
+CATEGORIES=	devel
+MASTER_SITES=	https://github.com/libyal/libfsapfs/releases/download/${PORTVERSION:E}/ \
+		LOCAL/antoine
+
+MAINTAINER=	antoine at FreeBSD.org
+COMMENT=	Library and tools to access the Apple File System (APFS)
+
+LICENSE=	LGPL3+
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+BUILD_DEPENDS=	python${PYTHON2_DEFAULT}:lang/python${PYTHON2_DEFAULT:S/.//} \
+		python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//}
+RUN_DEPENDS=	python${PYTHON2_DEFAULT}:lang/python${PYTHON2_DEFAULT:S/.//} \
+		python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//}
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--enable-python2 --enable-python3 --with-openssl=no
+CONFIGURE_ENV=	PYTHON2_CONFIG=${LOCALBASE}/bin/python${PYTHON2_DEFAULT}-config \
+		PYTHON3=${LOCALBASE}/bin/python${PYTHON3_DEFAULT} \
+		PYTHON3_CONFIG=${LOCALBASE}/bin/python${PYTHON3_DEFAULT}-config
+USES=		fuse libtool pathfix pkgconfig
+USE_LDCONFIG=	yes
+INSTALL_TARGET=	install-strip
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:E}
+PLIST_SUB=	PYTHON2_SITELIBDIR=lib/python${PYTHON2_DEFAULT}/site-packages \
+		PYTHON3_SITELIBDIR=lib/python${PYTHON3_DEFAULT}/site-packages
+
+OPTIONS_DEFINE=	NLS
+
+NLS_USES=	gettext
+NLS_CONFIGURE_ON=	--with-libintl-prefix=${LOCALBASE}
+NLS_CONFIGURE_OFF=	--disable-nls
+
+.include <bsd.port.mk>

Added: head/devel/libfsapfs/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfsapfs/distinfo	Thu Dec 20 19:28:39 2018	(r487899)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1544884054
+SHA256 (libfsapfs-experimental-20181215.tar.gz) = 7a886ceb58a87663bee00a2aaaf72eaa50ac3ab0af35ddb6935895dd92e04402
+SIZE (libfsapfs-experimental-20181215.tar.gz) = 1954522

Added: head/devel/libfsapfs/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfsapfs/pkg-descr	Thu Dec 20 19:28:39 2018	(r487899)
@@ -0,0 +1,3 @@
+Library and tools to access the Apple File System (APFS)
+
+WWW: https://github.com/libyal/libfsapfs

Added: head/devel/libfsapfs/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libfsapfs/pkg-plist	Thu Dec 20 19:28:39 2018	(r487899)
@@ -0,0 +1,21 @@
+bin/fsapfsinfo
+bin/fsapfsmount
+include/libfsapfs.h
+include/libfsapfs/codepage.h
+include/libfsapfs/definitions.h
+include/libfsapfs/error.h
+include/libfsapfs/extern.h
+include/libfsapfs/features.h
+include/libfsapfs/types.h
+lib/libfsapfs.a
+lib/libfsapfs.so
+lib/libfsapfs.so.1
+lib/libfsapfs.so.1.0.0
+%%PYTHON2_SITELIBDIR%%/pyfsapfs.a
+%%PYTHON2_SITELIBDIR%%/pyfsapfs.so
+%%PYTHON3_SITELIBDIR%%/pyfsapfs.a
+%%PYTHON3_SITELIBDIR%%/pyfsapfs.so
+libdata/pkgconfig/libfsapfs.pc
+man/man1/fsapfsinfo.1.gz
+man/man1/fsapfsmount.1.gz
+man/man3/libfsapfs.3.gz


More information about the svn-ports-all mailing list