diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2015-03-25 14:03:44 +0000 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2015-03-25 14:03:44 +0000 |
commit | 55eb0c67072f091dc28214a26fdc42c01a707f72 (patch) | |
tree | a41996e5ef83af7956a466dc2b92fd3d0a8d3941 /net-libs/xrootd | |
parent | Stable for x86, wrt bug #542788 (diff) | |
download | gentoo-2-55eb0c67072f091dc28214a26fdc42c01a707f72.tar.gz gentoo-2-55eb0c67072f091dc28214a26fdc42c01a707f72.tar.bz2 gentoo-2-55eb0c67072f091dc28214a26fdc42c01a707f72.zip |
remove old
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
(Portage version: 2.2.18/cvs/Linux i686, signed Manifest commit with key 565953B95372756C)
Diffstat (limited to 'net-libs/xrootd')
-rw-r--r-- | net-libs/xrootd/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/xrootd/xrootd-3.2.1.ebuild | 75 |
2 files changed, 4 insertions, 76 deletions
diff --git a/net-libs/xrootd/ChangeLog b/net-libs/xrootd/ChangeLog index 630053ce9ce6..b872d5775cfe 100644 --- a/net-libs/xrootd/ChangeLog +++ b/net-libs/xrootd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/xrootd # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/xrootd/ChangeLog,v 1.23 2015/03/25 13:40:21 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/xrootd/ChangeLog,v 1.24 2015/03/25 14:03:44 bircoph Exp $ + + 25 Mar 2015; Andrew Savchenko <bircoph@gentoo.org> -xrootd-3.2.1.ebuild: + Remove old and broken version. 25 Mar 2015; Agostino Sarubbo <ago@gentoo.org> xrootd-3.3.6.ebuild: Stable for x86, wrt bug #541580 diff --git a/net-libs/xrootd/xrootd-3.2.1.ebuild b/net-libs/xrootd/xrootd-3.2.1.ebuild deleted file mode 100644 index 8c1626312c5b..000000000000 --- a/net-libs/xrootd/xrootd-3.2.1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/xrootd/xrootd-3.2.1.ebuild,v 1.5 2012/12/05 18:19:15 bicatali Exp $ - -EAPI=4 - -inherit cmake-utils eutils user - -DURI="http://xrootd.slac.stanford.edu/doc/prod" - -DESCRIPTION="Extended ROOT remote file server" -HOMEPAGE="http://xrootd.org/" -SRC_URI="${HOMEPAGE}/download/v${PV}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc fuse kerberos perl readline ssl" - -RDEPEND="!<sci-physics/root-5.32[xrootd] - sys-libs/zlib - fuse? ( sys-fs/fuse ) - kerberos? ( virtual/krb5 ) - perl? ( - dev-lang/perl - readline? ( dev-perl/Term-ReadLine-Perl ) - ) - readline? ( sys-libs/readline ) - ssl? ( dev-libs/openssl )" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - perl? ( dev-lang/swig )" - -pkg_setup() { - enewgroup xrootd - enewuser xrootd -1 -1 "${EPREFIX}"/var/spool/xrootd xrootd -} - -src_configure() { - mycmakeargs=( - $(cmake-utils_use_enable fuse) - $(cmake-utils_use_enable kerberos KRB5) - $(cmake-utils_use_enable perl) - $(cmake-utils_use_enable readline) - $(cmake-utils_use_enable ssl CRYPTO) - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - use doc && doxygen Doxyfile -} - -src_install() { - cmake-utils_src_install - - # base configs - insinto /etc/xrootd - doins packaging/common/*.cfg - - fowners root:xrootd /etc/xrootd - keepdir /var/log/xrootd - fowners xrootd:xrootd /var/log/xrootd - - local i - for i in cmsd frm_purged frm_xfrd xrootd; do - newinitd "${FILESDIR}"/${i}.initd ${i} - done - # all daemons MUST use single master config file - newconfd "${FILESDIR}"/xrootd.confd xrootd - - dodoc docs/ReleaseNotes.txt - use doc && dohtml -r doxydoc/html/* -} |