diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-10-20 04:53:45 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-10-20 04:53:45 +0000 |
commit | cc4757a2b097e5cab26cc070544fad0b31a65891 (patch) | |
tree | ddf452d5000dc2500750f82bb1b8bb2132667093 /dev-util | |
parent | Version bump (diff) | |
download | gentoo-2-cc4757a2b097e5cab26cc070544fad0b31a65891.tar.gz gentoo-2-cc4757a2b097e5cab26cc070544fad0b31a65891.tar.bz2 gentoo-2-cc4757a2b097e5cab26cc070544fad0b31a65891.zip |
Version bump
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/tla/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/tla/Manifest | 5 | ||||
-rw-r--r-- | dev-util/tla/files/digest-tla-1.1_pre7 | 1 | ||||
-rw-r--r-- | dev-util/tla/metadata.xml | 8 | ||||
-rw-r--r-- | dev-util/tla/tla-1.1_pre7.ebuild | 48 |
5 files changed, 66 insertions, 3 deletions
diff --git a/dev-util/tla/ChangeLog b/dev-util/tla/ChangeLog index 26bc8c00c67d..eb1e3f62c76b 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.1 2003/07/31 20:48:42 rphillips Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/tla/ChangeLog,v 1.2 2003/10/20 04:53:41 rphillips Exp $ + +*tla-1.1_pre7.ebuild + + 19 Oct 2003; Ryan Phillips <rphillips@gentoo.org> tla-1.1_pre7.ebuild : + Added Ben Cornett's updated ebuild. Fixes #25945 *tla-1.0.6 (31 Jul 2003) diff --git a/dev-util/tla/Manifest b/dev-util/tla/Manifest index 1ee8bee04ccc..cfaccce7ee58 100644 --- a/dev-util/tla/Manifest +++ b/dev-util/tla/Manifest @@ -1,5 +1,6 @@ MD5 34deae1caace6bf18d42eed1121a20e6 tla-1.0.6.ebuild 680 -MD5 1d58fd77bd743b61d88a83bbf3a87803 tla-1.1_pre7.ebuild 1157 -MD5 e847024242f6461c5a7d8349b8af5db2 ChangeLog 341 +MD5 02e8f844dd73cee0a42a4a1e0a2b01d0 tla-1.1_pre7.ebuild 1159 +MD5 25f5f229835acaa0b0d00d51392add31 ChangeLog 489 +MD5 059733ad92a101895ce18a1120b6eb55 metadata.xml 225 MD5 a60061c045de31b1a76d726434516598 files/digest-tla-1.1_pre7 64 MD5 4b643d505f794a0b0eca53e21efb3074 files/digest-tla-1.0.6 62 diff --git a/dev-util/tla/files/digest-tla-1.1_pre7 b/dev-util/tla/files/digest-tla-1.1_pre7 new file mode 100644 index 000000000000..d92ab11acbb5 --- /dev/null +++ b/dev-util/tla/files/digest-tla-1.1_pre7 @@ -0,0 +1 @@ +MD5 98542bdbcaf2e6146f41ba90a7643fc0 tla-1.1pre7.tar.gz 3350901 diff --git a/dev-util/tla/metadata.xml b/dev-util/tla/metadata.xml new file mode 100644 index 000000000000..fc52d7ba53dd --- /dev/null +++ b/dev-util/tla/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>rphillips@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/dev-util/tla/tla-1.1_pre7.ebuild b/dev-util/tla/tla-1.1_pre7.ebuild new file mode 100644 index 000000000000..7aaf1d9ea8b9 --- /dev/null +++ b/dev-util/tla/tla-1.1_pre7.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tla/tla-1.1_pre7.ebuild,v 1.1 2003/10/20 04:53:41 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 + sys-apps/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 . +} |