diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-04-12 19:08:38 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-04-12 19:08:38 +0000 |
commit | 1cef839bf378841722a6536a77616782fe0b1576 (patch) | |
tree | 7f2f4d17ee31d99ed50bf845192c19b8a2bd16b7 /app-admin/xstow | |
parent | Remove old. (diff) | |
download | gentoo-2-1cef839bf378841722a6536a77616782fe0b1576.tar.gz gentoo-2-1cef839bf378841722a6536a77616782fe0b1576.tar.bz2 gentoo-2-1cef839bf378841722a6536a77616782fe0b1576.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-admin/xstow')
-rw-r--r-- | app-admin/xstow/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/xstow/xstow-0.5.1.ebuild | 34 | ||||
-rw-r--r-- | app-admin/xstow/xstow-1.0.0.ebuild | 51 |
3 files changed, 5 insertions, 86 deletions
diff --git a/app-admin/xstow/ChangeLog b/app-admin/xstow/ChangeLog index a7e2f739e956..416aa5670c66 100644 --- a/app-admin/xstow/ChangeLog +++ b/app-admin/xstow/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/xstow # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/ChangeLog,v 1.22 2015/03/28 21:45:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/ChangeLog,v 1.23 2015/04/12 19:08:38 mrueg Exp $ + + 12 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -xstow-0.5.1.ebuild, + -xstow-1.0.0.ebuild: + Remove old. 28 Mar 2015; Agostino Sarubbo <ago@gentoo.org> xstow-1.0.1.ebuild: Stable for ppc, wrt bug #538222 diff --git a/app-admin/xstow/xstow-0.5.1.ebuild b/app-admin/xstow/xstow-0.5.1.ebuild deleted file mode 100644 index c1a643ed7f36..000000000000 --- a/app-admin/xstow/xstow-0.5.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/xstow-0.5.1.ebuild,v 1.5 2013/05/10 06:11:33 patrick Exp $ - -inherit eutils - -DESCRIPTION="replacement for GNU stow with extensions" -HOMEPAGE="http://xstow.sourceforge.net/" -SRC_URI="mirror://sourceforge/xstow/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc x86" -IUSE="ncurses" - -DEPEND="ncurses? ( sys-libs/ncurses )" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc43.patch -} - -src_compile() { - econf --disable-dependency-tracking $(use_with ncurses curses) - emake || die "emake failed." -} - -src_install() { - emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}/html" \ - install || die "emake install failed." - dodoc AUTHORS ChangeLog NEWS README TODO -} diff --git a/app-admin/xstow/xstow-1.0.0.ebuild b/app-admin/xstow/xstow-1.0.0.ebuild deleted file mode 100644 index 21ea569801d7..000000000000 --- a/app-admin/xstow/xstow-1.0.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/xstow/xstow-1.0.0.ebuild,v 1.3 2013/05/10 06:11:33 patrick Exp $ - -inherit eutils - -DESCRIPTION="replacement for GNU stow with extensions" -HOMEPAGE="http://xstow.sourceforge.net/" -SRC_URI="mirror://sourceforge/xstow/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="ncurses static" - -DEPEND="ncurses? ( sys-libs/ncurses )" -RDEPEND="${DEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" -} - -src_compile() { - econf --disable-dependency-tracking\ - $(use_with ncurses curses)\ - $(use_enable static) - emake || die "emake failed." -} - -src_install() { - emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}/html" \ - install || die "emake install failed." - dodoc AUTHORS ChangeLog NEWS README TODO - - # create new STOWDIR - dodir /var/lib/xstow - - # env file - doenvd "${FILESDIR}/99xstow" || die "doenvd failed" -} - -pkg_postinst() { - elog "We now recommend that you use /var/lib/xstow as your STOWDIR" - elog "instead of /usr/local in order to avoid conflicts with the" - elog "symlink from /usr/lib64 -> /usr/lib. See Bug 246264 " - elog "(regarding app-admin/stow, equally applicable to XStow) for" - elog "more details on this change." - elog "For your convenience, PATH has been updated to include" - elog "/var/lib/xstow/bin." -} |