blob: f7e073180340ef67115bc7e0da8bdeca08c16712 (
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
|
# $NetBSD: Makefile,v 1.24 2004/03/05 13:03:47 dmcmahill Exp $
#
DISTNAME= geda-utils-${PKGVERSION}
CATEGORIES= cad
MASTER_SITES= ftp://ftp.geda.seul.org/pub/geda/devel/${PKGVERSION}/ \
ftp://ieee.ing.uniroma1.it/pub/geda/devel/${PKGVERSION}/ \
http://www.geda.seul.org/devel/${PKGVERSION}/ \
http://www.geda.coelacanth.com/devel/${PKGVERSION}/
MAINTAINER= dmcmahill@NetBSD.org
HOMEPAGE= http://www.geda.seul.org/
COMMENT= Set of utilities for gEDA
BUILD_DEPENDS+= geda-symbols>=${PKGVERSION}:../../cad/geda-symbols
.if !exists(/usr/bin/lex) && !exists(/usr/bin/flex)
BUILD_DEPENDS+= flex-[0-9]*:../../devel/flex
EVAL_PREFIX+= LEXDIR=flex
LEX= ${LEXDIR}/bin/flex
.endif
CONFLICTS+= gEDA<19991011
.include "../../cad/geda/Makefile.common"
GNU_CONFIGURE= YES
USE_BUILDLINK3= YES
USE_PERL5= YES
# let (f)lex rebuild this file. The distributed one doesn't
# always work.
post-patch:
${RM} -f ${WRKSRC}/src/olib.c
EVAL_PREFIX+= PYDIR=python
REPLACE_INTERPRETER+= python
_REPLACE.python.old= .*/bin/python
_REPLACE.python.new= ${PYDIR}/bin/python
_REPLACE_FILES.python= scripts/tragesym
REPLACE_PERL+= scripts/pads_backannotate \
scripts/gschupdate \
scripts/gsymupdate \
scripts/refdes_renum \
scripts/sarlacc_sym
.include "../../cad/libgeda/buildlink3.mk"
.include "../../devel/pkgconfig/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|