diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-01-14 17:18:19 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-01-14 17:18:19 +0100 |
commit | 98b0f7880507c6359f375a858c23d7298d2a84e2 (patch) | |
tree | b12b1f01159eb392fa7d5c00dcd2ba9a67394926 /media-sound | |
parent | dev-util/idutils: Remove last-rited pkg (diff) | |
download | gentoo-98b0f7880507c6359f375a858c23d7298d2a84e2.tar.gz gentoo-98b0f7880507c6359f375a858c23d7298d2a84e2.tar.bz2 gentoo-98b0f7880507c6359f375a858c23d7298d2a84e2.zip |
media-sound/vitunes: Remove last-rited pkg
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/vitunes/Manifest | 1 | ||||
-rw-r--r-- | media-sound/vitunes/files/vitunes-2.3-asneeded.patch | 20 | ||||
-rw-r--r-- | media-sound/vitunes/files/vitunes-2.3-time-header.patch | 10 | ||||
-rw-r--r-- | media-sound/vitunes/metadata.xml | 8 | ||||
-rw-r--r-- | media-sound/vitunes/vitunes-2.3.ebuild | 36 |
5 files changed, 0 insertions, 75 deletions
diff --git a/media-sound/vitunes/Manifest b/media-sound/vitunes/Manifest deleted file mode 100644 index 5b9e538e5005..000000000000 --- a/media-sound/vitunes/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST vitunes-2.3.tar.gz 77978 BLAKE2B 3c01cf1a52402421f672b8b84182a3ccca99c64995846f741996243b354e1280df92a0ed6892aea893aabb4712e3a584d4b70151bc0ceaa3d50785d073269804 SHA512 5e795d802937e2f529421b3c0c3df333298608b419fcf955f4ec32ff47b915f1b82082f283ded1879869d7ae9875e2699e70fde6ee5d953d13c2e39cc12b7a53 diff --git a/media-sound/vitunes/files/vitunes-2.3-asneeded.patch b/media-sound/vitunes/files/vitunes-2.3-asneeded.patch deleted file mode 100644 index ec152f395377..000000000000 --- a/media-sound/vitunes/files/vitunes-2.3-asneeded.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- vitunes-2.3/Makefile.linux.orig -+++ vitunes-2.3/Makefile.linux -@@ -12,7 +12,7 @@ - # build info - CC?=/usr/bin/cc - CFLAGS+=-c -std=gnu99 -D_GNU_SOURCE -Wall -Wextra -Wno-unused-value $(CDEPS) $(CDEBUG) --LDFLAGS+=-lm -lncurses -lutil $(LDEPS) -+LIBS=-lm -lncurses -lutil $(LDEPS) - - OBJS=commands.o compat.o e_commands.o \ - keybindings.o medialib.o meta_info.o \ -@@ -27,7 +27,7 @@ - .PHONY: debug clean install uninstall publish-repos man-debug - - vitunes: $(OBJS) -- $(CC) -o $@ $(LDFLAGS) $(OBJS) -+ $(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS) - - .c.o: - $(CC) $(CFLAGS) $< diff --git a/media-sound/vitunes/files/vitunes-2.3-time-header.patch b/media-sound/vitunes/files/vitunes-2.3-time-header.patch deleted file mode 100644 index 169ff0516584..000000000000 --- a/media-sound/vitunes/files/vitunes-2.3-time-header.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- vitunes-2.3/players/mplayer.h.orig -+++ vitunes-2.3/players/mplayer.h -@@ -28,6 +28,7 @@ - #include <stdio.h> - #include <stdlib.h> - #include <string.h> -+#include <time.h> - #include <unistd.h> - - #include "player_utils.h" diff --git a/media-sound/vitunes/metadata.xml b/media-sound/vitunes/metadata.xml deleted file mode 100644 index c870d0eef0ab..000000000000 --- a/media-sound/vitunes/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>sound@gentoo.org</email> - <name>Gentoo Sound project</name> -</maintainer> -</pkgmetadata> diff --git a/media-sound/vitunes/vitunes-2.3.ebuild b/media-sound/vitunes/vitunes-2.3.ebuild deleted file mode 100644 index 51c9a8c5324c..000000000000 --- a/media-sound/vitunes/vitunes-2.3.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="A curses media indexer and player for vi users" -HOMEPAGE="http://vitunes.org/" -SRC_URI="http://vitunes.org/files/${P}.tar.gz" - -LICENSE="ISC" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="media-libs/taglib - sys-libs/ncurses" -RDEPEND="${DEPEND} - media-video/mplayer" - -src_prepare() { - epatch "${FILESDIR}"/${P}-asneeded.patch - epatch "${FILESDIR}"/${P}-time-header.patch -} - -src_compile() { - tc-export CC - emake -f Makefile.linux -} - -src_install() { - dobin ${PN} - doman ${PN}.1 - dodoc DEVELOPERS.txt add_urls.sh -} |