* [gentoo-commits] repo/gentoo:master commit in: app-cdr/cuegen/files/, app-cdr/cuegen/
@ 2017-12-28 12:03 David Seifert
0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2017-12-28 12:03 UTC (permalink / raw
To: gentoo-commits
commit: bea66b0dfb9f08c92bb43c7f10bfc93db4e6bcf0
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 28 11:41:14 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Dec 28 12:03:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bea66b0d
app-cdr/cuegen: Port to EAPI 6
Package-Manager: Portage-2.3.19, Repoman-2.3.6
app-cdr/cuegen/cuegen-1.2.0.ebuild | 22 +++++++++-------------
.../files/cuegen-1.2.0-fix-build-system.patch | 12 ++++++++++++
2 files changed, 21 insertions(+), 13 deletions(-)
diff --git a/app-cdr/cuegen/cuegen-1.2.0.ebuild b/app-cdr/cuegen/cuegen-1.2.0.ebuild
index 7fbb0a2d704..2f72c419125 100644
--- a/app-cdr/cuegen/cuegen-1.2.0.ebuild
+++ b/app-cdr/cuegen/cuegen-1.2.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI="2"
+EAPI=6
-inherit eutils toolchain-funcs
+inherit flag-o-matic toolchain-funcs
DESCRIPTION="CUEgen is a FLAC-compatible cuesheet generator for Linux"
HOMEPAGE="http://www.cs.man.ac.uk/~slavinp/cuegen.html"
@@ -14,18 +14,14 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND=""
-RDEPEND=""
+PATCHES=( "${FILESDIR}"/${PN}-1.2.0-fix-build-system.patch )
-src_prepare() {
- sed -i -e 's:\(\${CFLAGS}\):\1 \${LDFLAGS}:g' Makefile
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed"
+src_configure() {
+ append-cflags -W -Wall -Wstrict-prototypes -Wmissing-prototypes
+ tc-export CC
}
src_install() {
- dobin cuegen || die "install failed"
- dodoc README
+ dobin cuegen
+ einstalldocs
}
diff --git a/app-cdr/cuegen/files/cuegen-1.2.0-fix-build-system.patch b/app-cdr/cuegen/files/cuegen-1.2.0-fix-build-system.patch
new file mode 100644
index 00000000000..614ec59f905
--- /dev/null
+++ b/app-cdr/cuegen/files/cuegen-1.2.0-fix-build-system.patch
@@ -0,0 +1,12 @@
+--- a/Makefile
++++ b/Makefile
+@@ -1,9 +1 @@
+-TARGET := cuegen
+-CC := gcc
+-CFLAGS := -O2 -pipe -fomit-frame-pointer
+-WARN := -W -Wall -Wstrict-prototypes -Wmissing-prototypes
+-
+ all: cuegen
+-
+-cuegen: cuegen.o
+- ${CC} ${WARN} ${CFLAGS} cuegen.c -o cuegen
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-cdr/cuegen/files/, app-cdr/cuegen/
@ 2022-07-26 19:27 David Seifert
0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2022-07-26 19:27 UTC (permalink / raw
To: gentoo-commits
commit: dd5a87b45d6b8e829fdf3c1fbafd6bb50535058b
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 26 19:27:01 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Jul 26 19:27:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd5a87b4
app-cdr/cuegen: update EAPI 6 -> 8
Closes: https://bugs.gentoo.org/714228
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../{cuegen-1.2.0.ebuild => cuegen-1.2.0-r1.ebuild} | 13 +++++++------
.../cuegen/files/cuegen-1.2.0-fix-build-system.patch | 5 +++--
.../cuegen/files/cuegen-1.2.0-missing-includes.patch | 17 +++++++++++++++++
3 files changed, 27 insertions(+), 8 deletions(-)
diff --git a/app-cdr/cuegen/cuegen-1.2.0.ebuild b/app-cdr/cuegen/cuegen-1.2.0-r1.ebuild
similarity index 64%
rename from app-cdr/cuegen/cuegen-1.2.0.ebuild
rename to app-cdr/cuegen/cuegen-1.2.0-r1.ebuild
index 2f72c4191258..85cb4049484a 100644
--- a/app-cdr/cuegen/cuegen-1.2.0.ebuild
+++ b/app-cdr/cuegen/cuegen-1.2.0-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
-inherit flag-o-matic toolchain-funcs
+inherit toolchain-funcs
DESCRIPTION="CUEgen is a FLAC-compatible cuesheet generator for Linux"
HOMEPAGE="http://www.cs.man.ac.uk/~slavinp/cuegen.html"
@@ -12,12 +12,13 @@ SRC_URI="http://www.cs.man.ac.uk/~slavinp/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
-PATCHES=( "${FILESDIR}"/${PN}-1.2.0-fix-build-system.patch )
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.2.0-fix-build-system.patch
+ "${FILESDIR}"/${PN}-1.2.0-missing-includes.patch
+)
src_configure() {
- append-cflags -W -Wall -Wstrict-prototypes -Wmissing-prototypes
tc-export CC
}
diff --git a/app-cdr/cuegen/files/cuegen-1.2.0-fix-build-system.patch b/app-cdr/cuegen/files/cuegen-1.2.0-fix-build-system.patch
index 614ec59f905d..fa54235d0e4f 100644
--- a/app-cdr/cuegen/files/cuegen-1.2.0-fix-build-system.patch
+++ b/app-cdr/cuegen/files/cuegen-1.2.0-fix-build-system.patch
@@ -1,11 +1,12 @@
--- a/Makefile
+++ b/Makefile
-@@ -1,9 +1 @@
+@@ -1,9 +1,3 @@
-TARGET := cuegen
-CC := gcc
-CFLAGS := -O2 -pipe -fomit-frame-pointer
-WARN := -W -Wall -Wstrict-prototypes -Wmissing-prototypes
--
++CFLAGS += -W -Wall -Wstrict-prototypes -Wmissing-prototypes
+
all: cuegen
-
-cuegen: cuegen.o
diff --git a/app-cdr/cuegen/files/cuegen-1.2.0-missing-includes.patch b/app-cdr/cuegen/files/cuegen-1.2.0-missing-includes.patch
new file mode 100644
index 000000000000..98a273cddb13
--- /dev/null
+++ b/app-cdr/cuegen/files/cuegen-1.2.0-missing-includes.patch
@@ -0,0 +1,17 @@
+--- a/cuegen.c
++++ b/cuegen.c
+@@ -10,12 +10,14 @@
+ */
+
+
++#include <fcntl.h>
+ #include <stdio.h>
+ #include <stdlib.h>
+ #include <linux/cdrom.h>
+ #include <sys/ioctl.h>
+ #include <sys/file.h>
+ #include <sys/types.h>
++#include <sys/stat.h>
+ #include <unistd.h>
+ #include <string.h>
+
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-07-26 19:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-28 12:03 [gentoo-commits] repo/gentoo:master commit in: app-cdr/cuegen/files/, app-cdr/cuegen/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2022-07-26 19:27 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox