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

Collapse All | Expand All

(-)b/MOVED (-1 lines)
Lines 6469-6475 devel/alog||2022-02-28|Removed, depends on expired lang/gcc6-aux Link Here
6469
devel/aunit||2022-02-28|Removed, depends on expired lang/gcc6-aux
6469
devel/aunit||2022-02-28|Removed, depends on expired lang/gcc6-aux
6470
devel/florist-gpl||2022-02-28|Removed, depends on expired lang/gcc6-aux
6470
devel/florist-gpl||2022-02-28|Removed, depends on expired lang/gcc6-aux
6471
devel/libspark2012||2022-02-28|Removed, depends on expired lang/gcc6-aux
6471
devel/libspark2012||2022-02-28|Removed, depends on expired lang/gcc6-aux
6472
devel/matreshka||2022-02-28|Removed, depends on expired lang/gcc6-aux
6473
devel/pcsc-ada||2022-02-28|Removed, depends on expired lang/gcc6-aux
6472
devel/pcsc-ada||2022-02-28|Removed, depends on expired lang/gcc6-aux
6474
devel/pragmarcs||2022-02-28|Removed, depends on expired lang/gcc6-aux
6473
devel/pragmarcs||2022-02-28|Removed, depends on expired lang/gcc6-aux
6475
devel/sdl_gnat||2022-02-28|Removed, depends on expired lang/gcc6-aux
6474
devel/sdl_gnat||2022-02-28|Removed, depends on expired lang/gcc6-aux
(-)b/devel/Makefile (+1 lines)
Lines 1571-1576 Link Here
1571
    SUBDIR += marl
1571
    SUBDIR += marl
1572
    SUBDIR += massif-visualizer
1572
    SUBDIR += massif-visualizer
1573
    SUBDIR += mate-common
1573
    SUBDIR += mate-common
1574
    SUBDIR += matreshka
1574
    SUBDIR += maven
1575
    SUBDIR += maven
1575
    SUBDIR += maven-wrapper
1576
    SUBDIR += maven-wrapper
1576
    SUBDIR += maven363
1577
    SUBDIR += maven363
(-)b/devel/matreshka/Makefile (+65 lines)
Added Link Here
1
PORTNAME=	matreshka
2
DISTVERSION=	21.0
3
CATEGORIES=	devel
4
5
MAINTAINER=	agh@FreeBSD.org
6
COMMENT=	Ada framework for information systems development
7
WWW=		https://github.com/godunko/matreshka
8
9
LICENSE=	BSD3CLAUSE
10
LICENSE_FILE=	${WRKSRC}/LICENSE
11
12
BROKEN_i386=	segfault: raised STORAGE_ERROR : s-intman.adb:136 explicit raise
13
14
BUILD_DEPENDS=	gprbuild>0:devel/gprbuild
15
16
USES=		ada:12,run gmake pkgconfig
17
USE_GCC=	yes:build
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	godunko
20
21
HAS_CONFIGURE=	yes
22
CONFIGURE_ARGS=	--gprdir="${PREFIX}/share/gpr"
23
24
MAKE_ENV+=	SMP_MFLAGS="-j${MAKE_JOBS_NUMBER}"
25
26
NO_MTREE=	yes
27
28
WRKSRC_SUBDIR=	${PORTNAME}
29
30
OPTIONS_DEFINE=		AMF FIREBIRD MYSQL ORACLE PGSQL SQLITE3
31
OPTIONS_DEFAULT=	AMF PGSQL SQLITE3
32
33
AMF_DESC=	Build Ada Modeling Framework
34
35
AMF_CONFIGURE_ENABLE=		amf
36
FIREBIRD_USES=			firebird
37
FIREBIRD_CONFIGURE_ENABLE=	firebird
38
MYSQL_LIB_DEPENDS=		libunwind.so:devel/libunwind
39
MYSQL_USES=			mysql ssl
40
MYSQL_CONFIGURE_ENABLE=		mysql
41
ORACLE_CONFIGURE_ENABLE=	oracle
42
PGSQL_USES=			pgsql
43
PGSQL_CONFIGURE_ENABLE=		postgresql
44
SQLITE3_USES=			sqlite
45
SQLITE3_CONFIGURE_ENABLE=	sqlite3
46
47
.include <bsd.port.options.mk>
48
49
.if ${PORT_OPTIONS:MFIREBIRD}
50
CONFIGURE_ARGS+=	--with-firebird-libdir=${LOCALBASE}/lib
51
.endif
52
53
pre-configure:
54
	(cd ${WRKSRC} && \
55
		${SETENV} ${CONFIGURE_ENV} ${MAKE_CMD} config)
56
57
post-install:
58
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so \
59
		${STAGEDIR}${PREFIX}/bin/*
60
61
	@(cd ${STAGEDIR}${PREFIX}; \
62
		${FIND} * \( -type f -or -type l \) | \
63
		${SORT} >> ${TMPPLIST})
64
65
.include <bsd.port.mk>
(-)b/devel/matreshka/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1692494248
2
SHA256 (godunko-matreshka-21.0_GH0.tar.gz) = 24bee1b61091211d513f7cfa53a3be479078a32dab90da83b5ccb2c9c9103218
3
SIZE (godunko-matreshka-21.0_GH0.tar.gz) = 40700684
(-)b/devel/matreshka/pkg-descr (+24 lines)
Added Link Here
1
Matreshka is an Ada framework to develop information systems:
2
3
 League - a set of reusable components aimed at providing high level
4
 abstractions for  internationalization of applications, as well as a portable
5
 interface to different operating systems. Other features, include advanced
6
 calendrical calculations, regular expressions, and JSON support for processing
7
 and generation.
8
9
 XML processor - manipulating of streams and documents; including SAX reader,
10
 and writer; XML1.0, XML1.1, Namespaces support and XML Base specifications;
11
 DOM API to process XML documents 0.8; XML Catalogs resolver; Markup Templates
12
 Engine to process XML templates and generates XML or HTML/XHTML output 0.6.
13
14
 Web framework SpikeDog - implemented over AWS (Ada Web Server) with Servlet
15
 API 0.7. FastCGI. SOAP 1.2 supported, including WS-Security module 1.1.
16
17
 SQL database access - provides a generic API for accessing SQL databases:
18
 Firebird, MySQL, Oracle, PostgreSQL, SQLite3.
19
20
 Ada Modeling Framework - an implementation of OMG's Meta Object
21
 Facility (MOF) written completely in Ada. Extension modules are provided to
22
 assist in the analysis and modification of, UML models and their
23
 extensions. MOF Extensions to support metamodeling OCL models UML Testing
24
 Profile to support Model-Driven Testing Diagram Definition

Return to bug 273241