# -*- coding: utf-8; mode: tcl; tab-width: 8; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 # vim: set fileencoding=utf-8 tabstop=8 shiftwidth=4 softtabstop=4 noexpandtab filetype=tcl : # $Id: Portfile 84259 2011-09-21 17:47:13Z ryandesign@macports.org $ PortSystem 1.0 name appengine-java-sdk version 1.3.8 revision 1 categories java devel maintainers 2moro.com.au:dmunneke openmaintainer platforms darwin supported_archs noarch description Google App Engine SDK for Java long_description \ With App Engine, you can build web applications using standard Java technologies \ and run them on Google's scalable infrastructure. The Java environment provides a \ Java 6 JVM, a Java Servlets interface, and support for standard interfaces to the \ App Engine scalable datastore and services, such as JDO, JPA, JavaMail, and JCache. \ Standards support makes developing your application easy and familiar, and also makes \ porting your application to and from your own servlet environment straightforward. homepage http://appengine.google.com/ master_sites googlecode:googleappengine use_zip yes checksums sha1 5395bb75ab8913ec2312e0cd65815e04858e3d33 use_configure no build {} destroot { # Create the target java directory xinstall -m 755 -d ${destroot}${prefix}/share/java/${name} # Copy over the needed elements of our directory tree file copy ${worksrcpath}/bin \ ${worksrcpath}/config \ ${worksrcpath}/demos \ ${worksrcpath}/docs \ ${worksrcpath}/lib \ ${worksrcpath}/ABOUT \ ${worksrcpath}/COPYING \ ${worksrcpath}/README \ ${worksrcpath}/RELEASE_NOTES \ ${worksrcpath}/README.ORM \ ${worksrcpath}/RELEASE_NOTES.ORM \ ${destroot}${prefix}/share/java/${name} } notes \ " Remember to set the environment variable APPENGINE_HOME path: export APPENGINE_HOME=${prefix}/share/java/${name} export PATH=\$PATH:\$APPENGINE_HOME/bin"