From 3b77b723ca209199c8a224702812441e2196d452 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 7 Jul 2011 15:41:53 +0200 Subject: libpayload: Add PDCurses and ncurses' libform/libmenu PDCurses provides an alternative implementation of the curses library standard in addition to tinycurses. Where tinycurses is really tiny, PDCurses is more complete and provides virtually unlimited windows and the full API. The PDCurses code is brought in "vanilla", with all local changes residing in curses/pdcurses-backend/ In addition to a curses library, this change also provides libpanel (as part of the PDCurses code), and libform and libmenu which were derived from ncurses-5.9. As they rely on ncurses internals (and PDCurses is not ncurses), more changes were required for these libraries to work. The build system is extended to install the right set of header files depending on the selected curses implementation. Change-Id: I9e5b920f94b6510da01da2f656196a993170d1c5 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/106 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones --- .../libpayload/curses/PDCurses-3.4/Makefile.in | 108 +++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 payloads/libpayload/curses/PDCurses-3.4/Makefile.in (limited to 'payloads/libpayload/curses/PDCurses-3.4/Makefile.in') diff --git a/payloads/libpayload/curses/PDCurses-3.4/Makefile.in b/payloads/libpayload/curses/PDCurses-3.4/Makefile.in new file mode 100644 index 0000000000..dc40abfbf5 --- /dev/null +++ b/payloads/libpayload/curses/PDCurses-3.4/Makefile.in @@ -0,0 +1,108 @@ +# Makefile for PDCurses library for X11 + +SHELL = @SHELL@ + +@SET_MAKE@ + +srcdir =@srcdir@ +prefix =@prefix@ +exec_prefix =$(DESTDIR)@exec_prefix@ +libdir =$(exec_prefix)/lib +bindir =$(exec_prefix)/bin +includedir =$(exec_prefix)/include +pdcursesdir =./x11 + +INSTALL =$(srcdir)/install-sh +RANLIB =@RANLIB@ +SHLPRE = @SHLPRE@ +SHLPST = @SHLPST@ +SHLFILE = XCurses + +include $(srcdir)/version.mif + +PDC_DIR=PDCurses-$(VERDOT) + +ZIPFILE = pdcurs$(VER).zip +TARBALL = $(PDC_DIR).tar.gz + +all \ +clean \ +distclean \ +mostlyclean \ +realclean :: + cd x11; $(MAKE) $(MFLAGS) $@ + cd doc; $(MAKE) $(MFLAGS) $@ + +install :: + $(INSTALL) -d -m 755 $(libdir) + $(INSTALL) -d -m 755 $(bindir) + $(INSTALL) -d -m 755 $(includedir) + $(INSTALL) -d -m 755 $(includedir)/xcurses + $(INSTALL) -c -m 644 $(srcdir)/curses.h $(includedir)/xcurses.h + $(INSTALL) -c -m 644 $(srcdir)/curses.h $(includedir)/xcurses/curses.h + sed -e 's/#include /#include /' \ + < $(srcdir)/panel.h > ./xpanel.h + $(INSTALL) -m 644 ./xpanel.h $(includedir)/xpanel.h + $(INSTALL) -c -m 644 $(srcdir)/panel.h $(includedir)/xcurses/panel.h + $(INSTALL) -c -m 644 $(srcdir)/term.h $(includedir)/xcurses/term.h + $(INSTALL) -c -m 644 $(pdcursesdir)/libXCurses.a $(libdir)/libXCurses.a + -$(RANLIB) $(libdir)/libXCurses.a + -$(INSTALL) -c -m 755 $(pdcursesdir)/$(SHLPRE)$(SHLFILE)$(SHLPST) \ + $(libdir)/$(SHLPRE)$(SHLFILE)$(SHLPST) + ln -f -s $(libdir)/$(SHLPRE)$(SHLFILE)$(SHLPST) \ + $(libdir)/$(SHLPRE)Xpanel$(SHLPST) + ln -f -s $(libdir)/libXCurses.a $(libdir)/libXpanel.a + -$(RANLIB) $(libdir)/libXpanel.a + $(INSTALL) -c -m 755 x11/xcurses-config $(bindir)/xcurses-config + +clean :: + rm -f config.log config.cache config.status + +distclean :: + rm -f config.log config.cache config.status + rm -f config.h Makefile x11/xcurses-config + +manual: + cd doc; $(MAKE) $(MFLAGS) $@ + +$(ZIPFILE): + zip -9y $(ZIPFILE) README HISTORY IMPLEMNT *.spec *.mif *.def \ + Makefile.in config.h.in configure configure.ac config.guess \ + config.sub x11/xcurses-config.in install-sh aclocal.m4 curses.h \ + curspriv.h panel.h term.h pdcurses/README \ + pdcurses/*.c demos/README demos/*.c demos/*.h dos/README dos/*.c \ + dos/*.h dos/*.mak dos/*.lrf os2/README os2/*.c os2/*.h os2/*.mak \ + os2/*.lrf sdl1/README sdl1/*.c sdl1/*.h sdl1/Make* \ + win32/README win32/*.c win32/*.h win32/*.mak \ + win32/*.ico win32/*.rc x11/README x11/*.c x11/*.h x11/Makefile.* \ + x11/*.xbm doc/*.txt doc/manext.c doc/Makefile + +zip: $(ZIPFILE) + +../$(TARBALL): + (cd ..; tar cvf - $(PDC_DIR)/README $(PDC_DIR)/HISTORY \ + $(PDC_DIR)/IMPLEMNT $(PDC_DIR)/*.spec $(PDC_DIR)/*.mif \ + $(PDC_DIR)/*.def $(PDC_DIR)/Makefile.in $(PDC_DIR)/aclocal.m4 \ + $(PDC_DIR)/config.h.in $(PDC_DIR)/configure \ + $(PDC_DIR)/config.guess $(PDC_DIR)/x11/xcurses-config.in \ + $(PDC_DIR)/config.sub $(PDC_DIR)/configure.ac \ + $(PDC_DIR)/install-sh $(PDC_DIR)/curses.h $(PDC_DIR)/curspriv.h \ + $(PDC_DIR)/panel.h $(PDC_DIR)/term.h \ + $(PDC_DIR)/pdcurses/README $(PDC_DIR)/pdcurses/*.c \ + $(PDC_DIR)/demos/README $(PDC_DIR)/demos/*.c $(PDC_DIR)/demos/*.h \ + $(PDC_DIR)/doc/*.txt $(PDC_DIR)/dos/README $(PDC_DIR)/dos/*.c \ + $(PDC_DIR)/dos/*.h $(PDC_DIR)/dos/*.mak $(PDC_DIR)/dos/*.lrf \ + $(PDC_DIR)/os2/README $(PDC_DIR)/os2/*.c $(PDC_DIR)/os2/*.h \ + $(PDC_DIR)/os2/*.mak $(PDC_DIR)/os2/*.lrf \ + $(PDC_DIR)/sdl1/README $(PDC_DIR)/sdl1/*.c $(PDC_DIR)/sdl1/*.h \ + $(PDC_DIR)/sdl1/Make* $(PDC_DIR)/win32/README $(PDC_DIR)/win32/*.c \ + $(PDC_DIR)/win32/*.h $(PDC_DIR)/win32/*.mak \ + $(PDC_DIR)/win32/*.ico $(PDC_DIR)/win32/*.rc $(PDC_DIR)/x11/README \ + $(PDC_DIR)/x11/*.c $(PDC_DIR)/x11/*.xbm $(PDC_DIR)/x11/*.h \ + $(PDC_DIR)/x11/Makefile.* $(PDC_DIR)/doc/manext.c \ + $(PDC_DIR)/doc/Makefile | gzip -9 > $(TARBALL)) + +dist: ../$(TARBALL) + +rpm: ../$(TARBALL) + rpmbuild -ba $(srcdir)/PDCurses.spec -- cgit v1.2.3