blob: 40a8c4c9a1af5c8cc3932938a9116fade2cd8841 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Created by: Gea-Suan Lin <gslin@gslin.org>
PORTNAME= lasso
PORTVERSION= 2.8.0
CATEGORIES= security
MASTER_SITES= https://dev.entrouvert.org/releases/lasso/
MAINTAINER= bofh@FreeBSD.org
COMMENT= Free Liberty Alliance Implementation
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
LIB_DEPENDS= libltdl.so:devel/libltdl \
libxmlsec1-openssl.so:security/xmlsec1
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= cpe gnome libtool pkgconfig python ssl
CPE_VENDOR= entrouvert
USE_GNOME= glib20 libxml2 libxslt
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-java \
--disable-php5 \
--with-zlib
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= DOCS PERL PYTHON
OPTIONS_SUB= yes
PERL_USES= perl5
PERL_CONFIGURE_ENABLE= perl
PYTHON_CONFIGURE_ENABLE= python
post-patch:
@${REINPLACE_CMD} -E 's,(xmlsec1-openssl >= 1\.2\.6) openssl,\1,' \
${CONFIGURE_WRKSRC}/configure
.include <bsd.port.mk>
|