diff options
author | Conrad Kostecki <conrad@kostecki.com> | 2018-10-07 16:57:17 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2019-03-10 23:35:36 +0100 |
commit | ad4a0ec0f342720647cf1b4f8a1c4aaeff785448 (patch) | |
tree | d66347d31b3f6670fcea7ae5c2eb9dfa264a88de /app-misc | |
parent | app-misc/graphlcd-base: bump to version 1.0.1. (diff) | |
download | gentoo-ad4a0ec0f342720647cf1b4f8a1c4aaeff785448.tar.gz gentoo-ad4a0ec0f342720647cf1b4f8a1c4aaeff785448.tar.bz2 gentoo-ad4a0ec0f342720647cf1b4f8a1c4aaeff785448.zip |
app-misc/glcdprocdriver: bump to version 0.1.2.
Closes: https://bugs.gentoo.org/470658
Closes: https://bugs.gentoo.org/667962
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/10097
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/glcdprocdriver/Manifest | 1 | ||||
-rw-r--r-- | app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild | 33 | ||||
-rw-r--r-- | app-misc/glcdprocdriver/metadata.xml | 26 |
3 files changed, 53 insertions, 7 deletions
diff --git a/app-misc/glcdprocdriver/Manifest b/app-misc/glcdprocdriver/Manifest index a1009e9b5511..ec109e884f11 100644 --- a/app-misc/glcdprocdriver/Manifest +++ b/app-misc/glcdprocdriver/Manifest @@ -1 +1,2 @@ +DIST GLCDprocDriver-0.1.2.tar.gz 21438 BLAKE2B a480d241ad1f7b88ef63a0d2934d59325a9d5739497313c8bcc3f720a071d5bf2804986715e4392fc4713fc3641ae23e5f54cb81cdf1d45db9397d985555260a SHA512 b39dc9d68225bde63a053f124260cec9a081da1d2df6d245be109c8017d60e0e495f056fbc7ee077633d3ac68aaf7cdbaf606e1726f383aa583775a75eea5433 DIST glcdprocdriver-0.0.6.tar.bz2 17209 BLAKE2B 631918337227c43eac163d7353182852500c08db0d1d0f3d4145d9b57895a66eb8c47a16715c1c0e4c3ab044a0de5ed80c282fd57850cbb33636cf775b721a4f SHA512 c489b6e6d6a72306867adb94ed6a6cf6354c834a27fd2ab2ac733707954b18bf93dc56a868e167fcb183602c03ac648bb941699760817e414ab8e8592edb8b7e diff --git a/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild b/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild new file mode 100644 index 000000000000..6b396bfbad4a --- /dev/null +++ b/app-misc/glcdprocdriver/glcdprocdriver-0.1.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="GLCDprocDriver" +MY_P="${MY_PN}-${PV}" + +inherit toolchain-funcs + +DESCRIPTION="A glue between the graphlcd-base library from the GraphLCD project" +HOMEPAGE="https://lucianm.github.io/GLCDprocDriver + https://github.com/lucianm/GLCDprocDriver" +SRC_URI="https://github.com/lucianm/${MY_PN}/archive/0.1.2.tar.gz -> ${MY_P}.tar.gz" + +KEYWORDS="~amd64 ~ppc ~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND=">=app-misc/graphlcd-base-1.0.0" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" +} + +src_install() { + emake DESTDIR="${ED%/}/usr" INCDIR="${ED%/}/usr/share/include" LIBDIR="${ED%/}/usr/$(get_libdir)" install + + einstalldocs +} diff --git a/app-misc/glcdprocdriver/metadata.xml b/app-misc/glcdprocdriver/metadata.xml index 9dde3d16415a..85a394977caf 100644 --- a/app-misc/glcdprocdriver/metadata.xml +++ b/app-misc/glcdprocdriver/metadata.xml @@ -1,12 +1,24 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - GLCDprocDriver is the glue between the app-misc/graphlcd-base - library, which is written in C++, and app-misc/lcdproc's - meta-driver glcdlib, which extends supported displays in LCDproc - by those supported through graphlcd-base (just in text mode, of - course). + <maintainer type="person"> + <email>ck+gentoo@bl4ckb0x.de</email> + <name>Conrad Kostecki</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <longdescription> + GLCDprocDriver is the glue between the graphlcd-base library from the GraphLCD project, + which is written in C++, and LCDproc's meta-driver "glcdlib", which extends supported + displays in LCDproc by those supported through graphlcd-base (but just in text mode, of course). + It is implemented in C++, but provides the necessary wrapper C calls for use by glcdlib. + It is NOT intended to provide general C wrapping for the whole graphlcd-base, library, + as it really only implements the actual meta-driver for LCDproc. </longdescription> + <upstream> + <bugs-to>https://github.com/lucianm/GLCDprocDriver/issues</bugs-to> + <remote-id type="github">lucianm/GLCDprocDriver</remote-id> + </upstream> </pkgmetadata> |