components/qemu/Makefile
branchoi_151a
changeset 313 3d3a654f57d0
parent 312 b88ea635ba51
child 314 af6efb706a23
--- a/components/qemu/Makefile	Mon Sep 03 19:05:07 2012 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,69 +0,0 @@
-#
-# This file and its contents are supplied under the terms of the
-# Common Development and Distribution License ("CDDL"), version 1.0.
-# You may only use this file in accordance with the terms of version
-# 1.0 of the CDDL.
-#
-# A full copy of the text of the CDDL should have accompanied this
-# source.  A copy of the CDDL is also available via the Internet at
-# http://www.illumos.org/license/CDDL.
-#
-
-#
-# Copyright 2011 Andrzej Szeszo
-# Copyright 2011 Alasdair Lumsden <[email protected]>
-# Copyright 2012, Piotr Jasiukajtis
-#
-
-include ../../make-rules/shared-macros.mk
-
-PATH=	/usr/gnu/bin:/usr/bin
-COMPONENT_NAME=		qemu
-COMPONENT_VERSION=	0.15.0
-COMPONENT_SRC=		$(COMPONENT_NAME)-$(COMPONENT_VERSION)
-COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
-COMPONENT_ARCHIVE_URL=	http://wiki.qemu.org/download/$(COMPONENT_ARCHIVE)
-
-ifeq ($(MACH), sparc)
-PUBLISH_STAMP=
-endif
-
-include ../../make-rules/prep.mk
-include ../../make-rules/configure.mk
-include ../../make-rules/ips.mk
-
-# Documentation requires pod2man
-CONFIGURE_ENV +=	PATH=$(PATH):/usr/perl5/5.10.0/bin
-COMPONENT_BUILD_ENV +=	PATH=$(PATH):/usr/perl5/5.10.0/bin
-
-COMPONENT_PRE_CONFIGURE_ACTION = \
-	$(CLONEY) $(SOURCE_DIR) $(@D)
-
-CONFIGURE_OPTIONS  = --prefix=/usr
-CONFIGURE_OPTIONS += --mandir=/usr/share/man
-CONFIGURE_OPTIONS.32 += --bindir=/usr/bin
-CONFIGURE_OPTIONS.64 += --bindir=/usr/bin/$(MACH64)
-CONFIGURE_OPTIONS.32 += --libdir=/usr/lib
-CONFIGURE_OPTIONS.64 += --libdir=/usr/lib/$(MACH64)
-CONFIGURE_OPTIONS += --sysconfdir=/etc
-CONFIGURE_OPTIONS += --enable-vnc-png
-CONFIGURE_OPTIONS += --enable-docs
-
-CONFIGURE_OPTIONS.32 += --cpu=i386
-CONFIGURE_OPTIONS.64 += --cpu=x86_64
-
-CONFIGURE_OPTIONS += $(CONFIGURE_OPTIONS.$(BITS))
-
-build_sparc:
-	@echo "Not available."
-
-build_i386:	$(BUILD_32_and_64)
-
-build:		build_$(MACH)
-
-install_sparc:
-	@echo "Not available."
-
-install_i386:	$(INSTALL_32_and_64)
-
-install:	install_$(MACH)