emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27971: closed ([PATCH] gnu: Add ois.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27971: closed ([PATCH] gnu: Add ois.)
Date: Wed, 09 Aug 2017 11:05:02 +0000

Your message dated Wed, 9 Aug 2017 14:04:01 +0300
with message-id <address@hidden>
and subject line Re: [PATCH] gnu: Add ois.
has caused the debbugs.gnu.org bug report #27971,
regarding [PATCH] gnu: Add ois.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27971: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27971
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add ois. Date: Sat, 5 Aug 2017 20:08:20 +0300
From: Manolis Ragkousis <address@hidden>

* gnu/packages/game-development.scm (ois): New variable.
---
 gnu/packages/game-development.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 7ab9a1aef..75f2c47e9 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -35,6 +35,7 @@
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system python)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
   #:use-module (gnu packages boost)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages databases)
@@ -45,6 +46,7 @@
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnunet)
   #:use-module (gnu packages guile)
+  #:use-module (gnu packages m4)
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages music)
   #:use-module (gnu packages ncurses)
@@ -915,3 +917,38 @@ suitable for pixel art, game graphics, and generally any 
detailed graphics
 painted with a mouse.")
     (home-page "http://pulkomandy.tk/projects/GrafX2";)
     (license license:gpl2))) ; GPLv2 only
+
+(define-public ois
+  (package
+    (name "ois")
+    (version "1.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "git://github.com/wgois/OIS.git")
+             (commit "bb75ccc1aabc1c547195579963601ff6080ca2f2")))
+       (file-name (string-append name "-" version))
+       (sha256
+        (base32
+         "0w0pamjc3vj0jr718hysrw8x076fq6n9rd6wcb36sn2jd0lqvi98"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-before 'configure 'bootstrap
+           (lambda _ (zero? (system* "sh" "bootstrap")))))))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)
+       ("m4" ,m4)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libxaw" ,libxaw)))
+    (synopsis "Object Oriented Input System")
+    (description
+     "Cross Platform Object Oriented Input Lib System.  Meant to be very robust
+and compatiable with many systems and operating systems.")
+    (home-page "https://github.com/wgois/OIS";)
+    (license license:zlib)))
-- 
2.13.4




--- End Message ---
--- Begin Message --- Subject: Re: [PATCH] gnu: Add ois. Date: Wed, 9 Aug 2017 14:04:01 +0300 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

On 08/09/2017 12:15 AM, Marius Bakke wrote:
> address@hidden writes:
> 
>> From: Manolis Ragkousis <address@hidden>
>>
>> * gnu/packages/game-development.scm (ois): New variable.
> 
> LGTM, thanks! Good job on the description :-)
> 
Pushed to master.

Thank you Marius!

Manolis


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]