forked from hasufell/hasufell-repository
media-sound/pnmixer: factor out the common parts
Change-Id: I6df742b406107d4e9d86bc1ab3b2ef45b99f532c Reviewed-on: https://galileo.mailstation.de/gerrit/7093 Reviewed-by: Jenkins <wk@mailstation.de> Reviewed-by: Kylie McClain <kylie@somasis.com>
This commit is contained in:
parent
c5838f725f
commit
0a36541795
@ -1,47 +1,14 @@
|
|||||||
# Copyright 2015 Kylie McClain <somasis@exherbo.org>
|
# Copyright 2015 Kylie McClain <somasis@exherbo.org>
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require pnmixer [ release=v0.6 ]
|
||||||
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ]
|
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ]
|
||||||
require github [ user='nicklan' release="v0.6" suffix="tar.gz" ]
|
|
||||||
|
|
||||||
SUMMARY="Simple ALSA mixer application designed to run in system tray"
|
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
LICENCES="GPL-3"
|
|
||||||
|
|
||||||
MYOPTIONS="
|
|
||||||
libnotify
|
|
||||||
( providers: gtk2 gtk3 ) [[ number-selected = exactly-one ]]
|
|
||||||
"
|
|
||||||
|
|
||||||
PLATFORMS="~amd64"
|
PLATFORMS="~amd64"
|
||||||
|
|
||||||
DEPENDENCIES="
|
|
||||||
build:
|
|
||||||
dev-util/intltool
|
|
||||||
sys-devel/gettext
|
|
||||||
virtual/pkg-config
|
|
||||||
build+run:
|
|
||||||
dev-libs/glib:2
|
|
||||||
sys-sound/alsa-lib
|
|
||||||
x11-libs/libX11
|
|
||||||
libnotify? ( x11-libs/libnotify )
|
|
||||||
providers:gtk2? ( x11-libs/gtk+:2[>=2.16.0] )
|
|
||||||
providers:gtk3? ( x11-libs/gtk+:3[>=3.6.0] )
|
|
||||||
suggestion:
|
|
||||||
(
|
|
||||||
xfce-extra/xfce4-mixer
|
|
||||||
) [[
|
|
||||||
*description = [ ${PN} can use a full mixer if available ]
|
|
||||||
]]
|
|
||||||
"
|
|
||||||
|
|
||||||
DEFAULT_SRC_PREPARE_PATCHES=(
|
DEFAULT_SRC_PREPARE_PATCHES=(
|
||||||
"${FILES}"/${PNV}-pkg-config.patch
|
"${FILES}"/${PNV}-pkg-config.patch
|
||||||
)
|
)
|
||||||
|
|
||||||
DEFAULT_SRC_CONFIGURE_OPTION_WITHS=(
|
|
||||||
libnotify
|
|
||||||
'providers:gtk3 gtk3'
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,45 +2,13 @@
|
|||||||
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require pnmixer
|
||||||
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ]
|
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ]
|
||||||
require github [ user='nicklan' ]
|
|
||||||
|
|
||||||
SUMMARY="Simple ALSA mixer application designed to run in system tray"
|
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
LICENCES="GPL-3"
|
|
||||||
|
|
||||||
MYOPTIONS="
|
|
||||||
libnotify
|
|
||||||
( providers: gtk2 gtk3 ) [[ number-selected = exactly-one ]]
|
|
||||||
"
|
|
||||||
|
|
||||||
PLATFORMS="~amd64"
|
PLATFORMS="~amd64"
|
||||||
|
|
||||||
DEPENDENCIES="
|
|
||||||
build:
|
|
||||||
dev-util/intltool
|
|
||||||
sys-devel/gettext
|
|
||||||
virtual/pkg-config
|
|
||||||
build+run:
|
|
||||||
dev-libs/glib:2
|
|
||||||
sys-sound/alsa-lib
|
|
||||||
x11-libs/libX11
|
|
||||||
libnotify? ( x11-libs/libnotify )
|
|
||||||
providers:gtk2? ( x11-libs/gtk+:2[>=2.16.0] )
|
|
||||||
providers:gtk3? ( x11-libs/gtk+:3[>=3.6.0] )
|
|
||||||
suggestion:
|
|
||||||
(
|
|
||||||
xfce-extra/xfce4-mixer
|
|
||||||
) [[
|
|
||||||
*description = [ ${PN} can use a full mixer if available ]
|
|
||||||
]]
|
|
||||||
"
|
|
||||||
|
|
||||||
DEFAULT_SRC_CONFIGURE_OPTION_WITHS=(
|
|
||||||
libnotify
|
|
||||||
'providers:gtk3 gtk3'
|
|
||||||
)
|
|
||||||
|
|
||||||
src_prepare() {
|
src_prepare() {
|
||||||
edo intltoolize --force --copy
|
edo intltoolize --force --copy
|
||||||
autotools_src_prepare
|
autotools_src_prepare
|
||||||
|
42
packages/media-sound/pnmixer/pnmixer.exlib
Normal file
42
packages/media-sound/pnmixer/pnmixer.exlib
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
# Copyright 2015 Kylie McClain <somasis@exherbo.org>
|
||||||
|
# Copyright 2016 Julian Ospald <hasufell@posteo.de>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
myexparam release=v${PV}
|
||||||
|
PNMIXER_RELEASE=$(exparam release)
|
||||||
|
|
||||||
|
require github [ user='nicklan' release="${PNMIXER_RELEASE}" suffix="tar.gz" ]
|
||||||
|
|
||||||
|
SUMMARY="Simple ALSA mixer application designed to run in system tray"
|
||||||
|
LICENCES="GPL-3"
|
||||||
|
|
||||||
|
MYOPTIONS="
|
||||||
|
libnotify
|
||||||
|
( providers: gtk2 gtk3 ) [[ number-selected = exactly-one ]]
|
||||||
|
"
|
||||||
|
|
||||||
|
DEPENDENCIES="
|
||||||
|
build:
|
||||||
|
dev-util/intltool
|
||||||
|
sys-devel/gettext
|
||||||
|
virtual/pkg-config
|
||||||
|
build+run:
|
||||||
|
dev-libs/glib:2
|
||||||
|
sys-sound/alsa-lib
|
||||||
|
x11-libs/libX11
|
||||||
|
libnotify? ( x11-libs/libnotify )
|
||||||
|
providers:gtk2? ( x11-libs/gtk+:2[>=2.16.0] )
|
||||||
|
providers:gtk3? ( x11-libs/gtk+:3[>=3.6.0] )
|
||||||
|
suggestion:
|
||||||
|
(
|
||||||
|
xfce-extra/xfce4-mixer
|
||||||
|
) [[
|
||||||
|
*description = [ ${PN} can use a full mixer if available ]
|
||||||
|
]]
|
||||||
|
"
|
||||||
|
|
||||||
|
DEFAULT_SRC_CONFIGURE_OPTION_WITHS=(
|
||||||
|
libnotify
|
||||||
|
'providers:gtk3 gtk3'
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user