Date: Mon, 29 May 2006 03:48:28 GMT From: soc-andrew <soc-andrew@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 98045 for review Message-ID: <200605290348.k4T3mS9v033219@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=98045 Change 98045 by soc-andrew@soc-andrew_serv on 2006/05/29 03:47:53 Add Lua bindings for gettext Reorder the installation of packages Affected files ... .. //depot/projects/soc2005/bsdinstaller/src/release/Makefile#48 edit Differences ... ==== //depot/projects/soc2005/bsdinstaller/src/release/Makefile#48 (text+ko) ==== @@ -823,7 +823,21 @@ # Add the kernel @cp -Rp ${RD}/kernels/GENERIC/ ${RD}/bsdinstaller/root/boot/kernel - # Install Lua into the package root + # Add the required libs to the installer's tree + @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=libaura \ + ROOT=${RD}/bsdinstaller/root + @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=libdfui \ + ROOT=${RD}/bsdinstaller/root + @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=libiconv \ + ROOT=${RD}/bsdinstaller/root + @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=gettext \ + ROOT=${RD}/bsdinstaller/root + + # Add the frontend + @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=dfuife-curses \ + ROOT=${RD}/bsdinstaller/root + + # Add Lua and modules into the installer's tree @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=lua50 \ ROOT=${RD}/bsdinstaller/root @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=lua50-compat51 \ @@ -838,13 +852,9 @@ ROOT=${RD}/bsdinstaller/root @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=lua50-app \ ROOT=${RD}/bsdinstaller/root - @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=libaura \ - ROOT=${RD}/bsdinstaller/root - @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=libdfui \ - ROOT=${RD}/bsdinstaller/root @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=lua50-dfui \ ROOT=${RD}/bsdinstaller/root - @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=dfuife-curses \ + @cd ${.CURDIR} && $(MAKE) installPackage PACKAGE=lua50-gettext \ ROOT=${RD}/bsdinstaller/root @touch ${RD}/bsdinstaller/root/etc/fstab
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605290348.k4T3mS9v033219>