diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-07-03 09:54:33 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-07-03 09:54:33 +0000 |
commit | 1ac0fc208904aa508a1c59f2cbdcafa81167a53e (patch) | |
tree | 859aaecc4a7fe19e6f274a287846336ba2c1d30f /net-misc/unison | |
parent | Cleaning (diff) | |
download | gentoo-2-1ac0fc208904aa508a1c59f2cbdcafa81167a53e.tar.gz gentoo-2-1ac0fc208904aa508a1c59f2cbdcafa81167a53e.tar.bz2 gentoo-2-1ac0fc208904aa508a1c59f2cbdcafa81167a53e.zip |
remove unslotted version
(Portage version: 2.2_rc1/cvs/Linux 2.6.25.7 x86_64)
Diffstat (limited to 'net-misc/unison')
-rw-r--r-- | net-misc/unison/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/unison/unison-2.13.16.ebuild | 70 |
2 files changed, 4 insertions, 71 deletions
diff --git a/net-misc/unison/ChangeLog b/net-misc/unison/ChangeLog index 50b135036417..133049320e53 100644 --- a/net-misc/unison/ChangeLog +++ b/net-misc/unison/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/unison # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.57 2008/06/30 20:38:21 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.58 2008/07/03 09:54:33 aballier Exp $ + + 03 Jul 2008; Alexis Ballier <aballier@gentoo.org> -unison-2.13.16.ebuild: + remove unslotted version 30 Jun 2008; Raúl Porcel <armin76@gentoo.org> unison-2.27.57-r1.ebuild: sparc stable wrt #229187 diff --git a/net-misc/unison/unison-2.13.16.ebuild b/net-misc/unison/unison-2.13.16.ebuild deleted file mode 100644 index a97ace6ccd77..000000000000 --- a/net-misc/unison/unison-2.13.16.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.13.16.ebuild,v 1.7 2008/06/16 20:51:23 aballier Exp $ - -inherit eutils - -IUSE="gtk doc static debug threads" - -DESCRIPTION="Two-way cross-platform file synchronizer" -HOMEPAGE="http://www.cis.upenn.edu/~bcpierce/unison/" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ppc ~amd64 sparc" - -DEPEND=">=dev-lang/ocaml-3.04 - gtk? ( >=dev-ml/lablgtk-2.2 )" - -RDEPEND="gtk? ( >=dev-ml/lablgtk-2.2 -|| ( net-misc/x11-ssh-askpass net-misc/gtk2-ssh-askpass ) )" - -PDEPEND="gtk? ( media-fonts/font-schumacher-misc )" - -SRC_URI="http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${P}/${P}.tar.gz -doc? ( http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${P}/${P}-manual.pdf - http://www.cis.upenn.edu/~bcpierce/unison/download/releases/${P}/${P}-manual.html )" - -src_unpack() { - unpack ${P}.tar.gz - - # Fix for coreutils change of tail syntax - cd "${S}" - sed -i -e 's/tail -1/tail -n 1/' Makefile.OCaml -} - -src_compile() { - local myconf - - if use threads; then - myconf="$myconf THREADS=true" - fi - - if use static; then - myconf="$myconf STATIC=true" - fi - - if use debug; then - myconf="$myconf DEBUGGING=true" - fi - - if use gtk; then - myconf="$myconf UISTYLE=gtk2" - else - myconf="$myconf UISTYLE=text" - fi - - make $myconf CFLAGS="" || die "error making unsion" -} - -src_install () { - # install manually, since it's just too much - # work to force the Makefile to do the right thing. - dobin unison || die - dodoc BUGS.txt CONTRIB INSTALL NEWS \ - README ROADMAP.txt TODO.txt || die - - if use doc; then - dohtml "${DISTDIR}/${P}-manual.html" || die - dodoc "${DISTDIR}/${P}-manual.pdf" || die - fi -} |