summaryrefslogtreecommitdiff
path: root/databases/sqldeveloper/Makefile
blob: 2ed97edb0885ad94b35ef932e05304d69fbaf365 (plain) (blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
PORTNAME=	sqldeveloper
DISTVERSION=	23.1.1.345.2114
DISTVERSIONSUFFIX=	-no-jre
PORTREVISION=	2
CATEGORIES=	databases java
# https://www.oracle.com/tools/downloads/sqldev-downloads.html
MASTER_SITES=
DIST_SUBDIR=	oracle

MAINTAINER=	vvd@FreeBSD.org
COMMENT=	Graphical tool for database development
WWW=		https://www.oracle.com/database/technologies/appdev/sqldeveloper-landing.html

# https://www.oracle.com/downloads/licenses/sqldev-license.html
LICENSE_NAME=	OTN
LICENSE_PERMS=	no-dist-mirror no-dist-sell no-pkg-mirror

RUN_DEPENDS=	openjfx14>=0:java/openjfx14 \
		bash:shells/bash

USES=		gnome zip
USE_JAVA=	yes
JAVA_VERSION=	11+

DATADIR=	${JAVASHAREDIR}/${PORTNAME}
NO_ARCH=	yes
NO_BUILD=	yes
SUB_FILES=	${PORTNAME}.desktop ${PORTNAME}.sh
SUB_LIST=	JAVA_HOME=${JAVA_HOME} \
		PORTNAME=${PORTNAME}

WRKSRC=		${WRKDIR}/${PORTNAME}

SUB_LIST+=	OPENJFX14_JVM_OPTIONS="-J--module-path=${LOCALBASE}/openjfx14/lib -J--add-modules=javafx.swing,javafx.web"

.include <bsd.port.pre.mk>

.if !exists(${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE=		due to Oracle license restrictions, you must fetch the \
		source distribution manually. Please access \
		https://www.oracle.com/tools/downloads/sqldev-downloads.html \
		with a web browser and follow the link for the ${DISTFILES}. \
		You will be required to register and log in, but you can \
		create an account on that page. After registration and \
		accepting the Oracle License, download the distribution file, \
		${DISTFILES}, into ${DISTDIR}/${DIST_SUBDIR}/ and then restart \
		this installation
.endif

do-install:
	${ECHO_MSG} -n ">> Installing scripts..."
	${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}/${PREFIX}/bin/${PORTNAME}
	${ECHO_MSG} " [ DONE ]"

.for d in configuration dataminer dropins equinox \
    external ide javavm jdbc jdev jlib jviews modules \
    netbeans rdbms sleepycat sqldeveloper sqlj svnkit
	${ECHO_MSG} -n ">> Installing data directory '${d}'..."
	cd ${WRKSRC} && ${FIND} ${d} -type d \
		-exec ${MKDIR} ${STAGEDIR}/${DATADIR}/\{} \;
	cd ${WRKSRC} && ${FIND} ${d} -type f \
		-not -name "*.exe" \
		-not -name "*.dll" \
		-not -name "*.so" \
		-not -name "*.jnilib" \
		-exec ${INSTALL_DATA} \{} ${STAGEDIR}/${DATADIR}/\{} \;
	${ECHO_MSG} " [ DONE ]"
.endfor

	${RM} -r ${STAGEDIR}/${DATADIR}/modules/javafx
	${RM} -r ${STAGEDIR}/${DATADIR}/netbeans/platform/modules/lib

	@${ECHO_MSG} ">> Installing icon and desktop file ..."
	@${MKDIR} ${STAGEDIR}/${PREFIX}/share/applications/ \
	    ${STAGEDIR}/${PREFIX}/share/icons/hicolor/32x32/apps/
	${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.desktop ${STAGEDIR}/${PREFIX}/share/applications/
	${INSTALL_DATA} ${WRKSRC}/icon.png ${STAGEDIR}/${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png

	${ECHO_MSG} " [ DONE ]"

.include <bsd.port.post.mk>