summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/rioutil')
-rw-r--r--app-misc/rioutil/Manifest1
-rw-r--r--app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch15
-rw-r--r--app-misc/rioutil/rioutil-1.5.0-r2.ebuild34
3 files changed, 0 insertions, 50 deletions
diff --git a/app-misc/rioutil/Manifest b/app-misc/rioutil/Manifest
index 987ee7bd903f..44cf8199c6ed 100644
--- a/app-misc/rioutil/Manifest
+++ b/app-misc/rioutil/Manifest
@@ -1,2 +1 @@
-DIST rioutil-1.5.0.tar.gz 401244 BLAKE2B c7f317b0e995cbe61122891681d9756b06aacd624cbdcc75fc2111d19b0493645558e31090660bc4a4ad2ebc3b284bbff637984389c3a18bcd838e763aa4a2a8 SHA512 3e3bf1c053e2f0146c504c5015e33cd3281daad136f41d82100d6181b6720c7f1131615c663f821573d7aeb077efc1b59e8e23a8f15a851e332ad61ea0479f1d
DIST rioutil-1.5.4.tar.gz 84592 BLAKE2B 8efb92c3f178960d425c0b4733d061f2aa72767513621e379ecdc6d69509fcd91e38a9becd857e695f534f40ac7eaa3871c582df843f3b7b47298d48c0c18803 SHA512 b64027089a7c0a3b712486e3b2549dae5a8ceff9687a183fd411f6b9d197a97ea22bd7294242b3f9e8522da9ebe7e87dc5bc980633632ce3d4884341ee085a62
diff --git a/app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch b/app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch
deleted file mode 100644
index 1739a146c485..000000000000
--- a/app-misc/rioutil/files/rioutil-1.5.0-buffer-overflow.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-flist->genre is defined as 'char genre[17]' so don't copy 22 into it
-
-Patch by Kevin McCarthy <signals42@gmail.com>
-
---- librioutil/file_list.c
-+++ librioutil/file_list.c
-@@ -241,7 +241,7 @@
- strncpy(flist->title, info.data->title, 64);
- strncpy(flist->album, info.data->album, 64);
- strncpy(flist->name, info.data->name, 64);
-- strncpy(flist->genre, (char *)info.data->genre2, 22);
-+ strncpy(flist->genre, (char *)info.data->genre2, 17);
-
- strncpy(flist->year, (char *)info.data->year2, 4);
-
diff --git a/app-misc/rioutil/rioutil-1.5.0-r2.ebuild b/app-misc/rioutil/rioutil-1.5.0-r2.ebuild
deleted file mode 100644
index 0250aa42cf18..000000000000
--- a/app-misc/rioutil/rioutil-1.5.0-r2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit multilib eutils
-
-DESCRIPTION="Tool for transfering mp3s to and from a Rio 600, 800, Riot, and Nike PSA/Play"
-HOMEPAGE="http://rioutil.sourceforge.net/"
-SRC_URI="mirror://sourceforge/rioutil/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="virtual/libusb:0"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-buffer-overflow.patch
-}
-
-src_configure() {
- econf --disable-static
-}
-
-src_install() {
- emake DESTDIR="${D}" libdir="/usr/$(get_libdir)" install
- find "${ED}" -name '*.la' -exec rm -f {} +
- dodoc AUTHORS ChangeLog NEWS README TODO
-
- insinto /lib/udev/rules.d
- doins "${FILESDIR}"/75-rio.rules
-}