summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-11-18 02:24:44 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-11-18 02:24:44 +0000
commit823e1528d423241d59bf4c338cf4d59d1071f194 (patch)
tree011480e90104589b4fb026e043d8251dbe1a55e6 /dev-util/monotone
parentls (diff)
downloadgentoo-2-823e1528d423241d59bf4c338cf4d59d1071f194.tar.gz
gentoo-2-823e1528d423241d59bf4c338cf4d59d1071f194.tar.bz2
gentoo-2-823e1528d423241d59bf4c338cf4d59d1071f194.zip
Updating boost dependency version (bug #90457)
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'dev-util/monotone')
-rw-r--r--dev-util/monotone/ChangeLog6
-rw-r--r--dev-util/monotone/files/digest-monotone-0.171
-rw-r--r--dev-util/monotone/files/digest-monotone-0.221
-rw-r--r--dev-util/monotone/monotone-0.17.ebuild67
-rw-r--r--dev-util/monotone/monotone-0.18.ebuild4
-rw-r--r--dev-util/monotone/monotone-0.19.ebuild4
-rw-r--r--dev-util/monotone/monotone-0.22.ebuild85
7 files changed, 9 insertions, 159 deletions
diff --git a/dev-util/monotone/ChangeLog b/dev-util/monotone/ChangeLog
index 239c520d2f23..06d846667135 100644
--- a/dev-util/monotone/ChangeLog
+++ b/dev-util/monotone/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/monotone
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/monotone/ChangeLog,v 1.21 2005/10/17 19:36:25 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/monotone/ChangeLog,v 1.22 2005/11/18 02:24:44 leonardop Exp $
+
+ 18 Nov 2005; Leonardo Boshell <leonardop@gentoo.org> monotone-0.18.ebuild,
+ monotone-0.19.ebuild:
+ Updated boost dependency version to >=1.32.0 (bug #90457).
*monotone-0.23-r1 (17 Oct 2005)
diff --git a/dev-util/monotone/files/digest-monotone-0.17 b/dev-util/monotone/files/digest-monotone-0.17
deleted file mode 100644
index 72ecc7f58f47..000000000000
--- a/dev-util/monotone/files/digest-monotone-0.17
+++ /dev/null
@@ -1 +0,0 @@
-MD5 a412ce38f5e91a210363bf8811639d96 monotone-0.17.tar.gz 4001679
diff --git a/dev-util/monotone/files/digest-monotone-0.22 b/dev-util/monotone/files/digest-monotone-0.22
deleted file mode 100644
index f30334a2cc88..000000000000
--- a/dev-util/monotone/files/digest-monotone-0.22
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ee0f25577b8a640df3015113e67bb718 monotone-0.22.tar.gz 5038069
diff --git a/dev-util/monotone/monotone-0.17.ebuild b/dev-util/monotone/monotone-0.17.ebuild
deleted file mode 100644
index 0ee593667024..000000000000
--- a/dev-util/monotone/monotone-0.17.ebuild
+++ /dev/null
@@ -1,67 +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/monotone/monotone-0.17.ebuild,v 1.6 2005/06/15 20:37:32 leonardop Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="Monotone Distributed Version Control System"
-HOMEPAGE="http://www.venge.net/monotone/"
-SRC_URI="http://www.venge.net/monotone/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="${PV}"
-KEYWORDS="x86 amd64 ~ppc"
-
-IUSE="nls doc"
-
-RDEPEND=">=dev-libs/boost-1.31.0
- dev-libs/popt"
-DEPEND="${RDEPEND}
- >=sys-devel/gcc-3.2
- sys-devel/gettext"
-# doc? ( dev-lang/perl sys-apps/texinfo )"
-
-src_compile() {
-
- # more aggressive optimizations cause trouble with the
- # crypto library
- # disable stack protector
-
- strip-flags
- # replace-flags -O3 -O2
- append-flags -fno-stack-protector-all -fno-stack-protector -fno-strict-aliasing
-
- econf `use_enable nls` || die
- emake || die "emake failed"
-}
-
-src_test() {
- make check || die "self test failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- if use doc ; then
- dodoc figures/*.pdf
- # Generate html docs - broken - missing images from figures directory
- # emake html || die "emake html failed"
- # dohtml -r html/*
- fi
-
-
- dodoc NEWS
- dodoc UPGRADE
-
- # Slotting
- OLD_N=${PN}
- NEW_N=${PN}-${PV}
- cd ${D}/usr
- mv bin/${OLD_N} bin/${NEW_N}
- mv share/info/${OLD_N}.info share/info/${NEW_N}.info
- mv share/man/man1/${OLD_N}.1 share/man/man1/${NEW_N}.1
-
- ewarn "For incopatibility reasons new monotone binary was renamed to \"${NEW_N}\""
- ewarn "If you want to use new features of ${PN} you have to upgrade your existing"
- ewarn "databases as described in /usr/share/doc/${P}/UPGRAGE.gz document."
-}
diff --git a/dev-util/monotone/monotone-0.18.ebuild b/dev-util/monotone/monotone-0.18.ebuild
index 44e6bd7f4473..31b2495f73aa 100644
--- a/dev-util/monotone/monotone-0.18.ebuild
+++ b/dev-util/monotone/monotone-0.18.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/monotone/monotone-0.18.ebuild,v 1.4 2005/06/15 20:37:32 leonardop Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/monotone/monotone-0.18.ebuild,v 1.5 2005/11/18 02:24:44 leonardop Exp $
inherit eutils flag-o-matic
@@ -14,7 +14,7 @@ KEYWORDS="x86 amd64 ppc"
IUSE="nls doc"
-RDEPEND=">=dev-libs/boost-1.31.0"
+RDEPEND=">=dev-libs/boost-1.32.0"
DEPEND="${RDEPEND}
>=sys-devel/gcc-3.2
diff --git a/dev-util/monotone/monotone-0.19.ebuild b/dev-util/monotone/monotone-0.19.ebuild
index 746bc62596fe..d3c0ea03656f 100644
--- a/dev-util/monotone/monotone-0.19.ebuild
+++ b/dev-util/monotone/monotone-0.19.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/monotone/monotone-0.19.ebuild,v 1.3 2005/06/17 20:09:26 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/monotone/monotone-0.19.ebuild,v 1.4 2005/11/18 02:24:44 leonardop Exp $
inherit flag-o-matic
@@ -14,7 +14,7 @@ KEYWORDS="~amd64 ppc x86"
IUSE="doc ipv6 nls"
-RDEPEND=">=dev-libs/boost-1.31"
+RDEPEND=">=dev-libs/boost-1.32"
DEPEND="${RDEPEND}
>=sys-devel/gcc-3.2
diff --git a/dev-util/monotone/monotone-0.22.ebuild b/dev-util/monotone/monotone-0.22.ebuild
deleted file mode 100644
index b878126fdfa8..000000000000
--- a/dev-util/monotone/monotone-0.22.ebuild
+++ /dev/null
@@ -1,85 +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/monotone/monotone-0.22.ebuild,v 1.1 2005/08/09 14:15:53 leonardop Exp $
-
-inherit elisp-common flag-o-matic
-
-DESCRIPTION="Monotone Distributed Version Control System"
-HOMEPAGE="http://www.venge.net/monotone/"
-SRC_URI="http://www.venge.net/${PN}/downloads/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-IUSE="doc emacs ipv6 nls"
-
-RDEPEND=">=dev-libs/boost-1.32
- emacs? ( virtual/emacs )"
-
-DEPEND="${RDEPEND}
- >=sys-devel/gcc-3.2
- nls? ( >=sys-devel/gettext-0.12.1 )
- doc? ( sys-apps/texinfo )"
-
-SITEFILE="30monotone-gentoo.el"
-
-
-src_compile() {
- local myconf="$(use_enable nls) $(use_enable ipv6)"
-
- # more aggressive optimizations cause trouble with the crypto library
- strip-flags
- append-flags -fno-stack-protector-all -fno-stack-protector \
- -fno-strict-aliasing
-
- econf ${myconf} || die "configure failed"
- emake || die "emake failed"
-
- use doc && make html
-
- use emacs && elisp-compile contrib/*.el
-}
-
-src_test() {
- make check || die "self test failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
-
- if use doc; then
- dohtml -r html/*
- dohtml -r figures
- fi
-
- if use emacs; then
- elisp-install ${PN} contrib/*.{el,elc}
- elisp-site-file-install ${FILESDIR}/${SITEFILE}
- fi
-
- dodoc ABOUT-NLS AUTHORS ChangeLog NEWS README* UPGRADE
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-
- einfo
- einfo "If you are upgrading from:"
- einfo " - 0.21 or earlier: hooks governing netsync read permission have"
- einfo " changed again; see /usr/share/doc/${PF}/NEWS.gz"
- einfo " - 0.20 or earlier: you need to run 'db migrate' against each of"
- einfo " your databases."
- einfo " - 0.19 or earlier: there are some command line and server"
- einfo " configuration changes; see /usr/share/doc/${PF}/NEWS.gz"
- einfo " - 0.18 or earlier: if you have created a ~/.monotonerc, rename"
- einfo " it to ~/.monotone/monotonerc, so monotone will still find it."
- einfo
- einfo "For instructions to upgrade from previous versions, please read"
- einfo "/usr/share/doc/${PF}/UPGRADE.gz"
- einfo
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}