aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/yed/Makefile
blob: 72e4c37f8e5ad63d2005dd9ab8f52f34336c2b95 (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
# Created by: Eugene Mychlo <myc@barev.net>
# $FreeBSD$

PORTNAME=   yed
PORTVERSION=    3.14.4
CATEGORIES= graphics java
MASTER_SITES=   #
DISTNAME=   yEd-${PORTVERSION}

MAINTAINER= myc@barev.net
COMMENT=    Editor for graphs and diagrams

LICENSE=    YED_1_1
LICENSE_NAME=   yEd Software License Agreement (Version 1.1)
LICENSE_TEXT=   Description of the license can be obtained from the following URL: \
        http://www.yworks.com/products/yed/license.html
LICENSE_PERMS=  no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell auto-accept

USES=       zip
USE_JAVA=   yes
JAVA_VERSION=   1.7+
NO_BUILD=   yes
RESTRICTED= Downloading requires acceptance of license agreement
DESKTOP_ENTRIES="yEd" "${COMMENT}" "" "yed" "Graphics;" false

WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}

SUB_FILES=  ${PORTNAME}

DOWNLOAD_URL?=  http://www.yworks.com/en/products_download.php?file=${DISTNAME}${EXTRACT_SUFX}

.include <bsd.port.pre.mk>

.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE= you must manually obtain ${DISTNAME}${EXTRACT_SUFX} from\
    '${DOWNLOAD_URL}', place it in ${DISTDIR} and then run make again
.endif

do-install:
    @${MKDIR} ${STAGEDIR}${DATADIR}
    ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
    ${INSTALL_DATA} ${WRKSRC}/license.html ${STAGEDIR}${DATADIR}
    ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${STAGEDIR}${DATADIR}
    @${MKDIR}  ${STAGEDIR}${DATADIR}/lib
.   for lib in common-image.jar \
        common-io.jar \
        common-lang.jar \
        imageio-core.jar \
        imageio-icns.jar \
        imageio-ico.jar \
        imageio-iff.jar \
        imageio-jpeg.jar \
        imageio-metadata.jar \
        imageio-pict.jar \
        imageio-psd.jar \
        imageio-thumbsdb.jar \
        imageio-tiff.jar \
        vectorgraphics.jar
        ${INSTALL_DATA} ${WRKSRC}/lib/${lib} ${STAGEDIR}${DATADIR}/lib
.   endfor

.include <bsd.port.post.mk>