blob: b13cc241d57d91c7ce8398fdc22ca4932a77c1f7 (
plain)
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
82
83
84
85
86
87
|
# $NetBSD: Makefile,v 1.99 2014/05/29 23:35:17 wiz Exp $
DISTNAME= geda-gaf-1.8.2
PKGNAME= ${DISTNAME:S/-gaf-/-/}
PKGREVISION= 4
CATEGORIES= cad
MASTER_SITES= http://ftp.geda-project.org/geda-gaf/stable/v1.8/1.8.2/
MAINTAINER= dmcmahill@NetBSD.org
HOMEPAGE= http://www.geda-project.org/
COMMENT= Toolset for automating electronic design
LICENSE= gnu-gpl-v2
# Older versions of the gEDA suite had each of the tools as a standalone tarball and build.
# Beginning with 1.6, the build system has been unified.
CONFLICTS+= gattrib-[0-9]*
CONFLICTS+= geda-docs-[0-9]*
CONFLICTS+= geda-examples-[0-9]*
CONFLICTS+= geda-utils-[0-9]*
CONFLICTS+= geda-symbols-[0-9]*
CONFLICTS+= gnetlist-[0-9]*
CONFLICTS+= gschem-[0-9]*
CONFLICTS+= gsymcheck-[0-9]*
CONFLICTS+= libgeda-[0-9]*
USE_PKGLOCALEDIR= yes
DEPENDS+= gettext-tools>=0.14.6:../../devel/gettext-tools
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
USE_TOOLS+= bash gmake msgfmt pkg-config
CONFIGURE_ARGS+= --disable-update-mime-database
CONFIGURE_ARGS+= --disable-update-desktop-database
# let (f)lex rebuild this file. The distributed one doesn't
# always work.
post-patch:
${RM} -f ${WRKSRC}/utils/src/olib.c
REPLACE_BASH= utils/scripts/gnet_hier_verilog.sh
REPLACE_PYTHON= utils/scripts/tragesym
REPLACE_PERL+= utils/scripts/pads_backannotate \
utils/scripts/gsymfix \
utils/scripts/pcb_backannotate \
utils/scripts/refdes_renum \
utils/scripts/sarlacc_sym \
utils/gxyrs/gxyrs.pl
# needs GNU m4 for the PCBboard and gsch2pcb netlisters
USE_TOOLS+= gmake m4:run pkg-config
EVAL_PREFIX+= PCBDIR=pcb
CONFIGURE_ARGS+= --with-pcbm4dir=${PCBDIR}/share/pcb/m4
CONFIGURE_ARGS+= --with-pcbconfdir=${PKG_SYSCONFDIR}/pcb
SUBST_CLASSES+= python
SUBST_STAGE.python= pre-configure
SUBST_FILES.python= utils/scripts/garchive.py
SUBST_SED.python= -e 's,/usr/bin/env python,${PYTHONBIN},'
SUBST_SED.python+= -e 's,%PYTHONBIN%,${PYTHONBIN},'
REPLACE_SH+= gnetlist/scripts/sch2eaglepos.sh
USE_TOOLS+= sh:run
# for gsch2pcb
EVAL_PREFIX+= PCBDIR=pcb
CONFIGURE_ARGS+= --with-pcb-datadir=${PCBDIR}/share
USE_TOOLS+= gawk:run lex perl:run pkg-config
# disable groff for a consistent build
# (otherwise html man pages appear if and only if groff -Thtml works)
CONFIGURE_ENV+= GROFF=false
INFO_FILES= yes
.include "../../lang/python/application.mk"
.include "../../databases/shared-mime-info/mimedb.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/libgetopt/buildlink3.mk"
.include "../../devel/libstroke/buildlink3.mk"
.include "../../graphics/gd/buildlink3.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../lang/guile/buildlink3.mk"
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|