Author: alexander Date: 2005-12-05 05:57:49 -0700 (Mon, 05 Dec 2005) New Revision: 1221
Added: branches/dm/packages/hfsutils/ branches/dm/packages/hfsutils/Makefile branches/dm/packages/mac-fdisk/ branches/dm/packages/mac-fdisk/Makefile branches/dm/packages/parted/ branches/dm/packages/parted/Makefile Log: Added missing packages to the dm branch Added: branches/dm/packages/hfsutils/Makefile =================================================================== --- branches/dm/packages/hfsutils/Makefile 2005-12-05 12:50:07 UTC (rev 1220) +++ branches/dm/packages/hfsutils/Makefile 2005-12-05 12:57:49 UTC (rev 1221) @@ -0,0 +1,30 @@ +# hfsutils Makefile + +NM= hfsutils +VRS= 3.2.6 +DIR= $(NM)-$(VRS) + +FILE= $(DIR).tar.gz +URL-$(FILE)= ftp://ftp.mars.org/pub/hfs/$(FILE) +SHA-$(FILE)= 6d71dfb2c93c0d8082972d39f3f75ae53a438d5d + +# 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: + ./configure --prefix=/usr + make $(PM) + make install + +clean: + -rm -rf $(DIR) + +.PHONY: clean chroot compile-stage2 Added: branches/dm/packages/mac-fdisk/Makefile =================================================================== --- branches/dm/packages/mac-fdisk/Makefile 2005-12-05 12:50:07 UTC (rev 1220) +++ branches/dm/packages/mac-fdisk/Makefile 2005-12-05 12:57:49 UTC (rev 1221) @@ -0,0 +1,35 @@ +# mac-fdisk Makefile + +NM= mac-fdisk +VRS= 0.1 +DIR= $(NM)-$(VRS).orig + +FILE= $(NM)_$(VRS).orig.tar.gz +URL-$(FILE)= http://ftp.debian.org/debian/pool/main/m/$(NM)/$(FILE) +SHA-$(FILE)= 47013d3d74892d53c31a73e75c32fda2bf173252 + +PATCH1= $(NM)_$(VRS)-11.diff.gz +URL-$(PATCH1)= http://ftp.debian.org/debian/pool/main/m/$(NM)/$(PATCH1) +SHA-$(PATCH1)= e69e4ac0e827b4e6499bfddbc16573585a33fc7b + +# Targets + +include $(ROOT)/scripts/functions + +chroot: + chroot "$(MP)" $(chenv-blfs) \ + 'cd $(ROOT) && make ch-$(NM) $(chbash-post-bash)' + +stage2: Makefile $(FILE) $(PATCH1) + $(std_build) + +compile-stage2: + zcat ../$(PATCH1) > ../$(NM)_$(VRS)-11.diff + patch -Np1 -i ../$(NM)_$(VRS)-11.diff + make + make install + +clean: + -rm -rf $(DIR) + +.PHONY: clean chroot compile-stage2 Added: branches/dm/packages/parted/Makefile =================================================================== --- branches/dm/packages/parted/Makefile 2005-12-05 12:50:07 UTC (rev 1220) +++ branches/dm/packages/parted/Makefile 2005-12-05 12:57:49 UTC (rev 1221) @@ -0,0 +1,30 @@ +# parted Makefile + +NM= parted +VRS= 1.6.25.1 +DIR= $(NM)-$(VRS) + +FILE= $(DIR).tar.gz +URL-$(FILE)= http://ftp.gnu.org/gnu/$(NM)/$(FILE) +SHA-$(FILE)= b7c0d103afde096a4adf5f6783cd0688de471fc9 + +# 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: + ./configure --prefix=/usr + make $(PM) + make install + +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
