summaryrefslogtreecommitdiff
path: root/package/ncurses/Makefile
blob: e9bb8bf12ae74ac9aaa6f49724b5fdff77d12436 (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
# $Id$
#-
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include ${TOPDIR}/rules.mk

PKG_NAME:=		ncurses
PKG_VERSION:=		5.7
PKG_RELEASE:=		1
PKG_MD5SUM:=		cce05daf61a64501ef6cd8da1f727ec6
PKG_DESCR:=		a terminal handling library and common terminal definitions
PKG_SECTION:=		libs
PKG_URL:=		http://www.gnu.org/software/ncurses
PKG_SITES:=		${MASTER_SITE_GNU:=ncurses/}

include ${TOPDIR}/mk/package.mk

$(eval $(call PKG_template,LIBNCURSES,libncurses,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))

CONFIGURE_STYLE=	gnu
CONFIGURE_ENV+=		ac_cv_linux_vers=2
CONFIGURE_ARGS+=	--without-cxx \
			--without-cxx-binding \
			--without-progs \
			--with-fallbacks \
			--without-ada \
			--with-shared \
			--with-normal \
			--without-debug \
			--without-profile \
			--without-gpm \
			--enable-overwrite \
			--with-terminfo-dirs=/usr/share/terminfo \
			--with-default-terminfo-dir=/usr/share/terminfo \
			--disable-big-core \
			--disable-home-terminfo \
			--without-rcs-ids \
			--enable-const \
			--enable-echo
BUILD_STYLE=		auto
INSTALL_STYLE=		auto confprog
ALL_TARGET:=		libs
INSTALL_TARGET:=	install.libs install.data


pre-configure:
	(cd ${WRKBUILD}; rm -rf config.{cache,status} ; \
		./configure \
		--with-build-cc=${HOSTCC} \
		--with-progs \
	);
	${MAKE} -C ${WRKBUILD}/include
	${MAKE} -C ${WRKBUILD}/progs

post-install:
	# this is installed as libncurses - make libcurses a "link"
	rm -f ${WRKINST}/usr/lib/libcurses.so*
	echo 'GROUP(-lncurses)' >${WRKINST}/usr/lib/libcurses.so
	# libcurses will not show up in the IPKG, only in STAGING_DIR
	${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/share/terminfo
	${INSTALL_DIR} ${IDIR_LIBNCURSES}/usr/lib
	${CP} ${WRKINST}/usr/lib/lib{form,menu,ncurses,panel}.so.* \
	    ${IDIR_LIBNCURSES}/usr/lib
	for f in a/ansi d/dumb l/linux r/rxvt s/screen v/vt100 v/vt102 \
	    v/vt220 w/wsvt25 x/xterm x/xterm-color x/xterm-xfree86; do \
		${INSTALL_DIR} \
		    ${IDIR_LIBNCURSES}/usr/share/terminfo/$$(dirname $$f); \
		${INSTALL_DATA} ${WRKINST}/usr/share/terminfo/$$f \
		    ${IDIR_LIBNCURSES}/usr/share/terminfo/$$f; \
	done

include ${TOPDIR}/mk/pkg-bottom.mk