* [bug#68372] [PATCH] gnu: Add tgif.
@ 2024-01-10 18:06 spacecadet
2024-01-12 16:21 ` Mathieu Othacehe
2024-01-13 15:22 ` [bug#68372] [PATCH v2] " spacecadet
0 siblings, 2 replies; 5+ messages in thread
From: spacecadet @ 2024-01-10 18:06 UTC (permalink / raw)
To: 68372
* gnu/packages/image.scm (tgif): New variable.
---
gnu/packages/image.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index baaff1d0c1..86fa849570 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -1733,6 +1733,33 @@ (define-public steghide
specifically at this tool.")
(license license:gpl2+)))
+(define-public tgif
+ (package
+ (name "tgif")
+ (version "4.2.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://sourceforge/tgif/tgif/"
+ version "/tgif-QPL-" version ".tar.gz"))
+ (sha256
+ (base32 "1fk7qnqjmrr390bclwqrvlmh77bcl28hdn4vfdqydrpsrbzfj91g"))))
+ (build-system gnu-build-system)
+ (inputs
+ (list libx11
+ libxext
+ libxt
+ libxmu
+ zlib))
+ (home-page "https://bourbon.usc.edu/tgif/")
+ (synopsis "Xlib based interactive 2-D drawing tool")
+ (description
+ "Tgif (pronounced t-g-i-f) is an Xlib based interactive 2-D drawing tool
+(using vector graphics) under X11 on Linux and most UNIX platforms
+(including Mac OS X and cygwin on Windows).")
+ (license license:qpl)))
+
(define-public optipng
(package
(name "optipng")
base-commit: 5c0f77f4241c9beac0c82deae946bfdc70b49ff0
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#68372] [PATCH] gnu: Add tgif.
2024-01-10 18:06 [bug#68372] [PATCH] gnu: Add tgif spacecadet
@ 2024-01-12 16:21 ` Mathieu Othacehe
2024-01-12 22:08 ` spacecadet
2024-01-13 15:22 ` [bug#68372] [PATCH v2] " spacecadet
1 sibling, 1 reply; 5+ messages in thread
From: Mathieu Othacehe @ 2024-01-12 16:21 UTC (permalink / raw)
To: spacecadet; +Cc: 68372
Hello,
> + (home-page "https://bourbon.usc.edu/tgif/")
That one seems to be problematic somehow:
--8<---------------cut here---------------start------------->8---
gnu/packages/image.scm:1755:15: tgif@4.2.5: TLS certificate error: X.509 certificate of 'bourbon.usc.edu' could not be verified:
signer-not-found
invalid
--8<---------------cut here---------------end--------------->8---
> +(including Mac OS X and cygwin on Windows).")
That's not relevant to us, can you remove it :)?
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#68372] [PATCH] gnu: Add tgif.
2024-01-12 16:21 ` Mathieu Othacehe
@ 2024-01-12 22:08 ` spacecadet
0 siblings, 0 replies; 5+ messages in thread
From: spacecadet @ 2024-01-12 22:08 UTC (permalink / raw)
To: Mathieu Othacehe; +Cc: 68372
Hi Mathieu,
>> + (home-page "https://bourbon.usc.edu/tgif/")
>
> That one seems to be problematic somehow:
The cert works in icecat, shoulda run lint, my bad.
Assuming I should just change it to a plain http home-page?
>> +(including Mac OS X and cygwin on Windows).")
>
> That's not relevant to us, can you remove it :)?
Noted, will axe that.
--spacecadet
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#68372] [PATCH v2] gnu: Add tgif.
2024-01-10 18:06 [bug#68372] [PATCH] gnu: Add tgif spacecadet
2024-01-12 16:21 ` Mathieu Othacehe
@ 2024-01-13 15:22 ` spacecadet
2024-01-17 10:10 ` bug#68372: " Mathieu Othacehe
1 sibling, 1 reply; 5+ messages in thread
From: spacecadet @ 2024-01-13 15:22 UTC (permalink / raw)
To: 68372
* gnu/packages/image.scm (tgif): New variable.
---
gnu/packages/image.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index baaff1d0c1..b5ccf52c7b 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -1733,6 +1733,32 @@ (define-public steghide
specifically at this tool.")
(license license:gpl2+)))
+(define-public tgif
+ (package
+ (name "tgif")
+ (version "4.2.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "mirror://sourceforge/tgif/tgif/"
+ version "/tgif-QPL-" version ".tar.gz"))
+ (sha256
+ (base32 "1fk7qnqjmrr390bclwqrvlmh77bcl28hdn4vfdqydrpsrbzfj91g"))))
+ (build-system gnu-build-system)
+ (inputs
+ (list libx11
+ libxext
+ libxt
+ libxmu
+ zlib))
+ (home-page "http://bourbon.usc.edu/tgif/")
+ (synopsis "Xlib based interactive 2-D drawing tool")
+ (description
+ "Tgif (pronounced t-g-i-f) is an Xlib based interactive 2-D drawing tool
+(using vector graphics) under X11 on Linux and most UNIX platforms.")
+ (license license:qpl)))
+
(define-public optipng
(package
(name "optipng")
base-commit: 5c0f77f4241c9beac0c82deae946bfdc70b49ff0
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#68372: [PATCH v2] gnu: Add tgif.
2024-01-13 15:22 ` [bug#68372] [PATCH v2] " spacecadet
@ 2024-01-17 10:10 ` Mathieu Othacehe
0 siblings, 0 replies; 5+ messages in thread
From: Mathieu Othacehe @ 2024-01-17 10:10 UTC (permalink / raw)
To: spacecadet; +Cc: 68372-done
> * gnu/packages/image.scm (tgif): New variable.
Applied with an amended description,
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-01-17 10:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-10 18:06 [bug#68372] [PATCH] gnu: Add tgif spacecadet
2024-01-12 16:21 ` Mathieu Othacehe
2024-01-12 22:08 ` spacecadet
2024-01-13 15:22 ` [bug#68372] [PATCH v2] " spacecadet
2024-01-17 10:10 ` bug#68372: " Mathieu Othacehe
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.