blob: 2d2c089bb03fbee63b3b79cfa7fcaca4b8eeb872 (
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
|
PORTNAME= magic
DISTVERSION= 8.3.485
CATEGORIES= cad
MASTER_SITES= http://opencircuitdesign.com/magic/archive/
MAINTAINER= yuri@FreeBSD.org
COMMENT= Interactive editor for VLSI layouts
WWW= http://opencircuitdesign.com/magic/
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libBLT25.so:x11-toolkits/blt \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2
RUN_DEPENDS= bash:shells/bash
USES= gmake gnome gl localbase:ldflags python:build shebangfix tk:tea tar:tgz xorg
USE_GNOME= cairo
USE_XORG= ice x11 xext xi xmu
USE_GL= gl glu
SHEBANG_FILES= scripts/preproc.py tcltk/magic.sh.in tcltk/ext2sim.sh.in tcltk/ext2spice.sh.in
CONFIGURE_ARGS= --with-opengl \
--enable-modular # --enable-modular should fix build on 15, when failures were due to missing symbols defined in *.sym but not in code
CONFIGURE_WRKSRC= ${WRKSRC}/scripts
ALL_TARGET= tcllibrary
DESKTOP_ENTRIES="Magic" "" "" "${PORTNAME}" "" ""
PORTSCOUT= limit:^8\.
BINARY_ALIAS= python3=${PYTHON_CMD} # this is needed, see https://github.com/RTimothyEdwards/magic/issues/173#issuecomment-1200065429
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD
CFLAGS+= -Wno-error=int-conversion
.endif
post-patch:
@${REINPLACE_CMD} -e \
's|^#!.*|#!${AWK} -f|' ${WRKSRC}/ext2spice/spice2sim
@${REINPLACE_CMD} -e \
's|TCL_LIB_NAME=.*|TCL_LIB_NAME="tcl${TCL_VER:S/.//}"|g ; \
s|TK_LIB_NAME=.*|TK_LIB_NAME="tk${TK_VER:S/.//}"|g ; \
s|wish$${TK_VERSION}|${WISH:T}|g ; \
s|tclsh$${TK_VERSION}|${TCLSH:T}|g ; \
s|-l/usr/X11R6/include|-I${LOCALBASE}/include|g' \
${CONFIGURE_WRKSRC}/configure
@${REINPLACE_CMD} -e \
's|^#!.*|#!${TCLSH}|' ${WRKSRC}/tcltk/strip_reflibs.tcl
@${REINPLACE_CMD} -e \
's|^#!.*|#!${WISH}|' ${WRKSRC}/tcltk/tkshell.tcl
pre-build:
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
${MAKEFILE} ${MAKE_ARGS} database/database.h
post-install:
@cd ${STAGEDIR}${PREFIX}/lib/magic/tcl && ${STRIP_CMD} magicexec magicdnull tclmagic.so
.include <bsd.port.post.mk>
|