gnu: gerbv: Update to 2.10.0.
* gnu/packages/engineering.scm (gerbv): Update to 2.10.0. [source]: Switch to maintained repository. [native-inputs]: Add autoconf, automake, gettext-minimal, libtool. Remove package labels. [inputs]: Add comment about GTK+2. Remove package labels. [home-page]: Update URL. Change-Id: Ie30c4ae618b3b57e9b59e3e40f1423fed4d26135master
parent
e498147cae
commit
6ec6b1c6c1
|
@ -860,25 +860,30 @@ and others.")
|
||||||
(define-public gerbv
|
(define-public gerbv
|
||||||
(package
|
(package
|
||||||
(name "gerbv")
|
(name "gerbv")
|
||||||
(version "2.7.0")
|
(version "2.10.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/gerbv/gerbv/gerbv-"
|
(uri (git-reference
|
||||||
version "/gerbv-" version ".tar.gz"))
|
(url "https://github.com/gerbv/gerbv")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1d2k43k7i4yvbpi4sw1263a8d0q98z2n7aqhmpinpkih8a681vn5"))))
|
"06bcm5zw7whsnnmfld3gl2j907lxc68gnsbzr2pc4w6qc923rgmj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("CFLAGS=-fcommon")))
|
'(#:configure-flags '("CFLAGS=-fcommon")))
|
||||||
(native-inputs
|
(native-inputs (list autoconf
|
||||||
`(("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc.
|
automake
|
||||||
("desktop-file-utils" ,desktop-file-utils)
|
desktop-file-utils
|
||||||
("pkg-config" ,pkg-config)))
|
gettext-minimal
|
||||||
(inputs
|
`(,glib "bin")
|
||||||
`(("cairo" ,cairo)
|
libtool
|
||||||
("gtk" ,gtk+-2)))
|
pkg-config))
|
||||||
(home-page "http://gerbv.geda-project.org/")
|
(inputs (list cairo
|
||||||
|
;; As of 2.10.0 gerbv is still GTK+2 only. GTK 3/4 porting
|
||||||
|
;; issue: https://github.com/gerbv/gerbv/issues/71.
|
||||||
|
gtk+-2))
|
||||||
|
(home-page "https://gerbv.github.io/")
|
||||||
(synopsis "Gerber file viewer")
|
(synopsis "Gerber file viewer")
|
||||||
(description
|
(description
|
||||||
"Gerbv is a viewer for files in the Gerber format (RS-274X only), which
|
"Gerbv is a viewer for files in the Gerber format (RS-274X only), which
|
||||||
|
|
Reference in New Issue