blob: e78569ff91de507310ab7e0e980967269acec038 (
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
|
# $NetBSD: Makefile,v 1.11 2001/09/27 23:17:58 jlam Exp $
# FreeBSD: ports/devel/sdcc/Makefile,v 1.5 2000/04/15 15:13:38 knu Exp
DISTNAME= sdcc-2.2.1-src
PKGNAME= sdcc-2.2.1
CATEGORIES= devel lang
MASTER_SITES= http://web.kd0yu.com/sdcc/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://sdcc.sourceforge.net/
COMMENT= Cross compile 8051 code
ALL_TARGET= dep all
WRKSRC= ${WRKDIR}/${PKGNAME}
#
# This HACK circumvent a problem with the use of
# yacc that breaks the building process of sdcc.
# Use of bison fixes this problem for now.
#
BUILD_DEPENDS+= bison-[0-9]*:../../devel/bison
# we link to the static boehm-gc library so we only
# need this at compile time
BUILD_DEPENDS+= boehm-gc-[0-9]*:../../devel/boehm-gc
YACC= bison
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_PERL5= yes
CONFIGURE_ARGS+=--datadir=${LOCALBASE}/share/sdcc
# needed for some arch's. -fdollars-in-identifiers is enabled
# by default on some, not on others
CPPFLAGS+= -fdollars-in-identifiers
CONFIGURE_ENV+= MACHINE_ARCH=${MACHINE_ARCH}
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
CPPFLAGS+= -I${WRKDIR}/include -DYY_NEVER_INTERACTIVE
post-extract:
${MKDIR} ${WRKDIR}/include
${LN} -fs /usr/include/sys/endian.h ${WRKDIR}/include
${RM} -f ${WRKSRC}/as/mcs51/string.h ${WRKSRC}/as/z80/string.h
.endif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sdcc
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sdcc/avr
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/sdcc/z80
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/sdcc/
${INSTALL_DATA} ${WRKSRC}/doc/*.sgml ${PREFIX}/share/doc/sdcc/
${INSTALL_DATA} ${WRKSRC}/doc/*.lyx ${PREFIX}/share/doc/sdcc/
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${PREFIX}/share/doc/sdcc/
${INSTALL_DATA} ${WRKSRC}/doc/avr/avr_design.txt ${PREFIX}/share/doc/sdcc/avr
${INSTALL_DATA} ${WRKSRC}/doc/z80/README ${PREFIX}/share/doc/sdcc/z80
.include "../../mk/bsd.pkg.mk"
|