* [gentoo-commits] repo/gentoo:master commit in: games-action/abuse/files/, games-action/abuse/
@ 2018-08-09 11:30 Pacho Ramos
0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos @ 2018-08-09 11:30 UTC (permalink / raw
To: gentoo-commits
commit: 5cf66435acd2fdfacb24c26ad4e41b111fd8fa14
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 9 11:11:15 2018 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Aug 9 11:11:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf66435
games-action/abuse: Prevent segfault at start
Package-Manager: Portage-2.3.43, Repoman-2.3.10
games-action/abuse/abuse-0.8-r2.ebuild | 41 ++++++++++++++++++++++
games-action/abuse/files/abuse-0.8-gentoo-r1.patch | 12 +++++++
2 files changed, 53 insertions(+)
diff --git a/games-action/abuse/abuse-0.8-r2.ebuild b/games-action/abuse/abuse-0.8-r2.ebuild
new file mode 100644
index 00000000000..515f3cde59a
--- /dev/null
+++ b/games-action/abuse/abuse-0.8-r2.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools desktop
+
+DESCRIPTION="Port of Abuse by Crack Dot Com"
+HOMEPAGE="http://abuse.zoy.org/"
+SRC_URI="http://abuse.zoy.org/raw-attachment/wiki/download/${P}.tar.gz"
+
+LICENSE="GPL-2 WTFPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=">=media-libs/libsdl-1.1.6[sound,opengl,video]
+ media-libs/sdl-mixer
+ virtual/opengl"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-gentoo-r1.patch
+)
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # Prevent segfault at start: https://bugs.archlinux.org/task/52915
+ econf --enable-debug
+}
+
+src_install() {
+ # Source-based install
+ default
+
+ doicon doc/${PN}.png
+ make_desktop_entry abuse Abuse
+}
diff --git a/games-action/abuse/files/abuse-0.8-gentoo-r1.patch b/games-action/abuse/files/abuse-0.8-gentoo-r1.patch
new file mode 100644
index 00000000000..8be2eaf9258
--- /dev/null
+++ b/games-action/abuse/files/abuse-0.8-gentoo-r1.patch
@@ -0,0 +1,12 @@
+diff -ru abuse-0.8.orig/Makefile.am abuse-0.8/Makefile.am
+--- abuse-0.8.orig/Makefile.am 2011-05-09 03:58:04.000000000 -0400
++++ abuse-0.8/Makefile.am 2011-05-16 22:22:51.642655295 -0400
+@@ -2,8 +2,6 @@
+
+ SUBDIRS = src data doc
+
+-EXTRA_DIST = COPYING.GPL COPYING.WTFPL PACKAGERS bootstrap
+-
+ dist-hook:
+ @echo ""
+ @echo " ===================================================="
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: games-action/abuse/files/, games-action/abuse/
@ 2019-02-17 9:52 James Le Cuirot
0 siblings, 0 replies; 2+ messages in thread
From: James Le Cuirot @ 2019-02-17 9:52 UTC (permalink / raw
To: gentoo-commits
commit: a4f6bc355e6574d7752f053b2c0ec0f982599d35
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 17 09:52:02 2019 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Feb 17 09:52:02 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4f6bc35
games-action/abuse: Drop old 0.8 ebuilds
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
games-action/abuse/abuse-0.8-r1.ebuild | 42 ----------------------
games-action/abuse/abuse-0.8-r2.ebuild | 41 ---------------------
games-action/abuse/files/abuse-0.8-gentoo-r1.patch | 12 -------
games-action/abuse/files/abuse-0.8-gentoo.patch | 24 -------------
4 files changed, 119 deletions(-)
diff --git a/games-action/abuse/abuse-0.8-r1.ebuild b/games-action/abuse/abuse-0.8-r1.ebuild
deleted file mode 100644
index 29a6bbc7fda..00000000000
--- a/games-action/abuse/abuse-0.8-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools desktop
-
-DESCRIPTION="Port of Abuse by Crack Dot Com"
-HOMEPAGE="http://abuse.zoy.org/"
-SRC_URI="http://abuse.zoy.org/raw-attachment/wiki/download/${P}.tar.gz"
-
-LICENSE="GPL-2 WTFPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/libsdl-1.1.6[sound,opengl,video]
- media-libs/sdl-mixer
- virtual/opengl"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-gentoo.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_install() {
- # Source-based install
- default
-
- doicon doc/${PN}.png
- make_desktop_entry abuse Abuse
-}
-
-pkg_postinst() {
- elog "NOTE: If you had previous version of abuse installed"
- elog "you may need to remove ~/.abuse for the game to work correctly."
-}
diff --git a/games-action/abuse/abuse-0.8-r2.ebuild b/games-action/abuse/abuse-0.8-r2.ebuild
deleted file mode 100644
index 515f3cde59a..00000000000
--- a/games-action/abuse/abuse-0.8-r2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools desktop
-
-DESCRIPTION="Port of Abuse by Crack Dot Com"
-HOMEPAGE="http://abuse.zoy.org/"
-SRC_URI="http://abuse.zoy.org/raw-attachment/wiki/download/${P}.tar.gz"
-
-LICENSE="GPL-2 WTFPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=media-libs/libsdl-1.1.6[sound,opengl,video]
- media-libs/sdl-mixer
- virtual/opengl"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-gentoo-r1.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # Prevent segfault at start: https://bugs.archlinux.org/task/52915
- econf --enable-debug
-}
-
-src_install() {
- # Source-based install
- default
-
- doicon doc/${PN}.png
- make_desktop_entry abuse Abuse
-}
diff --git a/games-action/abuse/files/abuse-0.8-gentoo-r1.patch b/games-action/abuse/files/abuse-0.8-gentoo-r1.patch
deleted file mode 100644
index 8be2eaf9258..00000000000
--- a/games-action/abuse/files/abuse-0.8-gentoo-r1.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ru abuse-0.8.orig/Makefile.am abuse-0.8/Makefile.am
---- abuse-0.8.orig/Makefile.am 2011-05-09 03:58:04.000000000 -0400
-+++ abuse-0.8/Makefile.am 2011-05-16 22:22:51.642655295 -0400
-@@ -2,8 +2,6 @@
-
- SUBDIRS = src data doc
-
--EXTRA_DIST = COPYING.GPL COPYING.WTFPL PACKAGERS bootstrap
--
- dist-hook:
- @echo ""
- @echo " ===================================================="
diff --git a/games-action/abuse/files/abuse-0.8-gentoo.patch b/games-action/abuse/files/abuse-0.8-gentoo.patch
deleted file mode 100644
index c5d97834d9e..00000000000
--- a/games-action/abuse/files/abuse-0.8-gentoo.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ru abuse-0.8.orig/Makefile.am abuse-0.8/Makefile.am
---- abuse-0.8.orig/Makefile.am 2011-05-09 03:58:04.000000000 -0400
-+++ abuse-0.8/Makefile.am 2011-05-16 22:22:51.642655295 -0400
-@@ -2,8 +2,6 @@
-
- SUBDIRS = src data doc
-
--EXTRA_DIST = COPYING.GPL COPYING.WTFPL PACKAGERS bootstrap
--
- dist-hook:
- @echo ""
- @echo " ===================================================="
-diff -ru abuse-0.8.orig/configure.ac abuse-0.8/configure.ac
---- abuse-0.8.orig/configure.ac 2011-05-09 03:58:04.000000000 -0400
-+++ abuse-0.8/configure.ac 2011-05-16 22:22:35.771824632 -0400
-@@ -90,8 +90,6 @@
- fi
- AM_CONDITIONAL(HAVE_NONFREE, test "${ac_cv_have_nonfree}" = "yes")
-
--# Optimizations
--CXXFLAGS="${CXXFLAGS} ${OPT} ${REL}"
- # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
- CXXFLAGS="${CXXFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wsign-compare"
-
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-02-17 9:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-09 11:30 [gentoo-commits] repo/gentoo:master commit in: games-action/abuse/files/, games-action/abuse/ Pacho Ramos
-- strict thread matches above, loose matches on Subject: below --
2019-02-17 9:52 James Le Cuirot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox