mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
9a3aeee1e0
- Build python2 and python3 bindings
45 lines
1.5 KiB
Makefile
45 lines
1.5 KiB
Makefile
# Created by: MANTANI Nobutaka <nobutaka@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libewf
|
|
PORTVERSION= 20140804
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://github.com/libyal/libewf-legacy/releases/download/${PORTVERSION}/ \
|
|
LOCAL/antoine
|
|
|
|
MAINTAINER= antoine@FreeBSD.org
|
|
COMMENT= Library for support of the Expert Witness Compression Format (EWF)
|
|
|
|
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/.//}
|
|
LIB_DEPENDS= libsmdev.so:devel/libsmdev \
|
|
libsmraw.so:devel/libsmraw \
|
|
libuuid.so:misc/e2fsprogs-libuuid
|
|
|
|
USES= fuse libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-python2 --enable-python3 --with-libsmdev=${LOCALBASE} \
|
|
--with-libsmraw=${LOCALBASE} \
|
|
--with-libuuid=${LOCALBASE} --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
|
|
INSTALL_TARGET= install-strip
|
|
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>
|