summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/bazaar/bazaar-1.3.ebuild')
-rw-r--r--dev-util/bazaar/bazaar-1.3.ebuild60
1 files changed, 0 insertions, 60 deletions
diff --git a/dev-util/bazaar/bazaar-1.3.ebuild b/dev-util/bazaar/bazaar-1.3.ebuild
deleted file mode 100644
index 8fffb04cac1f..000000000000
--- a/dev-util/bazaar/bazaar-1.3.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/bazaar/bazaar-1.3.ebuild,v 1.1 2005/04/12 16:49:49 arj Exp $
-
-inherit eutils
-
-S="${WORKDIR}/${P}/src/=build"
-DESCRIPTION="Bazaar is a user-interface branch of tla"
-SRC_URI="http://bazaar.canonical.com/releases/src/bazaar_${PV}.tar.gz
- http://dev.gentoo.org/~arj/baz.1.gz"
-HOMEPAGE="http://bazaar.canonical.com/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DIR="thelove@canonical.com---dists--bazaar--1.3"
-
-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
- >=net-misc/neon-0.24.7
- >=app-crypt/gpgme-1.0.2"
-
-src_unpack() {
- unpack bazaar_${PV}.tar.gz
- unpack baz.1.gz
- mv ${DIR} ${P}
- mkdir "${P}/src/=build"
- cd ${P}
- epatch ${FILESDIR}/baz-gpgme-fix.patch
-}
-
-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}/${P}/
- dodoc =ARCH-USERS-README
- cd ${WORKDIR}/${P}/src
- dodoc COPYING
- dodoc baz/=THANKS
- cd ${WORKDIR}
- doman baz.1
-}