View | Details | Raw Unified | Return to bug 205199
Collapse All | Expand All

(-)devel/aifad/Makefile (-7 / +16 lines)
Lines 2-16 Link Here
2
# $FreeBSD: head/devel/aifad/Makefile 401096 2015-11-09 12:59:03Z antoine $
2
# $FreeBSD: head/devel/aifad/Makefile 401096 2015-11-09 12:59:03Z antoine $
3
3
4
PORTNAME=	aifad
4
PORTNAME=	aifad
5
PORTVERSION=	2.0.2
5
PORTVERSION=	2.0.6
6
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel
7
CATEGORIES=	devel
7
MASTER_SITES=	http://cdn.bitbucket.org/mmottl/aifad/downloads/
8
MASTER_SITES=	GH
8
9
9
MAINTAINER=	ports@FreeBSD.org
10
MAINTAINER=	ports@FreeBSD.org
10
COMMENT=	Machine learning system
11
COMMENT=	Machine learning system
11
12
12
BROKEN=		unfetchable
13
14
LICENSE=	GPLv3
13
LICENSE=	GPLv3
15
14
16
BUILD_DEPENDS=	menhir:${PORTSDIR}/devel/menhir \
15
BUILD_DEPENDS=	menhir:${PORTSDIR}/devel/menhir \
Lines 19-37 Link Here
19
		ocaml-res>0:${PORTSDIR}/devel/ocaml-res
18
		ocaml-res>0:${PORTSDIR}/devel/ocaml-res
20
LIB_DEPENDS=	libpcre.so:${PORTSDIR}/devel/pcre
19
LIB_DEPENDS=	libpcre.so:${PORTSDIR}/devel/pcre
21
20
21
USE_GITHUB=	yes
22
GH_ACCOUNT=	mmottl
23
22
USE_OCAML=	yes
24
USE_OCAML=	yes
23
NO_OCAML_RUNDEPENDS=yes
25
NO_OCAML_RUNDEPENDS=yes
24
26
25
HAS_CONFIGURE=	yes
27
HAS_CONFIGURE=	yes
26
CONFIGURE_ARGS=	--prefix ${STAGEDIR}${PREFIX}
28
CONFIGURE_ARGS=	--prefix ${STAGEDIR}${PREFIX}
27
29
30
PORTDOCS=	AUTHORS.txt CHANGES.txt README.md TODO.md
31
PORTEXAMPLES=	*
32
PLIST_FILES=	bin/aifad
33
28
OPTIONS_DEFINE=	DOCS EXAMPLES
34
OPTIONS_DEFINE=	DOCS EXAMPLES
29
35
30
post-install:
36
post-install:
31
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
37
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/aifad
38
39
post-install-DOCS-on:
32
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
40
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
33
	(cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS.txt CHANGES.txt README.md \
41
	(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
34
		TODO.md ${STAGEDIR}${DOCSDIR})
42
43
post-install-EXAMPLES-on:
35
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
44
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
36
	(cd ${WRKSRC}/examples && ${INSTALL_DATA} * ${STAGEDIR}${EXAMPLESDIR})
45
	(cd ${WRKSRC}/examples && ${INSTALL_DATA} * ${STAGEDIR}${EXAMPLESDIR})
37
46
(-)devel/aifad/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (aifad-2.0.2.tar.gz) = c265614a2dcc893eaab7e559cd8a6b446e09d3262974bb7e01b3c453c80356a8
1
SHA256 (mmottl-aifad-v2.0.6_GH0.tar.gz) = e7f66d8af30e6c95efadffb07e447bd8596ae20f92ec96429799b51c3c559f99
2
SIZE (aifad-2.0.2.tar.gz) = 103080
2
SIZE (mmottl-aifad-v2.0.6_GH0.tar.gz) = 107722
(-)devel/aifad/pkg-descr (-5 / +5 lines)
Lines 1-7 Link Here
1
AIFAD stands for --Automated Induction of Functions over Algebraic
1
AIFAD stands for --Automated Induction of Functions over Algebraic
2
Datatypes-- and improves decision tree learning by supporting significantly
2
Datatypes-- and improves decision tree learning by supporting
3
more complex kinds of data. This allows users to more conveniently describe
3
significantly more complex kinds of data. This allows users to more
4
the data they want to have learnt, which can improve accuracy and complexity
4
conveniently describe the data they want to have learnt, which can
5
of resulting models.
5
improve accuracy and complexity of resulting models.
6
6
7
WWW: https://bitbucket.org/mmottl/aifad
7
WWW: https://mmottl.github.io/aifad
(-)devel/aifad/pkg-plist (-14 lines)
Lines 1-14 Link Here
1
bin/aifad
2
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.txt
3
%%PORTDOCS%%%%DOCSDIR%%/CHANGES.txt
4
%%PORTDOCS%%%%DOCSDIR%%/README.md
5
%%PORTDOCS%%%%DOCSDIR%%/TODO.md
6
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/breast_cancer1.add
7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/breast_cancer1.ads
8
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/breast_cancer2.add
9
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/breast_cancer2.ads
10
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c45.data
11
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c45.names
12
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large.ads
13
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test.add
14
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test.ads

Return to bug 205199