initial ebuild

This commit is contained in:
Anton Bolshakov 2010-09-23 07:02:22 +00:00
parent e427e04cfe
commit 7a2f2c038c
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,2 @@
DIST json-py-3_4.zip 20111 RMD160 76414a399c0260a9b2c9f73946baf1f340a3cdb5 SHA1 6a8e9e27acb07e4e192ddeab34d9cb4dfbd4aac9 SHA256 58da8ae96c973302e3cfc4c682d20d1a5c6a6284426a269bf2c3dc4b58a522a9
EBUILD json-py-3.4-r100.ebuild 842 RMD160 dcd2b30e02e9fbf8fc36c84291a535045d74853e SHA1 990bf544fe42321f221725640ea8ec1f4bebd030 SHA256 cd3f62e3f7bb39c2c19aeb3aa2d56fb2bdec7b92f598af5398fcfbc3d93dcf78

View file

@ -0,0 +1,33 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygoogle/pygoogle-0.6.ebuild,v 1.4 2005/07/02 16:48:16 fserb Exp $
# http://bugs.gentoo.org/show_bug.cgi?id=112451
inherit eutils distutils
MY_PV=${PV/./_}
DESCRIPTION="JSON reader/writer for python."
SRC_URI="mirror://sourceforge/json-py/${PN}-${MY_PV}.zip"
HOMEPAGE="http://sourceforge.net/projects/json-py/"
IUSE=""
SLOT="0"
LICENSE="PYTHON"
KEYWORDS="~x86 ~ppc-macos ~amd64"
DEPEND="virtual/python"
S=${WORKDIR}
src_compile() {
return
}
src_install() {
cd ${S}
# python_version
# insinto /usr/$(get_libdir)/python${PYVER}/site-packages
insinto /usr/$(get_libdir)/python$(python_get_version)/site-packages
doins json.py minjson.py
dodoc changes.txt license.txt readme.txt
}