diff options
author | David Seifert <soap@gentoo.org> | 2020-11-29 10:55:09 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-29 10:55:09 +0100 |
commit | 1319284073a274c6e5614043dab5cf31b95738da (patch) | |
tree | 334d96cd15d8d1f23e953e5581f3f48ea34f879b /net-p2p/mktorrent | |
parent | sys-devel/llvm: Remove old (diff) | |
download | gentoo-1319284073a274c6e5614043dab5cf31b95738da.tar.gz gentoo-1319284073a274c6e5614043dab5cf31b95738da.tar.bz2 gentoo-1319284073a274c6e5614043dab5cf31b95738da.zip |
net-p2p/mktorrent: Remove old
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-p2p/mktorrent')
-rw-r--r-- | net-p2p/mktorrent/Manifest | 1 | ||||
-rw-r--r-- | net-p2p/mktorrent/mktorrent-1.0-r1.ebuild | 33 |
2 files changed, 0 insertions, 34 deletions
diff --git a/net-p2p/mktorrent/Manifest b/net-p2p/mktorrent/Manifest index 56cc216f1150..6751181ee26b 100644 --- a/net-p2p/mktorrent/Manifest +++ b/net-p2p/mktorrent/Manifest @@ -1,2 +1 @@ -DIST mktorrent-1.0.tar.gz 23089 BLAKE2B debfdbf2691fd1baa9f1647ef1cd64a4e5d8cbcabd77fb7c8a4b7ec5c1abbf4fa56ae54ea51afc58b0807cde8d525c4ac7106d38576e52a71e2776ba0bfcacda SHA512 f103c8860c008796c2dc604fcabce7374264fd7814237fcad5f9dab0fe10e927b0e2d9b58e7462dd198265a7d83fe30fd68313c7dce4029d8c331a6f2d4622de DIST mktorrent-4c221a05d949a3767a2671de139c6014909daf6b.tar.gz 24574 BLAKE2B e7dcc17aca52c8d1f9d816ce3e89bea5c2b1d7759dba6a00578960b253652506b7e61855d769440056aaa6b0719e6856108ca5b80977152746a648862c71e97b SHA512 49ba2697373a1b40829d50d66faaaeb57fa3893e97283ec2844b447b8e4cf2713d7c0e76e49d3893475f5ce298c3215249751defe0f952d2c52df1bf68f7706c diff --git a/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild b/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild deleted file mode 100644 index d132d68b2e1d..000000000000 --- a/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit toolchain-funcs - -DESCRIPTION="Simple command line utility to create BitTorrent metainfo files" -HOMEPAGE="http://mktorrent.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="threads +ssl debug" - -RDEPEND="ssl? ( dev-libs/openssl:0 )" -DEPEND="${RDEPEND}" - -src_compile() { - tc-export CC - MAKEPARAM="USE_LONG_OPTIONS=1" - MAKEPARAM="${MAKEPARAM} USE_LARGE_FILES=1" - use debug && MAKEPARAM="${MAKEPARAM} DEBUG=1" - use ssl && MAKEPARAM="${MAKEPARAM} USE_OPENSSL=1" - use threads && MAKEPARAM="${MAKEPARAM} USE_PTHREADS=1" - - emake ${MAKEPARAM} -} - -src_install() { - dobin ${PN} - dodoc README -} |