diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-04-02 09:53:56 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-04-02 09:53:56 +0000 |
commit | 5a323a20d20d6c854455ce36eca5cbe41a905aab (patch) | |
tree | e458b00b74ad784a40f5f0596f6f6d783c59ec3d /dev-lang/prothon | |
parent | Removed alsa IUSE. Fixed myconf. Closes bug #46475. (Manifest recommit) (diff) | |
download | gentoo-2-5a323a20d20d6c854455ce36eca5cbe41a905aab.tar.gz gentoo-2-5a323a20d20d6c854455ce36eca5cbe41a905aab.tar.bz2 gentoo-2-5a323a20d20d6c854455ce36eca5cbe41a905aab.zip |
Initial import, ebuild by Lukasz Strzygowski <lucass@gentoo.pl>.
Diffstat (limited to 'dev-lang/prothon')
-rw-r--r-- | dev-lang/prothon/ChangeLog | 10 | ||||
-rw-r--r-- | dev-lang/prothon/Manifest | 2 | ||||
-rw-r--r-- | dev-lang/prothon/files/digest-prothon-0.0.2_p190 | 1 | ||||
-rw-r--r-- | dev-lang/prothon/metadata.xml | 6 | ||||
-rw-r--r-- | dev-lang/prothon/prothon-0.0.2_p190.ebuild | 25 |
5 files changed, 44 insertions, 0 deletions
diff --git a/dev-lang/prothon/ChangeLog b/dev-lang/prothon/ChangeLog new file mode 100644 index 000000000000..7322cec5946f --- /dev/null +++ b/dev-lang/prothon/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-lang/prothon +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/prothon/ChangeLog,v 1.1 2004/04/02 09:53:56 kloeri Exp $ + +*prothon-0.0.2_p190 (02 Apr 2004) + + 02 Apr 2004; Bryan Østergaard <kloeri@gentoo.org> metadata.xml, + prothon-0.0.2_p190.ebuild: + Initial import, ebuild by Lukasz Strzygowski <lucass@gentoo.pl>. + diff --git a/dev-lang/prothon/Manifest b/dev-lang/prothon/Manifest new file mode 100644 index 000000000000..72dfc980d7aa --- /dev/null +++ b/dev-lang/prothon/Manifest @@ -0,0 +1,2 @@ +MD5 db7a814d4dc923ccd0fe4429f63a3176 prothon-0.0.2_p190.ebuild 607 +MD5 53318b104731bf4bb7b7f3938302d0b3 files/digest-prothon-0.0.2_p190 70 diff --git a/dev-lang/prothon/files/digest-prothon-0.0.2_p190 b/dev-lang/prothon/files/digest-prothon-0.0.2_p190 new file mode 100644 index 000000000000..f44584dcd05b --- /dev/null +++ b/dev-lang/prothon/files/digest-prothon-0.0.2_p190 @@ -0,0 +1 @@ +MD5 060f72fc27762140e8293844086b482b prothon-0.0.2-b190.tar.gz 430521 diff --git a/dev-lang/prothon/metadata.xml b/dev-lang/prothon/metadata.xml new file mode 100644 index 000000000000..3320e8a7367c --- /dev/null +++ b/dev-lang/prothon/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>python</herd> +<maintainer><email>kloeri@gentoo.org</email></maintainer> +</pkgmetadata> diff --git a/dev-lang/prothon/prothon-0.0.2_p190.ebuild b/dev-lang/prothon/prothon-0.0.2_p190.ebuild new file mode 100644 index 000000000000..d1bcb311314f --- /dev/null +++ b/dev-lang/prothon/prothon-0.0.2_p190.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/prothon/prothon-0.0.2_p190.ebuild,v 1.1 2004/04/02 09:53:56 kloeri Exp $ + +MY_P=${P/_p/-b} +DESCRIPTION="A classless prototype-based programming language with the sensibilities of Python." +HOMEPAGE="http://www.prothon.org/" +SRC_URI="http://www.prothon.org/pub/${PN}/${MY_P}.tar.gz" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="virtual/glibc + sys-devel/gcc + sys-devel/make + sys-devel/bison + dev-libs/apr + dev-libs/boost" + +S=${WORKDIR}/${MY_P/-b/-r} + +src_install() { + einstall || die + dodoc CHANGES.txt INSTALL LICENSE README.txt STATUS.txt +} |