]> git.draconx.ca Git - gentoo-draconx.git/commitdiff
Add ebuild for x11-libs/gtkextra.
authorNick Bowler <nbowler@draconx.ca>
Fri, 7 May 2021 01:00:10 +0000 (21:00 -0400)
committerNick Bowler <nbowler@draconx.ca>
Fri, 7 May 2021 01:02:14 +0000 (21:02 -0400)
This is needed for new versions of lepton-eda.

x11-libs/gtkextra/Manifest [new file with mode: 0644]
x11-libs/gtkextra/gtkextra-3.3.4.ebuild [new file with mode: 0644]

diff --git a/x11-libs/gtkextra/Manifest b/x11-libs/gtkextra/Manifest
new file mode 100644 (file)
index 0000000..c0ec440
--- /dev/null
@@ -0,0 +1,2 @@
+DIST gtkextra-3.3.4.tar.gz 1542795 BLAKE2B 5a6d5b72f34c8373db615961728a01d0c27005726f316c1233b0b4c4dba688022a53236cc3abe090891a53441d910322ea938ea864a13933a5cea87f18e3426b SHA512 fd61bce7070cf4f28129b47a6c0b01e974101d96b525be9ce1bc4b40ce94197f3c411d17fd8954f5549075c4cdd7ac58a6aaa6faa2f5d3013b761391559e570b
+EBUILD gtkextra-3.3.4.ebuild 671 BLAKE2B 999dda1bcba3805f2bf397ae5f4069ab7fcb9bbf8458b66399c32d84b91b8c628b28b1140dc0d13f09ea680d5b295fee23ff4f1869710d60835821be45ce99c1 SHA512 ea7e70036d76f2486d2f123534d7951a14ed1199af22cf7a21dae3c701f443f5a2e31c0d7248a818d4900c5c3b4bd0611e0b4bd2f8163e5a5b35512af12957b5
diff --git a/x11-libs/gtkextra/gtkextra-3.3.4.ebuild b/x11-libs/gtkextra/gtkextra-3.3.4.ebuild
new file mode 100644 (file)
index 0000000..05d88c0
--- /dev/null
@@ -0,0 +1,28 @@
+# Copyright © 2021 Nick Bowler
+# License GPLv3+: GNU General Public License version 3 or any later version.
+# This is free software: you are free to change and redistribute it.
+# There is NO WARRANTY, to the extent permitted by law.
+
+EAPI=7
+
+DESCRIPTION="A useful set of widgets for creating GUIs for GTK+"
+HOMEPAGE="http://gtkextra.sourceforge.net"
+SRC_URI="mirror://sourceforge/$PN/$P.tar.gz"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc +introspection"
+
+DEPEND="introspection? ( dev-libs/gobject-introspection:= )
+       x11-libs/gtk+:2"
+RDEPEND=$DEPEND
+
+src_configure () {
+       args=(
+               $(use_enable introspection)
+               --disable-glade
+               )
+
+       econf "${args[@]}"
+}