Author: jhuntwork Date: 2005-09-05 12:37:23 -0600 (Mon, 05 Sep 2005) New Revision: 609
Added: x86/trunk/packages/xlockmore/ x86/trunk/packages/xlockmore/Makefile Modified: x86/trunk/Makefile Log: Added xlockmore Modified: x86/trunk/Makefile =================================================================== --- x86/trunk/Makefile 2005-09-05 18:19:15 UTC (rev 608) +++ x86/trunk/Makefile 2005-09-05 18:37:23 UTC (rev 609) @@ -21,35 +21,29 @@ export VERSION := $(ARCH)-6.2-pre1 export KVERS := 2.6.12.3 - # Edit this line to match the mount-point of the partition you'll be using to # build the cd. #============================================================================== export MP := /mnt/lfs - # Timezone, obviously ;) #============================================================================== export timezone := GMT - # Page size for groff #============================================================================== export pagesize := letter - # Top-level of these Makefiles. Edit this if you've named this directory # differently. (The beginning '/' is necessary - this is *not* an absolute file # path.) #============================================================================== export ROOT := /lfs-livecd - # Parallel Build Level #============================================================================== export PM := -j3 - # Default http server for the lfs-base packages #============================================================================== export HTTP := http://ftp.lfs-matrix.de/pub/lfs/lfs-packages/conglomeration @@ -214,8 +208,8 @@ ch-dialog ch-ncftp ch-pciutils ch-nALFS ch-device-mapper ch-LVM2 \ ch-dhcpcd ch-distcc ch-ppp ch-rp-pppoe ch-libaal ch-reiser4progs \ ch-squashfs ch-cpio ch-mutt ch-msmtp ch-slrn ch-mdadm ch-which \ - ch-strace ch-iptables ch-eject ch-linux ch-klibc ch-unionfs \ - ch-initramfs ch-cdrtools ch-blfs-bootscripts ch-syslinux \ + ch-strace ch-iptables ch-eject ch-xlockmore ch-linux ch-klibc \ + ch-unionfs ch-initramfs ch-cdrtools ch-blfs-bootscripts ch-syslinux \ ch-nALFS-profile wget-list: Added: x86/trunk/packages/xlockmore/Makefile =================================================================== --- x86/trunk/packages/xlockmore/Makefile 2005-09-05 18:19:15 UTC (rev 608) +++ x86/trunk/packages/xlockmore/Makefile 2005-09-05 18:37:23 UTC (rev 609) @@ -0,0 +1,56 @@ +# xlockmore Makefile +#============================================================================== + +NM= xlockmore +VRS= 5.19 +DIR= $(NM)-$(VRS) + +FILE= $(DIR).tar.bz2 +URL-$(FILE)= http://www.tux.org/~bagleyd/latest/$(FILE) +SHA-$(FILE)= bd925bac3c8bfbe73eb7023bed1c7d8864ff73aa + +# 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: + @$(call echo_message, Configuring) +#============================================================================== +# Configure commands below \/ +#============================================================================== + @./configure --prefix=/usr >../$(DIR)[EMAIL PROTECTED] 2>&1 +# +#==Status Messages========================================== +# + @$(OK) + @$(call echo_message, Making) +#============================================================================== +# Make commands below \/ +#============================================================================== + @make $(PM) >>../$(DIR)[EMAIL PROTECTED] 2>&1 +# +#==Status Messages=========================================== +# + @$(OK) + @$(call echo_message, Installing) +#============================================================================== +# Install commands below \/ +#============================================================================== + @make install >>../$(DIR)[EMAIL PROTECTED] 2>&1 +# +#==Status Messages=========================================== +# + @$(OK) + +clean: + @-rm -rf $(DIR) + +.PHONY: clean chroot compile-stage2 -- http://linuxfromscratch.org/mailman/listinfo/livecd FAQ: http://www.linuxfromscratch.org/faq/ Unsubscribe: See the above information page
