diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2019-03-08 21:19:41 +0100 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2019-03-08 21:19:41 +0100 |
commit | a7c6235232c1edd0d919f67f59c7cd741fd74e31 (patch) | |
tree | 0b07c8b280daaa595be8a6429518f05e141f69f4 /sys-fs | |
parent | dev-libs/libburn: Remove old libburn-1.4.8-r2. (diff) | |
download | gentoo-a7c6235232c1edd0d919f67f59c7cd741fd74e31.tar.gz gentoo-a7c6235232c1edd0d919f67f59c7cd741fd74e31.tar.bz2 gentoo-a7c6235232c1edd0d919f67f59c7cd741fd74e31.zip |
sys-fs/fatsort: Remove old fatsort-1.4.2.
Signed-off-by: Daniel Pielmeier <billie@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/fatsort/Manifest | 1 | ||||
-rw-r--r-- | sys-fs/fatsort/fatsort-1.4.2.ebuild | 38 |
2 files changed, 0 insertions, 39 deletions
diff --git a/sys-fs/fatsort/Manifest b/sys-fs/fatsort/Manifest index 3f97b2b9d9b7..12cff7154cf2 100644 --- a/sys-fs/fatsort/Manifest +++ b/sys-fs/fatsort/Manifest @@ -1,2 +1 @@ -DIST fatsort-1.4.2.439.tar.xz 41852 BLAKE2B 30ffc8575ca50a71c09c5f90e658a150ece34a9bed664696d8969ccbe4c3cb1b0130d830990e259889fab331ccf0c35e3f0aa3401628fdff3e04acbb7d0b53dd SHA512 c51b5316b34e1a74e2a8d1c625716fd022d32e40a92ef56b88fbc940b5e6dd6c978b733f180477e8b5b3235b46cd16eb74798c5aadd45de9ead1f1bafdf52fee DIST fatsort-1.5.0.456.tar.xz 56100 BLAKE2B 996f144c67a2311ef9962b06e776d0a0c8897814383e50c9f48f5af0bc800159ee34c10d9f8d51dae5160844dfe9fcbc4b56bb9883cbdb0402a0ea20198fc1d6 SHA512 fe9d8108494fd64da730ec40882582fc16a89e76a5ba4e8040d03a3dbbf12c525904abe24814337713f5f1d15c72e8321b27fad69db816c073a96fbfd15ea486 diff --git a/sys-fs/fatsort/fatsort-1.4.2.ebuild b/sys-fs/fatsort/fatsort-1.4.2.ebuild deleted file mode 100644 index fd4c8746d50a..000000000000 --- a/sys-fs/fatsort/fatsort-1.4.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -SVN_REV=439 -MY_P=${P}.${SVN_REV} - -DESCRIPTION="Sorts files on FAT16/32 partitions, ideal for basic audio players" -HOMEPAGE="http://fatsort.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - default - - sed -i -e '/^\(MANDIR=\|SBINDIR=\)/s|/usr/local|/usr|' \ - $(find ./ -name Makefile) || die -} - -src_compile() { - emake CC=$(tc-getCC) LD=$(tc-getCC) \ - CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ - DESTDIR="${D}" -} - -src_test() { - # Tests require root permissions and mounting filesystems which does - # not work inside the ebuild environment - true -} |