diff options
author | 2004-02-18 01:54:34 +0000 | |
---|---|---|
committer | 2004-02-18 01:54:34 +0000 | |
commit | 8725786ff2df9e7e1b6cf7d0d25f29932fb7ebdf (patch) | |
tree | 0465cb8eaf86ca0be16eb08c9625a3f9beb9de2b /dev-util | |
parent | version bump (diff) | |
download | gentoo-2-8725786ff2df9e7e1b6cf7d0d25f29932fb7ebdf.tar.gz gentoo-2-8725786ff2df9e7e1b6cf7d0d25f29932fb7ebdf.tar.bz2 gentoo-2-8725786ff2df9e7e1b6cf7d0d25f29932fb7ebdf.zip |
version bump
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/tla/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/tla/Manifest | 4 | ||||
-rw-r--r-- | dev-util/tla/files/digest-tla-1.2_pre2 | 1 | ||||
-rw-r--r-- | dev-util/tla/tla-1.2_pre2.ebuild | 48 |
4 files changed, 57 insertions, 3 deletions
diff --git a/dev-util/tla/ChangeLog b/dev-util/tla/ChangeLog index a4375c757803..7308cbf06272 100644 --- a/dev-util/tla/ChangeLog +++ b/dev-util/tla/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/tla # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/tla/ChangeLog,v 1.5 2004/01/15 19:58:17 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/tla/ChangeLog,v 1.6 2004/02/18 01:54:26 rphillips Exp $ + +*tla-1.2_pre2 (17 Feb 2004) + + 17 Feb 2004; Ryan Phillips <rphillips@gentoo.org> tla-1.2_pre2.ebuild: + Version bump *tla-20040113 (15 Jan 2004) diff --git a/dev-util/tla/Manifest b/dev-util/tla/Manifest index 2f2aa76db593..dc26d910e3ea 100644 --- a/dev-util/tla/Manifest +++ b/dev-util/tla/Manifest @@ -1,7 +1,7 @@ MD5 b66406be8d578da0eaccc851890de68e tla-1.0.6.ebuild 681 MD5 9094dd3f7078e8948216c9bb44c91e5f tla-20040113.ebuild 1224 -MD5 149efdd36fec3fd01380523fdad75c36 ChangeLog 869 -MD5 5edfbc061a48f72814f0e1c074b3b643 tla-1.2_pre2.ebuild 1147 +MD5 650f56a5f3c41cfdf9f0df48149cd6ee ChangeLog 987 +MD5 cc5094b0b12db335891dd2ebd76224ab tla-1.2_pre2.ebuild 1159 MD5 059733ad92a101895ce18a1120b6eb55 metadata.xml 225 MD5 5edfbc061a48f72814f0e1c074b3b643 tla-1.1.ebuild 1147 MD5 6301db02ae76fb7f3c7f8541d143498c files/digest-tla-1.2_pre2 64 diff --git a/dev-util/tla/files/digest-tla-1.2_pre2 b/dev-util/tla/files/digest-tla-1.2_pre2 new file mode 100644 index 000000000000..afa2fc155910 --- /dev/null +++ b/dev-util/tla/files/digest-tla-1.2_pre2 @@ -0,0 +1 @@ +MD5 eb6cfa562c580dd8368890c5c2f8b9c8 tla-1.2pre2.tar.gz 4310444 diff --git a/dev-util/tla/tla-1.2_pre2.ebuild b/dev-util/tla/tla-1.2_pre2.ebuild new file mode 100644 index 000000000000..42e875d37217 --- /dev/null +++ b/dev-util/tla/tla-1.2_pre2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tla/tla-1.2_pre2.ebuild,v 1.1 2004/02/18 01:54:26 rphillips Exp $ + +MY_P="${P/_/}" + +S="${WORKDIR}/${MY_P}/src/=build" +DESCRIPTION="Revision control system ideal for widely distributed development" +SRC_URI="http://arch.quackerhead.com/~lord/releases/tla/${MY_P}.tar.gz" +HOMEPAGE="http://arch.quackerhead.com/~lord/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~alpha ~ppc ~mips ~hppa ~sparc ~arm" + +DEPEND="sys-apps/coreutils + sys-apps/diffutils + sys-devel/patch + sys-apps/findutils + sys-apps/gawk + app-arch/tar + sys-apps/util-linux + sys-apps/debianutils + sys-devel/make" + +src_unpack() { + unpack "${A}" + mkdir "${MY_P}/src/=build" +} + +src_compile() { + ../configure \ + --prefix="/usr" \ + --with-posix-shell="/bin/bash" || die "configure failed" + # parallel make may cause problems with this package + make || die "make failed" +} + +src_install () { + make install prefix="${D}/usr" \ + || die "make install failed" + cd ${WORKDIR}/${MY_P}/src + dodoc COPYING + cd docs-tla + dodoc =README + cd html + dohtml -r . +} |