diff options
author | Todd Berman <tberman@gentoo.org> | 2003-05-24 19:58:22 +0000 |
---|---|---|
committer | Todd Berman <tberman@gentoo.org> | 2003-05-24 19:58:22 +0000 |
commit | c51be618697282be3ec7f7712b25e7d4c3267f98 (patch) | |
tree | bc5a92aaafcc91dce3d94f4887b10a3d2bca83b1 /media-sound/positron | |
parent | Initial Import. (diff) | |
download | historical-c51be618697282be3ec7f7712b25e7d4c3267f98.tar.gz historical-c51be618697282be3ec7f7712b25e7d4c3267f98.tar.bz2 historical-c51be618697282be3ec7f7712b25e7d4c3267f98.zip |
Initial Import.
Diffstat (limited to 'media-sound/positron')
-rw-r--r-- | media-sound/positron/Manifest | 3 | ||||
-rw-r--r-- | media-sound/positron/files/digest-positron-1.0_beta1 | 1 | ||||
-rw-r--r-- | media-sound/positron/positron-1.0_beta1.ebuild | 27 |
3 files changed, 30 insertions, 1 deletions
diff --git a/media-sound/positron/Manifest b/media-sound/positron/Manifest index aafdf1ba0017..9378c1bf1678 100644 --- a/media-sound/positron/Manifest +++ b/media-sound/positron/Manifest @@ -1,2 +1,3 @@ -MD5 232f01980a2788a9786b8e995231737d positron-1.0_beta1.ebuild 629 +MD5 8d4fccd08a6f563ab9c90e1e995b5e35 positron-1.0_beta1.ebuild 739 +MD5 db94a2abf33db67a4fc5453d379a4f4b ChangeLog 352 MD5 72627860f86fdde3f1f0256b69ab7cdf files/digest-positron-1.0_beta1 65 diff --git a/media-sound/positron/files/digest-positron-1.0_beta1 b/media-sound/positron/files/digest-positron-1.0_beta1 new file mode 100644 index 000000000000..f35b7b9bcb4d --- /dev/null +++ b/media-sound/positron/files/digest-positron-1.0_beta1 @@ -0,0 +1 @@ +MD5 b38f2c08853a582cc8fdbfe23615fddf positron-1.0b1.tar.gz 80345 diff --git a/media-sound/positron/positron-1.0_beta1.ebuild b/media-sound/positron/positron-1.0_beta1.ebuild new file mode 100644 index 000000000000..5fbae1ee0815 --- /dev/null +++ b/media-sound/positron/positron-1.0_beta1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/positron/positron-1.0_beta1.ebuild,v 1.1 2003/05/24 19:58:18 tberman Exp $ + +MY_PV="1.0b1" + +DESCRIPTION="Synchronization manager for the Neuros Audio Computer (www.neurosaudio.com) portable music player." +HOMEPAGE="http://www.xiph.org/positron" +SRC_URI="http://www.xiph.org/positron/files/source/${PN}-${MY_PV}.tar.gz" +LICENSE="xiph" +SLOT="0" + +KEYWORDS="~x86 ~ppc" +IUSE="" + +DEPEND=">=dev-lang/python-2.2" + +S=${WORKDIR}/${PN}-${MY_PV} + +src_compile() { + einfo "No compilation required" +} + +src_install() { + chmod +x setup.py + ./setup.py install --root ${D} || die +} |