diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-04-13 17:43:46 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-04-13 17:43:46 +0100 |
commit | b43fb9ec552fc1a84599161478d77c6716dd9e0a (patch) | |
tree | 46c69cb0cebbe89f4a2a649dda79dba26803adea /x11-plugins/wmamixer | |
parent | 128025db16ea525715d1f5170c635c4f42ce4881 (diff) |
gentoo auto-resync : 13:04:2023 - 17:43:46
Diffstat (limited to 'x11-plugins/wmamixer')
-rw-r--r-- | x11-plugins/wmamixer/Manifest | 2 | ||||
-rw-r--r-- | x11-plugins/wmamixer/wmamixer-1.1.ebuild | 33 |
2 files changed, 35 insertions, 0 deletions
diff --git a/x11-plugins/wmamixer/Manifest b/x11-plugins/wmamixer/Manifest index 16fe92677342..3f2e43a79fd0 100644 --- a/x11-plugins/wmamixer/Manifest +++ b/x11-plugins/wmamixer/Manifest @@ -1,4 +1,6 @@ DIST wmamixer-1.0.tar.gz 93181 BLAKE2B 16370da2c1f408b3b584a649e1317850963f2446997e1027cfa7b2cdfa1351807761d3981e2a2cc91ef42272df1146550b3943862d1cf03af5f96d83e6c2c42f SHA512 a5eac2ea3f63770f64f6d2c921aec0d38c54e953c7f5bf1d7ba14c510cc21927751d6939571eb3aede2c7bd0e44bfc84f8dd06ae1af0ef71f2bce8f1b6614708 +DIST wmamixer-1.1.tar.gz 93181 BLAKE2B de2a42d5dd2086c467d1849aeb06e9bf7b6be5efb255e3ae53fd05b050c607cfa2307972566eb41500277cd25d31fd8cb5db10a8b2bde564940904a17361fbb1 SHA512 a372324795be22dd9c6bc2cb78ab363c7f716bb9373dd0127b8e8e5e036d94d0b2df9654d5f75a9b0d318a6a679967fc3fe48b4bf6979faa8f35c6051478bbaf EBUILD wmamixer-1.0-r1.ebuild 708 BLAKE2B f545b2fe1c33448907149f4c2f7477799717bf8fbe8bb00de4dfe500dc1a47150f7d4146318eb35b64914128b359ff580657a23d581e32e9358f2d5b77051d43 SHA512 0f9193d7b3d55dc546c83775418a36ae99a5a40c9a5c92be1d9cbf4887c04bc662ad03e831be77997cf8fe94928fa12eb45f8a8e40b0d3f9ed8e05970884804b EBUILD wmamixer-1.0.ebuild 690 BLAKE2B 59f091bdd8019d353f5f1e83b428cedd8c69f790fcf5200b0aa14027b093eadf2400266000582f50d9c8b20612b9c442456b3cf58c7d7f92134d559b72d08a1b SHA512 d88c7bcc14fe83d32019499e4f32f77422ccf22389482682a94803fd704f5f9f50238e00d7cc0b2fef645923f91d0adc86eb16dec0ce33fd29d3574449a99197 +EBUILD wmamixer-1.1.ebuild 708 BLAKE2B 0e429d98f691f4ae191e7fdcbc10060bc468dd56abdee61fa38ffe44b8ac0eceee07a2184ef0379e292bfec1e21bb8691840c9326b0bff9624fa78c208cd353e SHA512 0c74429de38eac217f4a25e87990c62d9a93bf95587fbe69dbda7732b3016a6e47decd153a39ffa225ce327c24a5c050067a2fc543cc3d909f6cd39a952cf3e5 MISC metadata.xml 475 BLAKE2B d88131b6a3b937f08ee3f0a5080b7d0a93400cd8528e6595e815dadfa2fe16a9d7a437754147bea18309817fad614e8cc0fd8f992cb8994e25aeee754752fc01 SHA512 fa250ea6d7cd30cdeb6d00c820ce13655312d8a36db2a2750e2e7b487e549f0ae4b0e49d4a576b4e4e21d5f8b8f72890cc7ed344846bab95d17b75675c612968 diff --git a/x11-plugins/wmamixer/wmamixer-1.1.ebuild b/x11-plugins/wmamixer/wmamixer-1.1.ebuild new file mode 100644 index 000000000000..58ae9a06cb97 --- /dev/null +++ b/x11-plugins/wmamixer/wmamixer-1.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit toolchain-funcs + +DESCRIPTION="ALSA mixer dockapp, fork of wmsmixer" +HOMEPAGE="https://github.com/gryf/wmamixer" +SRC_URI="https://github.com/gryf/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/alsa-lib + x11-libs/libXpm + x11-libs/libXext + x11-libs/libX11" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +DOCS=( README.rst ) + +src_compile() { + $(tc-getCC) ${CFLAGS} -c -o wmamixer.o wmamixer.c + $(tc-getCC) ${LDFLAGS} -o wmamixer wmamixer.o -lm -lXpm -lXext -lX11 -lasound +} + +src_install() { + dobin wmamixer + einstalldocs +} |