diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-04-08 18:44:42 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-04-09 00:41:43 +0200 |
commit | c8444ec633f10635df9eadbd6a1c534b2ce8a765 (patch) | |
tree | 12db04a964f4ac969816ff6b24aac1d2d9851dbd /app-admin/fsvs | |
parent | app-text/tabler: remove old. (diff) | |
download | gentoo-c8444ec633f10635df9eadbd6a1c534b2ce8a765.tar.gz gentoo-c8444ec633f10635df9eadbd6a1c534b2ce8a765.tar.bz2 gentoo-c8444ec633f10635df9eadbd6a1c534b2ce8a765.zip |
app-admin/fsvs: remove old.
Diffstat (limited to 'app-admin/fsvs')
-rw-r--r-- | app-admin/fsvs/fsvs-1.2.5-r1.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/app-admin/fsvs/fsvs-1.2.5-r1.ebuild b/app-admin/fsvs/fsvs-1.2.5-r1.ebuild deleted file mode 100644 index 70dbab7a23c0..000000000000 --- a/app-admin/fsvs/fsvs-1.2.5-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils toolchain-funcs - -DESCRIPTION="Backup/restore for subversion backends" -HOMEPAGE="http://fsvs.tigris.org/" -SRC_URI="http://download.fsvs-software.org/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-vcs/subversion - dev-libs/libpcre - sys-libs/gdbm - dev-libs/apr-util - dev-util/ctags" -DEPEND="${RDEPEND}" - -src_prepare() { - epatch "${FILESDIR}/${P}-as-needed.patch" - epatch_user -} - -src_compile() { - # respect compiler - emake CC="$(tc-getCC)" -} - -src_install() { - dobin src/fsvs - dodir /etc/fsvs - keepdir /var/spool/fsvs - doman doc/*5 doc/*1 - dodoc doc/{FAQ,IGNORING,PERFORMANCE,USAGE} -} - -pkg_postinst() { - elog "Remember, this system works best when you're connecting to a remote" - elog "svn server." - elog - elog "Go to the base path for versioning:" - elog " cd /" - elog "Tell fsvs which URL it should use:" - elog " fsvs url svn+ssh://username@machine/path/to/repos" - elog "Define ignore patterns - all virtual filesystems (/proc, /sys, etc.)," - elog "and (assuming that you're in / currently) the temporary files in /tmp:" - elog " fsvs ignore DEVICE:0 ./tmp/*" - elog "And you're ready to play!" - elog "Check your data in:" - elog " fsvs commit -m \"First import\"" -} |