summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-05-10 07:27:33 +0200
committerJakov Smolić <jsmolic@gentoo.org>2022-05-10 07:27:33 +0200
commit4efa80508e301a3a4d1a753e7fcf8923af72b980 (patch)
treef332553dc48b066365cf1d330856b2934e2f03f7 /net-p2p
parentdev-python/ctypescrypto: treeclean (diff)
downloadgentoo-4efa80508e301a3a4d1a753e7fcf8923af72b980.tar.gz
gentoo-4efa80508e301a3a4d1a753e7fcf8923af72b980.tar.bz2
gentoo-4efa80508e301a3a4d1a753e7fcf8923af72b980.zip
net-p2p/syrep: treeclean
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-p2p')
-rw-r--r--net-p2p/syrep/Manifest1
-rw-r--r--net-p2p/syrep/metadata.xml5
-rw-r--r--net-p2p/syrep/syrep-0.9.ebuild40
3 files changed, 0 insertions, 46 deletions
diff --git a/net-p2p/syrep/Manifest b/net-p2p/syrep/Manifest
deleted file mode 100644
index 91a69a55e714..000000000000
--- a/net-p2p/syrep/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST syrep-0.9.tar.gz 192317 BLAKE2B 63f8020032829f5b8d5cae700f4bff96e9e3ea38b82958017e2babaca057a3988629c35c6b2e6e74a6283cca75021ab6f46eb548f2bae2aa662a9998c946b9c5 SHA512 2146b5e317e6bec60567976d6e17f68b817b80eb41fdb12125f899bf86dd27e92de1c5ef48b41ef09b6c61d3821d163e37486683d6b054dec46923cf451e8fed
diff --git a/net-p2p/syrep/metadata.xml b/net-p2p/syrep/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/net-p2p/syrep/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/net-p2p/syrep/syrep-0.9.ebuild b/net-p2p/syrep/syrep-0.9.ebuild
deleted file mode 100644
index 578c19a71e22..000000000000
--- a/net-p2p/syrep/syrep-0.9.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-DESCRIPTION="A generic file repository synchronization tool"
-HOMEPAGE="http://0pointer.de/lennart/projects/syrep/"
-SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND="sys-libs/zlib
- >=sys-libs/db-4.3
- doc? ( www-client/lynx )"
-
-src_prepare() {
- default
- sed -i \
- -e "s/#if (DB_VERSION_MAJOR != 4).*/#if (DB_VERSION_MAJOR < 4)/" \
- configure.ac || die
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable doc lynx) \
- --disable-xmltoman \
- --disable-subversion \
- --disable-gengetopt
-}
-
-src_install() {
- DOCS=( doc/README doc/*.txt )
- use doc && HTML_DOCS=( doc/*.{css,html} )
- default
-}