diff options
Diffstat (limited to 'dev-util/cogito/cogito-0.10.ebuild')
-rw-r--r-- | dev-util/cogito/cogito-0.10.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-util/cogito/cogito-0.10.ebuild b/dev-util/cogito/cogito-0.10.ebuild deleted file mode 100644 index 428bf9396061..000000000000 --- a/dev-util/cogito/cogito-0.10.ebuild +++ /dev/null @@ -1,45 +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/cogito/cogito-0.10.ebuild,v 1.2 2005/05/17 22:26:14 r3pek Exp $ - -inherit eutils - -DESCRIPTION="The GIT scripted toolkit" -HOMEPAGE="http://kernel.org/pub/software/scm/cogito/" -SRC_URI="http://kernel.org/pub/software/scm/cogito/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64 ~ppc" -IUSE="mozsha1 ppcsha1" - -DEPEND="dev-libs/openssl - sys-libs/zlib - !dev-util/git" -RDEPEND="net-misc/rsync - app-text/rcs - net-misc/curl" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/Makefile.patch - sed -i \ - -e "/^CFLAGS/s:-g -O2:${CFLAGS}:" \ - Makefile -} - -src_compile() { - if use mozsha1 ; then - export MOZILLA_SHA1=yes - elif use ppcsha1 ; then - export PPC_SHA1=yes - fi - - emake || die "emake failed" -} - -src_install() { - make install DESTDIR="${D}" || die "install failed" - dodoc README* -} |