* [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/
@ 2013-02-03 8:15 Azamat H. Hackimov
0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2013-02-03 8:15 UTC (permalink / raw
To: gentoo-commits
commit: e050a0bb39caa72e33e18cd6db5fb73d02248e0c
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sun Feb 3 08:15:04 2013 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sun Feb 3 08:15:04 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=e050a0bb
[games-engines/ags] Adventure Game Studio engine (AGS), initial commit.
Package-Manager: portage-2.1.11.31
Manifest-Sign-Key: A018DE8C
---
games-engines/ags/ChangeLog | 5 ++++
games-engines/ags/ags-9999.ebuild | 49 +++++++++++++++++++++++++++++++++++++
games-engines/ags/metadata.xml | 12 +++++++++
3 files changed, 66 insertions(+), 0 deletions(-)
diff --git a/games-engines/ags/ChangeLog b/games-engines/ags/ChangeLog
new file mode 100644
index 0000000..2a96095
--- /dev/null
+++ b/games-engines/ags/ChangeLog
@@ -0,0 +1,5 @@
+*ags-9999 (03 Feb 2013)
+
+ 03 Feb 2013; Azamat H. Hackimov <azamat.hackimov@gmail.com> +ags-9999.ebuild,
+ +metadata.xml:
+ [games-engines/ags] Adventure Game Studio engine (AGS), initial commit.
diff --git a/games-engines/ags/ags-9999.ebuild b/games-engines/ags/ags-9999.ebuild
new file mode 100644
index 0000000..0dcb2f9
--- /dev/null
+++ b/games-engines/ags/ags-9999.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit games git-2
+
+DESCRIPTION="A game/runtime interpreter for the Adventure Game Studio engine"
+HOMEPAGE="http://www.adventuregamestudio.co.uk/"
+#SRC_URI=""
+EGIT_REPO_URI="https://github.com/adventuregamestudio/ags.git"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+DEPEND="
+ >=media-libs/aldumb-0.9.3
+ media-libs/allegro:0
+ >=media-libs/dumb-0.9.3
+ media-libs/freetype:2
+ media-libs/libogg
+ media-libs/libtheora
+ media-libs/libvorbis"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ sed -i -e "s:-O2 -pie -fpie -g -fsigned-char::" Engine/Makefile-defs.linux \
+ || die
+}
+
+src_compile() {
+ emake --directory=Engine
+}
+
+src_install() {
+ dogamesbin Engine/ags
+ dodoc README.md
+}
+
+pkg_postinst() {
+ ewarn "In order to play AGS games run command:"
+ ewarn " ${PN} /path/to/gamedir"
+ ewarn "or"
+ ewarn " ${PN} /path/to/game.exe"
+ games_pkg_postinst
+}
diff --git a/games-engines/ags/metadata.xml b/games-engines/ags/metadata.xml
new file mode 100644
index 0000000..1c8cbdb
--- /dev/null
+++ b/games-engines/ags/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+<email>azamat.hackimov@gmail.com</email>
+<name>Azamat H. Hackimov</name>
+</maintainer>
+<longdescription lang="en">
+A game/runtime interpreter for the Adventure Game Studio engine.
+</longdescription>
+</pkgmetadata>
+
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/
@ 2014-04-08 17:06 Azamat H. Hackimov
0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2014-04-08 17:06 UTC (permalink / raw
To: gentoo-commits
commit: e71ae3fb96eec859ab272f6568a3d3a3179ca25b
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Tue Apr 8 17:06:11 2014 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Tue Apr 8 17:06:11 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=e71ae3fb
[games-engines/ags] Stable version 3.3.0_p2
Package-Manager: portage-2.2.8-r1
Manifest-Sign-Key: A018DE8C
---
.../ags/{ags-9999.ebuild => ags-3.3.0_p2.ebuild} | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/games-engines/ags/ags-9999.ebuild b/games-engines/ags/ags-3.3.0_p2.ebuild
similarity index 71%
rename from games-engines/ags/ags-9999.ebuild
rename to games-engines/ags/ags-3.3.0_p2.ebuild
index 0dcb2f9..e1d7a2e 100644
--- a/games-engines/ags/ags-9999.ebuild
+++ b/games-engines/ags/ags-3.3.0_p2.ebuild
@@ -1,19 +1,20 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
-inherit games git-2
+inherit games
+
+MY_PV=${PV/_p/-hotfix}
DESCRIPTION="A game/runtime interpreter for the Adventure Game Studio engine"
HOMEPAGE="http://www.adventuregamestudio.co.uk/"
-#SRC_URI=""
-EGIT_REPO_URI="https://github.com/adventuregamestudio/ags.git"
+SRC_URI="https://github.com/adventuregamestudio/ags/archive/v.${MY_PV}.tar.gz -> ${PN}-v.${MY_PV}.tar.gz"
LICENSE="Artistic-2"
SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="
@@ -26,8 +27,10 @@ DEPEND="
media-libs/libvorbis"
RDEPEND="${DEPEND}"
+S="${WORKDIR}/${PN}-v.${MY_PV}"
+
src_prepare() {
- sed -i -e "s:-O2 -pie -fpie -g -fsigned-char::" Engine/Makefile-defs.linux \
+ sed -i -e "s:-O2 -g -fsigned-char::" Engine/Makefile-defs.linux \
|| die
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/
@ 2016-07-07 23:07 Azamat H. Hackimov
0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2016-07-07 23:07 UTC (permalink / raw
To: gentoo-commits
commit: d5703266f1661a82cdcf34a43feda4ea4599dbaf
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Jul 7 23:07:29 2016 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Jul 7 23:07:29 2016 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=d5703266
games-engines/ags: bump to 3.3.5.7
EAPI 6, new QA policy about games
Package-Manager: portage-2.2.28
Manifest-Sign-Key: A018DE8C
.../ags/{ags-3.3.0_p2.ebuild => ags-3.3.5.7.ebuild} | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/games-engines/ags/ags-3.3.0_p2.ebuild b/games-engines/ags/ags-3.3.5.7.ebuild
similarity index 68%
rename from games-engines/ags/ags-3.3.0_p2.ebuild
rename to games-engines/ags/ags-3.3.5.7.ebuild
index e1d7a2e..ba02414 100644
--- a/games-engines/ags/ags-3.3.0_p2.ebuild
+++ b/games-engines/ags/ags-3.3.5.7.ebuild
@@ -1,16 +1,12 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Id$
-EAPI=5
-
-inherit games
-
-MY_PV=${PV/_p/-hotfix}
+EAPI=6
DESCRIPTION="A game/runtime interpreter for the Adventure Game Studio engine"
-HOMEPAGE="http://www.adventuregamestudio.co.uk/"
-SRC_URI="https://github.com/adventuregamestudio/ags/archive/v.${MY_PV}.tar.gz -> ${PN}-v.${MY_PV}.tar.gz"
+HOMEPAGE="http://www.adventuregamestudio.co.uk/ http://www.adventuregamestudio.co.uk/"
+SRC_URI="https://github.com/adventuregamestudio/ags/releases/download/v.${PV}/${PN}_linux_v.${PV}.tar.xz"
LICENSE="Artistic-2"
SLOT="0"
@@ -27,9 +23,10 @@ DEPEND="
media-libs/libvorbis"
RDEPEND="${DEPEND}"
-S="${WORKDIR}/${PN}-v.${MY_PV}"
+S="${WORKDIR}/${PN}_linux_v.${PV}"
src_prepare() {
+ eapply_user
sed -i -e "s:-O2 -g -fsigned-char::" Engine/Makefile-defs.linux \
|| die
}
@@ -39,7 +36,7 @@ src_compile() {
}
src_install() {
- dogamesbin Engine/ags
+ dobin Engine/ags
dodoc README.md
}
@@ -48,5 +45,4 @@ pkg_postinst() {
ewarn " ${PN} /path/to/gamedir"
ewarn "or"
ewarn " ${PN} /path/to/game.exe"
- games_pkg_postinst
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/
@ 2018-11-10 23:44 Azamat H. Hackimov
0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2018-11-10 23:44 UTC (permalink / raw
To: gentoo-commits
commit: 8acd02f02cdb07553037f63484210146b4796d1d
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sat Nov 10 22:17:11 2018 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sat Nov 10 23:44:20 2018 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=8acd02f0
games-engines/ags: minor fixes to package
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
games-engines/ags/ags-3.3.5.7.ebuild | 3 +--
games-engines/ags/metadata.xml | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/games-engines/ags/ags-3.3.5.7.ebuild b/games-engines/ags/ags-3.3.5.7.ebuild
index ba02414..f5293a5 100644
--- a/games-engines/ags/ags-3.3.5.7.ebuild
+++ b/games-engines/ags/ags-3.3.5.7.ebuild
@@ -1,6 +1,5 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-# $Id$
EAPI=6
diff --git a/games-engines/ags/metadata.xml b/games-engines/ags/metadata.xml
index 1c8cbdb..62d6a41 100644
--- a/games-engines/ags/metadata.xml
+++ b/games-engines/ags/metadata.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<maintainer>
+<maintainer type="person">
<email>azamat.hackimov@gmail.com</email>
<name>Azamat H. Hackimov</name>
</maintainer>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/
@ 2021-07-12 20:47 Azamat H. Hackimov
0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2021-07-12 20:47 UTC (permalink / raw
To: gentoo-commits
commit: 56caa2e6839ea65d7ccb01c3caf7590a8a4da3fb
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Jul 12 18:42:52 2021 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Jul 12 20:45:59 2021 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=56caa2e6
games-engines/ags: remove old
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
games-engines/ags/ags-3.3.5.7.ebuild | 44 ------------------------------------
1 file changed, 44 deletions(-)
diff --git a/games-engines/ags/ags-3.3.5.7.ebuild b/games-engines/ags/ags-3.3.5.7.ebuild
deleted file mode 100644
index 256a765..0000000
--- a/games-engines/ags/ags-3.3.5.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A game/runtime interpreter for the Adventure Game Studio engine"
-HOMEPAGE="http://www.adventuregamestudio.co.uk/"
-SRC_URI="https://github.com/adventuregamestudio/ags/releases/download/v.${PV}/${PN}_linux_v.${PV}.tar.xz"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
- media-libs/dumb[allegro]
- media-libs/freetype:2
- media-libs/libogg
- media-libs/libtheora
- media-libs/libvorbis"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}_linux_v.${PV}"
-
-src_prepare() {
- eapply_user
- sed -i -e "s:-O2 -g -fsigned-char::" Engine/Makefile-defs.linux \
- || die
-}
-
-src_compile() {
- emake --directory=Engine
-}
-
-src_install() {
- dobin Engine/ags
- dodoc README.md
-}
-
-pkg_postinst() {
- ewarn "In order to play AGS games run command:"
- ewarn " ${PN} /path/to/gamedir"
- ewarn "or"
- ewarn " ${PN} /path/to/game.exe"
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/
@ 2021-07-12 20:47 Azamat H. Hackimov
0 siblings, 0 replies; 6+ messages in thread
From: Azamat H. Hackimov @ 2021-07-12 20:47 UTC (permalink / raw
To: gentoo-commits
commit: 702e805b1ea274638b2e5e6de18171da0aa85017
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Jul 12 18:42:21 2021 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Mon Jul 12 20:45:59 2021 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=702e805b
games-engines/ags: update to 3.5.1.8
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
games-engines/ags/ags-3.3.5.7.ebuild | 9 +++------
.../ags/{ags-3.3.5.7.ebuild => ags-3.5.1.8.ebuild} | 15 ++++++---------
2 files changed, 9 insertions(+), 15 deletions(-)
diff --git a/games-engines/ags/ags-3.3.5.7.ebuild b/games-engines/ags/ags-3.3.5.7.ebuild
index f5293a5..256a765 100644
--- a/games-engines/ags/ags-3.3.5.7.ebuild
+++ b/games-engines/ags/ags-3.3.5.7.ebuild
@@ -1,21 +1,18 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A game/runtime interpreter for the Adventure Game Studio engine"
-HOMEPAGE="http://www.adventuregamestudio.co.uk/ http://www.adventuregamestudio.co.uk/"
+HOMEPAGE="http://www.adventuregamestudio.co.uk/"
SRC_URI="https://github.com/adventuregamestudio/ags/releases/download/v.${PV}/${PN}_linux_v.${PV}.tar.xz"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
DEPEND="
- >=media-libs/aldumb-0.9.3
- media-libs/allegro:0
- >=media-libs/dumb-0.9.3
+ media-libs/dumb[allegro]
media-libs/freetype:2
media-libs/libogg
media-libs/libtheora
diff --git a/games-engines/ags/ags-3.3.5.7.ebuild b/games-engines/ags/ags-3.5.1.8.ebuild
similarity index 65%
copy from games-engines/ags/ags-3.3.5.7.ebuild
copy to games-engines/ags/ags-3.5.1.8.ebuild
index f5293a5..b0eedb2 100644
--- a/games-engines/ags/ags-3.3.5.7.ebuild
+++ b/games-engines/ags/ags-3.5.1.8.ebuild
@@ -1,31 +1,28 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="A game/runtime interpreter for the Adventure Game Studio engine"
-HOMEPAGE="http://www.adventuregamestudio.co.uk/ http://www.adventuregamestudio.co.uk/"
-SRC_URI="https://github.com/adventuregamestudio/ags/releases/download/v.${PV}/${PN}_linux_v.${PV}.tar.xz"
+HOMEPAGE="http://www.adventuregamestudio.co.uk/"
+SRC_URI="https://github.com/adventuregamestudio/ags/archive/refs/tags/v.${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
DEPEND="
- >=media-libs/aldumb-0.9.3
- media-libs/allegro:0
- >=media-libs/dumb-0.9.3
+ media-libs/dumb[allegro]
media-libs/freetype:2
media-libs/libogg
media-libs/libtheora
media-libs/libvorbis"
RDEPEND="${DEPEND}"
-S="${WORKDIR}/${PN}_linux_v.${PV}"
+S="${WORKDIR}/${PN}-v.${PV}"
src_prepare() {
- eapply_user
+ default
sed -i -e "s:-O2 -g -fsigned-char::" Engine/Makefile-defs.linux \
|| die
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-07-12 20:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-08 17:06 [gentoo-commits] proj/gamerlay:master commit in: games-engines/ags/ Azamat H. Hackimov
-- strict thread matches above, loose matches on Subject: below --
2021-07-12 20:47 Azamat H. Hackimov
2021-07-12 20:47 Azamat H. Hackimov
2018-11-10 23:44 Azamat H. Hackimov
2016-07-07 23:07 Azamat H. Hackimov
2013-02-03 8:15 Azamat H. Hackimov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox