blob: 34620026cc1f4d2742be8369b13887a1da34d6c8 (
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
|
# $NetBSD: Makefile,v 1.12 2001/03/27 03:19:51 hubertf Exp $
#
DISTNAME= latestCDK
PKGNAME= cdk-4.9.9
WRKSRC= ${WRKDIR}/${PKGNAME}
CATEGORIES= devel
MASTER_SITES= http://www.vexus.ca/release/
EXTRACT_SUFX= .tgz
MAINTAINER= root@garbled.net
HOMEPAGE= http://www.vexus.ca/CDK.html
COMMENT= the Curses Development Kit
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include # for ncurses.h
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
ALL_TARGET= default
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
DEPENDS+= ncurses>=4.2:../../devel/ncurses
.elif ${OPSYS} == "SunOS"
MAKE_ENV+= CPPFLAGS=
.endif
pre-configure:
cd ${WRKSRC}; ${LOCALBASE}/bin/autoconf
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cdk
for file in ${WRKSRC}/examples/*.c ${WRKSRC}/examples/Makefile; do \
${INSTALL_DATA} $${file} ${PREFIX}/share/examples/cdk/; \
done
.include "../../mk/bsd.pkg.mk"
|