media-sound/gramofile: Drop old
authorPacho Ramos <pacho@gentoo.org>
Fri, 16 Mar 2018 20:33:52 +0000 (21:33 +0100)
committerPacho Ramos <pacho@gentoo.org>
Fri, 16 Mar 2018 20:42:30 +0000 (21:42 +0100)
Package-Manager: Portage-2.3.24, Repoman-2.3.6

media-sound/gramofile/Manifest
media-sound/gramofile/files/gramofile-1.6-strlen_and_exit.patch [deleted file]
media-sound/gramofile/gramofile-1.6-r1.ebuild [deleted file]

index a8606ec602bb481cee42fcd4b7482310e5224491..3f13ca04b1775412e4dddf844191633e4fe00846 100644 (file)
@@ -1,3 +1,2 @@
-DIST gramofile_1.6-8.diff.gz 26697 BLAKE2B 67b620351d87b297d9a7f62e85f5159993e7850c47841fc36eb4d9dd9df545b91a9c09b86f960a0a54b7bd062f39410691d96c194cf6ae641b5161721b4cea5b SHA512 f03ab82de0aa8fca44bd5be4e64c0606c08a083ed09039728e163a2e535348c8984acd958bc6589139907101faf867e3030ff2ad09abdc8e3b292864f69e64ae
 DIST gramofile_1.6-9.diff.gz 25244 BLAKE2B 60170f960693932d894022d0c576b2d58764e546e6f2a13461ab78abfb92235007047bb9f35964859908c580c815d21e8c80d73ddd4e33b0c1d25deda78d395a SHA512 2c3b0131afcbae680432e5fc1bb753bae7c19d5bb4372808a0f86ef704800aea218e3bfe625bffe46ee3cd4a38f89a488141223d22b8f467cab45ee4a962c249
 DIST gramofile_1.6.orig.tar.gz 108596 BLAKE2B fc076c60d3f2f46ab33f63194db165b6d0df6bd76996bade730968dfd821d234b0a88f486e98f84e76804efb8b08fb2538cb553de5f9eb09eb3dde60b441fbf4 SHA512 171a7cff4066d625b9263f5462bf3e8fba30a02b629f20f7b38031cf037eb0940cfb54b73671d10948ac3326e272b3576de785310022007e0d4dca4f164815a5
diff --git a/media-sound/gramofile/files/gramofile-1.6-strlen_and_exit.patch b/media-sound/gramofile/files/gramofile-1.6-strlen_and_exit.patch
deleted file mode 100644 (file)
index 4c35dd3..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
---- a/bplaysrc/Makefile
-+++ b/bplaysrc/Makefile
-@@ -6,13 +6,12 @@
-         ../clrscr.o ../secshms.o
- #SRCS = bplay.c sndfunc.o shmbuf.c
--CC = gcc
--LDFLAGS = 
-+CC ?= gcc
- ########## CHOOSE YOUR ARCHITECTURE:    (NOTE: also see ../Makefile!)
- # For Linux (and maybe others), use these:
--CFLAGS = -Wall -O2 -DUSEBUFFLOCK -DLP2CD -DVUMETER # -DDEBUG
-+CFLAGS += -Wall -DUSEBUFFLOCK -DLP2CD -DVUMETER
- LIBS = -lncurses
- # For FreeBSD (and maybe others), use these:
---- a/gramofile.c
-+++ b/gramofile.c
-@@ -11,6 +11,7 @@
- #include "splashscr.h"
- #include <signal.h>
- #include <unistd.h>
-+#include <stdlib.h>
- #include <string.h>
- #ifndef OLD_CURSES
- #include <ncurses.h>
---- a/Makefile
-+++ b/Makefile
-@@ -14,13 +14,12 @@
- OBJS = $(SRCS:.c=.o)
- SHELL = /bin/sh
--CC = gcc
--LDFLAGS = 
-+CC ?= gcc
- ########## CHOOSE YOUR ARCHITECTURE:    (NOTE: also see bplaysrc/Makefile!)
- # For Linux (and maybe others), use these:
--CFLAGS = -Wall -O2 -funroll-loops -DTURBO_MEDIAN -DTURBO_BUFFER
-+CFLAGS += -Wall -DTURBO_MEDIAN -DTURBO_BUFFER
- DEPS = $(OBJS) makebplay
- LIBS = -lncurses -lrfftw -lfftw -lm
- COPY_A = -a
---- a/signpr_cmf3.c
-+++ b/signpr_cmf3.c
-@@ -34,6 +34,7 @@
- #include <stdlib.h>
- #include <stdio.h>
- #include <math.h>
-+#include <string.h>
- #ifndef OLD_CURSES
- #include <ncurses.h>
- #else
diff --git a/media-sound/gramofile/gramofile-1.6-r1.ebuild b/media-sound/gramofile/gramofile-1.6-r1.ebuild
deleted file mode 100644 (file)
index bd252d4..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-PATCH_LEVEL=8
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Transfer sound from gramophone records to CD"
-HOMEPAGE="http://www.opensourcepartners.nl/~costar/gramofile"
-SRC_URI="mirror://debian/pool/main/g/${PN}/${PN}_${PV}.orig.tar.gz
-       mirror://debian/pool/main/g/${PN}/${PN}_${PV}-${PATCH_LEVEL}.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="sys-libs/ncurses
-       sci-libs/fftw:2.1"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-       epatch "${WORKDIR}"/${PN}_${PV}-${PATCH_LEVEL}.diff
-       EPATCH_SUFFIX="dpatch" EPATCH_FORCE="yes" epatch ${P}/debian
-       epatch "${FILESDIR}"/${P}-strlen_and_exit.patch
-}
-
-src_compile() {
-       tc-export CC
-       emake || die "emake failed"
-}
-
-src_install() {
-       dobin ${PN} || die "dobin failed"
-       exeinto /usr/$(get_libdir)/${PN}
-       doexe bplay_gramo brec_gramo || die "doexe failed"
-       dodoc ChangeLog README TODO *.txt
-       newdoc ${P}/debian/changelog ChangeLog.debian
-}