diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-02-24 19:38:19 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-02-24 19:38:19 +0000 |
commit | 5b7d033a241a5e98374fe8725e1ba2b5ba8ec715 (patch) | |
tree | 86d5e3dd5c4f90b17dbe79d789874b6543b38fce /dev-util/treecc | |
parent | Changed ~sparc keyword to sparc. (diff) | |
download | historical-5b7d033a241a5e98374fe8725e1ba2b5ba8ec715.tar.gz historical-5b7d033a241a5e98374fe8725e1ba2b5ba8ec715.tar.bz2 historical-5b7d033a241a5e98374fe8725e1ba2b5ba8ec715.zip |
New package
Diffstat (limited to 'dev-util/treecc')
-rw-r--r-- | dev-util/treecc/ChangeLog | 11 | ||||
-rw-r--r-- | dev-util/treecc/files/digest-treecc-0.2.2 | 1 | ||||
-rw-r--r-- | dev-util/treecc/treecc-0.2.2.ebuild | 28 |
3 files changed, 40 insertions, 0 deletions
diff --git a/dev-util/treecc/ChangeLog b/dev-util/treecc/ChangeLog new file mode 100644 index 000000000000..3a567c52796d --- /dev/null +++ b/dev-util/treecc/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-util/treecc +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/treecc/ChangeLog,v 1.1 2003/02/24 19:38:19 foser Exp $ + +*treecc-0.2.2 (24 Feb 2003) + + 24 Feb 2003; foser <foser@gentoo.org> treecc-0.2.2.ebuild ChangeLog : + Initial commit + Ebuild adapted from the ones provided by + Rainer Groesslinger <rainer.groesslinger@gmx.net> in bug #14148 + diff --git a/dev-util/treecc/files/digest-treecc-0.2.2 b/dev-util/treecc/files/digest-treecc-0.2.2 new file mode 100644 index 000000000000..e75aec666ace --- /dev/null +++ b/dev-util/treecc/files/digest-treecc-0.2.2 @@ -0,0 +1 @@ +MD5 257b86794204f0859a52c97de7c3843a treecc-0.2.2.tar.gz 270861 diff --git a/dev-util/treecc/treecc-0.2.2.ebuild b/dev-util/treecc/treecc-0.2.2.ebuild new file mode 100644 index 000000000000..e613b4c0907b --- /dev/null +++ b/dev-util/treecc/treecc-0.2.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/treecc/treecc-0.2.2.ebuild,v 1.1 2003/02/24 19:38:19 foser Exp $ + +DESCRIPTION="compiler-compiler tool for aspect-oriented programming" +HOMEPAGE="http://www.dotgnu.org/" +SRC_URI="mirror://gnu/dotgnu-pnet/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="sys-devel/bison + sys-devel/flex" + +src_compile() { + econf || die + emake || die +} + +src_install() { + einstall || die + + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README + dodoc doc/*.txt doc/*.html +} |