--- /dev/null
+# ChangeLog for sci-libs/pypiezo
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*pypiezo-9999 (08 Feb 2011)
+ 08 Feb 2011; W. Trevor King <wking@drexel.edu> ChangeLog, metadata.xml, pypiezo-9999.ebuild :
+ - Created ebuild suite for pypiezo.
+ - Added initial ChangeLog which should be updated whenever the
+ package is updated in any way. This changelog is targetted to
+ users. This means that the comments should well explained and
+ written in clean English. The details about writing correct
+ changelogs are explained in the skel.ChangeLog file which you can
+ find in the root directory of the portage repository.
--- /dev/null
+EBUILD pypiezo-9999.ebuild 971 RMD160 851719a2bb0da500555fc6907adbd61b2f5b9d66 SHA1 c6ccb50fc625f868c29965491c1d6c836b2449ea SHA256 430be3b0a30f9fd4606799d8bd5e77f1b0fce04296f5172f51e64846eae4f5a4
+MISC ChangeLog 658 RMD160 f16bbbacb2f7ea4e6cc28632853f8e5477fd8f81 SHA1 14ddde94813234e0097812545d9202895c69870b SHA256 768939c014f1c2b71b1c8cae16e38ed686ccf4d133a78b8238b31294b6465599
+MISC metadata.xml 247 RMD160 6735f3a5dd2d7a2b70589d1693f35d54291b7147 SHA1 c015969fe50967340dd050a44cb9f8a30b5e34a5 SHA256 9e65060e5f9d0a50d28c7a69d9c27fed6c3037fdd3e420cc276627fde2794f72
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd></herd>
+ <maintainer>
+ <email>wking@drexel.edu</email>
+ <name>W. Trevor King</name>
+ </maintainer>
+</pkgmetadata>
--- /dev/null
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="3"
+PYTHON_DEPEND="2:2.6"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
+inherit eutils distutils
+
+if [[ ${PV} == "9999" ]] ; then
+ inherit git
+ EGIT_REPO_URI="http://www.physics.drexel.edu/~wking/code/git/${PN}.git"
+ SRC_URI=""
+else
+ SRC_URI="http://www.physics.drexel.edu/~wking/code/got/gitweb.cgi?p=${PN}.git;a=snapshot;h=v${PV};sf=tgz"
+fi
+
+DESCRIPTION="Piezoelectric positioner control through Python."
+HOMEPAGE="http://http://www.physics.drexel.edu/~wking/unfolding-disasters/posts/${PN}/"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE="test"
+
+RDEPEND="sci-libs/pycomedi
+ dev-python/matplotlib
+ dev-python/numpy
+ sci-libs/scipy"
+DEPEND="$RDEPEND
+ test? ( dev-python/nose )"
+
+src_unpack() {
+ if [[ ${PV} == "9999" ]] ; then
+ git_src_unpack
+ else
+ unpack ${A}
+ fi
+ cd "${S}"
+}
+
+src_install() {
+ distutils_src_install
+ dodoc README
+}