Author: alexander
Date: 2005-10-01 02:07:09 -0600 (Sat, 01 Oct 2005)
New Revision: 808
Added:
x86/branches/utf8-newmake/packages/man-fr/
x86/branches/utf8-newmake/packages/man-fr/Makefile
x86/branches/utf8-newmake/packages/man-pages-es/
x86/branches/utf8-newmake/packages/man-pages-es/Makefile
x86/branches/utf8-newmake/packages/man-pages-it/
x86/branches/utf8-newmake/packages/man-pages-it/Makefile
x86/branches/utf8-newmake/packages/manpages-de/
x86/branches/utf8-newmake/packages/manpages-de/Makefile
x86/branches/utf8-newmake/packages/manpages-ru/
x86/branches/utf8-newmake/packages/manpages-ru/Makefile
Modified:
x86/branches/utf8-newmake/Makefile
Log:
Added translations of manual pages
Modified: x86/branches/utf8-newmake/Makefile
===================================================================
--- x86/branches/utf8-newmake/Makefile 2005-09-30 15:16:47 UTC (rev 807)
+++ x86/branches/utf8-newmake/Makefile 2005-10-01 08:07:09 UTC (rev 808)
@@ -222,6 +222,7 @@
ch-squashfs ch-cpio ch-mutt ch-msmtp ch-tin ch-mdadm ch-which \
ch-strace ch-iptables ch-eject ch-xlockmore ch-hdparm ch-linux \
ch-ctags ch-initramfs ch-cdrtools ch-blfs-bootscripts \
+ ch-man-fr ch-man-pages-es ch-man-pages-it ch-manpages-de ch-manpages-ru
\
ch-syslinux ch-nALFS-profile
ifeq ($(LFS-ARCH),ppc)
@make ch-yaboot
@@ -461,6 +462,8 @@
@find packages/* -xtype l -exec rm -f \{} \;
unmount:
+# FIXME: kill only udevd in the chroot, not the main system's one
+ @-killall udevd
@-umount $(MP)/dev/shm
@-umount $(MP)/dev/pts
@-umount $(MP)/dev
Added: x86/branches/utf8-newmake/packages/man-fr/Makefile
===================================================================
--- x86/branches/utf8-newmake/packages/man-fr/Makefile 2005-09-30 15:16:47 UTC
(rev 807)
+++ x86/branches/utf8-newmake/packages/man-fr/Makefile 2005-10-01 08:07:09 UTC
(rev 808)
@@ -0,0 +1,28 @@
+# man-fr Makefile
+
+NM= man-fr
+VRS= 1.58
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).0.tar.bz2
+URL-$(FILE)= http://ccb.club.fr/man/$(FILE)
+SHA-$(FILE)= e95ac5648dff7fb8855abc7a5c4e59aa1dd81125
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ cp -r man? /usr/share/man/fr
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: compile-stage1 clean chroot compile-stage2
Added: x86/branches/utf8-newmake/packages/man-pages-es/Makefile
===================================================================
--- x86/branches/utf8-newmake/packages/man-pages-es/Makefile 2005-09-30
15:16:47 UTC (rev 807)
+++ x86/branches/utf8-newmake/packages/man-pages-es/Makefile 2005-10-01
08:07:09 UTC (rev 808)
@@ -0,0 +1,33 @@
+# man-pages-es Makefile
+
+NM= man-pages-es
+VRS= 1.55
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).tar.bz2
+URL-$(FILE)= http://ditec.um.es/~piernas/manpages-es/$(FILE)
+SHA-$(FILE)= 1d72e80d0c41f9e5c24ba6a4eea161fc151ec5b5
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ find man? -type f | \
+ grep -v 'man7/iso_8859-2.7' | grep -v 'man7/iso_8859-7.7' | \
+ while read F ; do \
+ iconv -f UTF-8 -t ISO-8859-1 $$F >tmp ; mv tmp $$F ; \
+ done
+ cp -r man? /usr/share/man/es
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: compile-stage1 clean chroot compile-stage2
Added: x86/branches/utf8-newmake/packages/man-pages-it/Makefile
===================================================================
--- x86/branches/utf8-newmake/packages/man-pages-it/Makefile 2005-09-30
15:16:47 UTC (rev 807)
+++ x86/branches/utf8-newmake/packages/man-pages-it/Makefile 2005-10-01
08:07:09 UTC (rev 808)
@@ -0,0 +1,31 @@
+# man-pages-it Makefile
+
+NM= man-pages-it
+VRS= 0.3.4
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).tar.gz
+URL-$(FILE)= http://ftp.pluto.it/pub/pluto/ildp/man/$(FILE)
+SHA-$(FILE)= e5014f209afddaf2e468f1b28446b9acf9facd55
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ @mkdir $(DIR)
+ @cd $(DIR) ; unpack ../$(FILE)
+ @make -C $(DIR) -f ../Makefile compile-$@ >>$(DIR)[EMAIL PROTECTED] 2>&1
+ @make clean
+
+compile-stage2:
+ cp -r man? /usr/share/man/it
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: compile-stage1 clean chroot compile-stage2
Added: x86/branches/utf8-newmake/packages/manpages-de/Makefile
===================================================================
--- x86/branches/utf8-newmake/packages/manpages-de/Makefile 2005-09-30
15:16:47 UTC (rev 807)
+++ x86/branches/utf8-newmake/packages/manpages-de/Makefile 2005-10-01
08:07:09 UTC (rev 808)
@@ -0,0 +1,28 @@
+# manpages-de Makefile
+
+NM= manpages-de
+VRS= 0.4
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).tar.gz
+URL-$(FILE)= http://www.infodrom.org/projects/manpages-de/download/$(FILE)
+SHA-$(FILE)= 0ab8d3350aca0db90b04aab201bbc3f1b7016375
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ cp -r man? /usr/share/man/de
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: compile-stage1 clean chroot compile-stage2
Added: x86/branches/utf8-newmake/packages/manpages-ru/Makefile
===================================================================
--- x86/branches/utf8-newmake/packages/manpages-ru/Makefile 2005-09-30
15:16:47 UTC (rev 807)
+++ x86/branches/utf8-newmake/packages/manpages-ru/Makefile 2005-10-01
08:07:09 UTC (rev 808)
@@ -0,0 +1,28 @@
+# manpages-ru Makefile
+
+NM= manpages-ru
+VRS= 0.98
+DIR= $(NM)-$(VRS)
+
+FILE= $(DIR).tar.bz2
+URL-$(FILE)= http://www.linuxshare.ru/projects/trans/$(FILE)
+SHA-$(FILE)= b5eb5ae4eaa7abc7e4065cf7286efc03106379a1
+
+# Targets
+
+include $(ROOT)/scripts/functions
+
+chroot:
+ chroot "$(MP)" $(chenv-blfs) \
+ 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)'
+
+stage2: Makefile $(FILE)
+ $(std_build)
+
+compile-stage2:
+ cp -r man? /usr/share/man/ru
+
+clean:
+ -rm -rf $(DIR)
+
+.PHONY: compile-stage1 clean chroot compile-stage2
--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page