diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2024-11-22 09:41:02 +0100 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2024-11-22 10:34:02 +0100 |
commit | 157ded58ce06c1ddc854fb45af3c94ce6d699f48 (patch) | |
tree | fe834ce4da784a75d36b79b28d0791abf5d1a206 /net-misc | |
parent | net-misc/taylor-uucp: drop 1.07-r6 (diff) | |
download | gentoo-157ded58ce06c1ddc854fb45af3c94ce6d699f48.tar.gz gentoo-157ded58ce06c1ddc854fb45af3c94ce6d699f48.tar.bz2 gentoo-157ded58ce06c1ddc854fb45af3c94ce6d699f48.zip |
net-misc/sitecopy: drop 0.16.6-r2
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/sitecopy/sitecopy-0.16.6-r2.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/net-misc/sitecopy/sitecopy-0.16.6-r2.ebuild b/net-misc/sitecopy/sitecopy-0.16.6-r2.ebuild deleted file mode 100644 index 5238f148719f..000000000000 --- a/net-misc/sitecopy/sitecopy-0.16.6-r2.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools - -HOMEPAGE=" http://www.manyfish.co.uk/sitecopy/" -SRC_URI="mirror://gentoo/${P}.tar.gz - https://dev.gentoo.org/~jstein/files/sitecopy-0.16.6-04-manpages-addition-fixes.patch" -DESCRIPTION="Maintain remote web sites with ease" -KEYWORDS="amd64 x86" - -LICENSE="GPL-2" -SLOT="0" -IUSE="expat nls rsh ssl webdav xml zlib" - -RDEPEND=" - rsh? ( net-misc/netkit-rsh ) - >=net-libs/neon-0.24.6[zlib?,ssl?,expat?] - <=net-libs/neon-0.32.9999[zlib?,ssl?,expat?] - xml? ( >=net-libs/neon-0.24.6[-expat] ) -" -DEPEND="${RDEPEND}" - -src_prepare() { - default - - # SiteCopy patches are being currently pulled & ported from - # http://ftp.debian.org/debian/pool/main/s/sitecopy/ - # Consider SiteCopy to be more or less being actively maintained by - # Debian maintainers, but GPL patches ported into Gentoo. - - eapply \ - "${FILESDIR}/sitecopy-0.16.6-01-remote-dynamic-rc.patch" \ - "${FILESDIR}/sitecopy-0.16.6-02-french-po-fix.patch" \ - "${FILESDIR}/sitecopy-0.16.6-03-wrong-memory-397155.patch" \ - "${FILESDIR}/sitecopy-0.16.6-06-sftpdriver.c-fix-for-new-openssh.patch" \ - "${FILESDIR}/sitecopy-0.16.6-10-bts410703-preserve-storage-files-sigint.patch" \ - "${FILESDIR}/sitecopy-0.16.6-20-bts549721-add-compatibility-for-neon-0.29.0.patch" \ - "${FILESDIR}/sitecopy-0.16.6-30-bts320586-manpage-document-sftp.patch" \ - "${FILESDIR}/sitecopy-0.16.6-32-neon-0.31.patch" \ - "${DISTDIR}/sitecopy-0.16.6-04-manpages-addition-fixes.patch" - - # Source package uses incorrect '/usr/doc' for the doc folder. So use - # sed to correct this error. - sed -i -e "s:docdir \= .*:docdir \= \$\(prefix\)\/share/doc\/${PF}:" \ - Makefile.in || die "Documentation directory patching failed" - - mv configure.in configure.ac || die - eautoconf - eautomake -} - -src_configure() { - econf \ - $(use_with ssl ssl openssl) \ - $(use_enable webdav) \ - $(use_enable nls) \ - $(use_enable rsh) \ - $(use_with expat) \ - $(use_with xml libxml2 ) \ - --with-neon -} |