# -*-makefile-*- # # Copyright (C) 2011 by Tim Sander # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # HOST_PACKAGES-$(PTXCONF_HOST_GCHART) += host-gchart # # Paths and names # HOST_GCHART_VERSION := 2.7 HOST_GCHART := gchart-$(HOST_GCHART_VERSION) HOST_GCHART_SUFFIX := zip HOST_GCHART_URL := http://clientsidegchart.googlecode.com/files/$(HOST_GCHART).$(HOST_GCHART_SUFFIX) HOST_GCHART_SOURCE := $(SRCDIR)/$(HOST_GCHART).$(HOST_GCHART_SUFFIX) HOST_GCHART_DIR := $(HOST_BUILDDIR)/$(HOST_GCHART) HOST_GCHART_LICENSE := Apache2.0 # ---------------------------------------------------------------------------- # Get # ---------------------------------------------------------------------------- $(HOST_GCHART_SOURCE): @$(call targetinfo) @$(call get, HOST_GCHART) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- $(STATEDIR)/host-gchart.prepare: @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Extract # ---------------------------------------------------------------------------- $(STATEDIR)/host-gchart.extract: @$(call targetinfo) @$(call clean) @$(call extract, HOST_GCHART, $(HOST_GCHART_DIR)) @$(call touch) # ---------------------------------------------------------------------------- # Compile # ---------------------------------------------------------------------------- $(STATEDIR)/host-gchart.compile: @$(call targetinfo) @$(call touch) # ---------------------------------------------------------------------------- # Install # ---------------------------------------------------------------------------- $(STATEDIR)/host-gchart.install: @$(call targetinfo) @$(call touch) # vim: syntax=make