diff options
Diffstat (limited to '')
-rw-r--r-- | TODO.md | 2 | ||||
-rw-r--r-- | app-misc/seq2gif/Manifest | 1 | ||||
-rw-r--r-- | app-misc/seq2gif/metadata.xml | 8 | ||||
-rw-r--r-- | app-misc/seq2gif/seq2gif-0.10.3.ebuild | 50 | ||||
-rw-r--r-- | app-misc/seq2gif/seq2gif-9999.ebuild | 50 |
5 files changed, 110 insertions, 1 deletions
diff --git a/TODO.md b/TODO.md index 58da98e..02358b0 100644 --- a/TODO.md +++ b/TODO.md @@ -3,7 +3,7 @@ * [app-misc/asciiquarium](https://github.com/cmatsuoka/asciiquarium) * [app-misc/fbcat](https://github.com/jwilk/fbcat) * [app-misc/ly](https://github.com/cylgom/ly) -* [app-misc/seq2gif](https://github.com/saitoha/seq2gif) +* [app-misc/seq2gif](https://github.com/saitoha/seq2gif) _Review bundled software and licenses_ * [app-misc/slmenu](https://bitbucket.org/rafaelgg/slmenu) * [app-misc/stag](https://github.com/seenaburns/stag) * [app-misc/ttyrec](https://github.com/mjording/ttyrec) diff --git a/app-misc/seq2gif/Manifest b/app-misc/seq2gif/Manifest new file mode 100644 index 0000000..cb59cad --- /dev/null +++ b/app-misc/seq2gif/Manifest @@ -0,0 +1 @@ +DIST seq2gif-0.10.3.tar.gz 8954899 BLAKE2B 4ef8487da48d05cb534ad474f3edde0ce9b97366f669042a2eb14e46a859b693e9111b19f6f2a8719addd629f1117eb24685da7355544dc6d69775509e25a435 SHA512 4544d6aa6a90af6c43697b80e0fa184737dab8441b716c3e05d43e3c19b4fbe146a42ef966f6935bd5e6368747f49f9b4d257414806da1df5ca52d11b79b6191 diff --git a/app-misc/seq2gif/metadata.xml b/app-misc/seq2gif/metadata.xml new file mode 100644 index 0000000..7869e07 --- /dev/null +++ b/app-misc/seq2gif/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>azahi@teknik.io</email> + <name>azahi</name> + </maintainer> +</pkgmetadata> diff --git a/app-misc/seq2gif/seq2gif-0.10.3.ebuild b/app-misc/seq2gif/seq2gif-0.10.3.ebuild new file mode 100644 index 0000000..0a28691 --- /dev/null +++ b/app-misc/seq2gif/seq2gif-0.10.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 2018-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == *9999 ]]; then + SCM="git-r3" + EGIT_REPO_URI="https://github.com/saitoha/seq2gif.git" +fi + +inherit eutils autotools ${SCM} + +DESCRIPTION="Console-based audio visualizer for ALSA" +HOMEPAGE="https://github.com/saitoha/seq2gif" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/saitoha/seq2gif/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.md ) + +src_prepare() { + eapply_user + eautoreconf +} + +src_configure() { + econf +} + +src_compile() { + emake +} + +src_install() { + einstalldocs + emake DESTDIR="${D}" PREFIX=/usr install +} diff --git a/app-misc/seq2gif/seq2gif-9999.ebuild b/app-misc/seq2gif/seq2gif-9999.ebuild new file mode 100644 index 0000000..0a28691 --- /dev/null +++ b/app-misc/seq2gif/seq2gif-9999.ebuild @@ -0,0 +1,50 @@ +# Copyright 2018-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == *9999 ]]; then + SCM="git-r3" + EGIT_REPO_URI="https://github.com/saitoha/seq2gif.git" +fi + +inherit eutils autotools ${SCM} + +DESCRIPTION="Console-based audio visualizer for ALSA" +HOMEPAGE="https://github.com/saitoha/seq2gif" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/saitoha/seq2gif/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.md ) + +src_prepare() { + eapply_user + eautoreconf +} + +src_configure() { + econf +} + +src_compile() { + emake +} + +src_install() { + einstalldocs + emake DESTDIR="${D}" PREFIX=/usr install +} |