diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-23 11:22:19 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-23 11:22:19 +0000 |
commit | da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672 (patch) | |
tree | 7d680b4205c3492e6376f2a7517e594663f852cb /dev-util/gcvs | |
parent | repoman'd (diff) | |
download | gentoo-2-da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672.tar.gz gentoo-2-da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672.tar.bz2 gentoo-2-da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672.zip |
repoman'd
Diffstat (limited to 'dev-util/gcvs')
-rw-r--r-- | dev-util/gcvs/files/digest-gcvs-1.0_beta2 | 1 | ||||
-rw-r--r-- | dev-util/gcvs/gcvs-1.0_beta2.ebuild | 46 | ||||
-rw-r--r-- | dev-util/gcvs/gcvs-1.0_beta3.ebuild | 25 |
3 files changed, 17 insertions, 55 deletions
diff --git a/dev-util/gcvs/files/digest-gcvs-1.0_beta2 b/dev-util/gcvs/files/digest-gcvs-1.0_beta2 deleted file mode 100644 index 2f29efd455d0..000000000000 --- a/dev-util/gcvs/files/digest-gcvs-1.0_beta2 +++ /dev/null @@ -1 +0,0 @@ -MD5 78cac5ec6c3463ece10a9b362b3965f7 gcvs-1.0b2.tar.gz 2975242 diff --git a/dev-util/gcvs/gcvs-1.0_beta2.ebuild b/dev-util/gcvs/gcvs-1.0_beta2.ebuild deleted file mode 100644 index b7930af2de10..000000000000 --- a/dev-util/gcvs/gcvs-1.0_beta2.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-util/gcvs/gcvs-1.0_beta2.ebuild,v 1.4 2002/07/11 06:30:25 drobbins Exp $ - -Z="gcvs-1.0b2" -S=${WORKDIR}/${Z} -DESCRIPTION="GUI frontend for CVS from the CVSGUI project" -SRC_URI="mirror://sourceforge/cvsgui/${Z}.tar.gz" -HOMEPAGE="http://cvsgui.sourceforge.net/" - -DEPEND="=x11-libs/gtk+-1.2* >=dev-lang/tcl-8.3.3 sys-devel/perl sys-devel/bison dev-util/glademm" -RDEPEND="=x11-libs/gtk+-1.2* >=dev-lang/tcl-8.3.3 >=dev-util/cvs-1.11-r1" - -src_compile() { - - ./make_configure || die - ./configure --prefix=/usr --host=${CHOST} || die - - # Ladies and Gentlemen... The following is pure evil... - export HOME=${S} - # Yes, thats right... the build process ends up trying to create - # something in root's home directory... why? they use glade, - # a full blown gnome gui application to generate source code... - - # more evil... without this it builds its own copy of cvs - # which of course installs itself on top of the real cvs package - mv Makefile Makefile.old - sed 's|cvsunix||g' Makefile.old > Makefile - - emake all || die - -} - -src_install () { - - make prefix=${D}/usr install - - # note: html docs ignored because they focus on the mac and windows - # version and seem to be of questionable use with gcvs - - dodoc AUTHORS COPYING ChangeLog INSTALL README - - -} - - diff --git a/dev-util/gcvs/gcvs-1.0_beta3.ebuild b/dev-util/gcvs/gcvs-1.0_beta3.ebuild index 23e1d71554f9..c9aa73b393a4 100644 --- a/dev-util/gcvs/gcvs-1.0_beta3.ebuild +++ b/dev-util/gcvs/gcvs-1.0_beta3.ebuild @@ -1,15 +1,26 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-util/gcvs/gcvs-1.0_beta3.ebuild,v 1.2 2002/07/11 06:30:25 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gcvs/gcvs-1.0_beta3.ebuild,v 1.3 2002/07/23 11:22:17 seemant Exp $ -Z="gcvs-1.0b3" -S=${WORKDIR}/${Z} +MY_P=${P/eta/} +MY_P=${MY_P/_/} +S=${WORKDIR}/${MY_P} DESCRIPTION="GUI frontend for CVS from the CVSGUI project" -SRC_URI="mirror://sourceforge/cvsgui/${Z}.tar.gz" +SRC_URI="mirror://sourceforge/cvsgui/${MY_P}.tar.gz" HOMEPAGE="http://cvsgui.sourceforge.net/" -DEPEND="=x11-libs/gtk+-1.2* >=dev-lang/tcl-8.3.3 sys-devel/perl sys-devel/bison dev-util/glademm" -RDEPEND="=x11-libs/gtk+-1.2* >=dev-lang/tcl-8.3.3 >=dev-util/cvs-1.11-r1" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND="=x11-libs/gtk+-1.2* + >=dev-lang/tcl-8.3.3 + sys-devel/perl + sys-devel/bison + dev-util/glademm" + +RDEPEND="${DEPEND} + >=dev-util/cvs-1.11-r1" src_compile() { @@ -42,5 +53,3 @@ src_install () { } - - |