Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pulseaudio/pavucontrol
  • piotrdrag/pavucontrol
  • huftis/pavucontrol
  • tanuk/pavucontrol
  • fsateler/pavucontrol
  • gusnan/pavucontrol
  • kamiyaa/pavucontrol
  • scootergrisen/pavucontrol
  • muzena/pavucontrol
  • wjt/pavucontrol
  • arun/pavucontrol
  • lilydjwg/pavucontrol
  • haagch/pavucontrol
  • t.clastres/pavucontrol
  • Ammuu5/pavucontrol
  • xondrejk/pavucontrol
  • vinimneves25/pavucontrol
  • pan93412/pavucontrol
  • duhlin/pavucontrol
  • dshoreman/pavucontrol
  • ahlinc/pavucontrol
  • RDL-28/pavucontrol
  • comradekingu/pavucontrol
  • elkowar/pavucontrol
  • philipzae/pavucontrol
  • jdloft/pavucontrol
  • mephinet/pavucontrol
  • igor.v.kovalenko/pavucontrol
  • demoisepayne91/pavucontrol
  • warmos/pavucontrol
  • WhyNotHugo/pavucontrol
  • wtaymans/pavucontrol
  • PolyMeilex/pavucontrol
  • alex19EP/pavucontrol
  • heftig/pavucontrol
  • Hi-Angel/pavucontrol
  • oxayotl/pavucontrol
  • Benjamin_Loison/pavucontrol
  • adirat/pavucontrol
  • psykose1/pavucontrol
  • nielsdg/pavucontrol
  • nicolarevelant/pavucontrol
  • C0rn3j/pavucontrol
  • jimmac1/pavucontrol
44 results
Show changes
Commits on Source (4)
......@@ -4,9 +4,6 @@ ChangeLog
config.guess
config.rpath
config.sub
intltool-extract.in
intltool-merge.in
intltool-update.in
aclocal.m4
*.cache
compile
......@@ -15,6 +12,7 @@ config.h.in
config.log
config.status
configure
build
depcomp
README
README.html
......
......@@ -18,9 +18,6 @@
EXTRA_DIST = \
bootstrap.sh \
LICENSE \
intltool-merge.in \
intltool-update.in \
intltool-extract.in \
po/pavucontrol.pot
SUBDIRS=src doc po
......
......@@ -23,7 +23,6 @@ if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then
echo "Activated pre-commit hook."
fi
intltoolize --force --automake
autoreconf --force --install --symlink
if test "x$NOCONFIGURE" = "x"; then
......
......@@ -19,7 +19,7 @@
# along with pavucontrol. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.62)
AC_INIT([pavucontrol],[5.0],[mzcnihpbageby (at) 0pointer (dot) de])
AC_INIT([pavucontrol],[5.0],[pulseaudio-discuss (at) lists (dot) freedesktop (dot) org])
AC_CONFIG_SRCDIR([src/pavucontrol.cc])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
......@@ -67,11 +67,11 @@ fi
ZP_LYNX_DOC
IT_PROG_INTLTOOL([0.35.0])
GETTEXT_PACKAGE=pavucontrol
AC_SUBST([GETTEXT_PACKAGE])
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["$GETTEXT_PACKAGE"],[Gettext package])
AM_GLIB_GNU_GETTEXT
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.19.8])
AC_CONFIG_FILES([
po/Makefile.in
......
#!/bin/sh
lynx --dump $1 | sed 's,file://localhost/.*/doc/README.html,README,'
doc_cdata = configuration_data()
doc_cdata.set('PACKAGE_VERSION', meson.project_version())
doc_cdata.set('PACKAGE_URL', 'http://freedesktop.org/software/pulseaudio/pavucontrol/')
readme_html = configure_file(
input : 'README.html.in',
output : 'README.html',
configuration : doc_cdata,
install : true,
install_dir : docdir,
)
if tidy.found()
test('XHTML documentation uses correct mark-up', tidy, args: ['-e', readme_html])
endif
if with_lynx
custom_target(
'README',
input: readme_html,
output: 'README',
command: [find_program('./html2txt'), '@INPUT@'],
capture: true,
build_by_default: true,
install : true,
install_dir : docdir,
)
endif
install_data(
sources : 'style.css',
install_dir : docdir,
)
project('pavucontrol', 'cpp',
version : '5.0',
meson_version : '>= 0.50.0',
default_options : [ 'c_std=gnu11', 'cpp_std=c++11' ]
)
with_lynx = get_option('lynx')
gtkmm_dep = dependency('gtkmm-3.0', version : '>= 3.0', required : true)
sigcpp_dep = dependency('sigc++-2.0', required : true)
canberragtk_dep = dependency('libcanberra-gtk3', version : '>= 0.16', required : true)
libpulse_dep = dependency('libpulse', version : '>= 5.0', required : true)
libpulsemlglib_dep = dependency('libpulse-mainloop-glib', version : '>= 0.9.16', required : true)
lynx = find_program('lynx', required: with_lynx)
tidy = find_program('tidy', required: false)
configinc = include_directories('.')
prefix = get_option('prefix')
datadir = join_paths(prefix, get_option('datadir'))
docdir = join_paths(datadir, 'doc', 'pavucontrol')
localedir = join_paths(prefix, get_option('localedir'))
cdata = configuration_data()
cdata.set('ENABLE_NLS', 1)
cdata.set_quoted('PACKAGE', 'pavucontrol')
cdata.set_quoted('PACKAGE_NAME', 'pavucontrol')
cdata.set_quoted('PACKAGE_STRING', 'pavucontrol')
cdata.set_quoted('PACKAGE_VERSION', meson.project_version())
cdata.set_quoted('GETTEXT_PACKAGE', 'pavucontrol')
cdata.set_quoted('LOCALEDIR', localedir)
cdata.set_quoted('GLADE_FILE', join_paths(datadir, 'pavucontrol', 'pavucontrol.glade'))
# Now generate config.h from everything above
configure_file(output : 'config.h', configuration : cdata)
subdir('doc')
subdir('po')
subdir('src')
option('lynx',
type : 'boolean', value : true,
description : 'Enable building of the README text file for installation')
# Makefile variables for PO directory in any package using GNU gettext.
# Usually the message domain is the same as the package name.
DOMAIN = $(PACKAGE)
# These two variables depend on the location of this directory.
subdir = po
top_builddir = ..
# These options get passed to xgettext.
XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --from-code=UTF-8
# This is the copyright holder that gets inserted into the header of the
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
# package. (Note that the msgstr strings, extracted from the package's
# sources, belong to the copyright holder of the package.) Translators are
# expected to transfer the copyright for their translations to this person
# or entity, or to disclaim their copyright. The empty string stands for
# the public domain; in this case the translators are expected to disclaim
# their copyright.
COPYRIGHT_HOLDER = PulseAudio contributors
# This tells whether or not to prepend "GNU " prefix to the package
# name that gets inserted into the header of the $(DOMAIN).pot file.
# Possible values are "yes", "no", or empty. If it is empty, try to
# detect it automatically by scanning the files in $(top_srcdir) for
# "GNU packagename" string.
PACKAGE_GNU =
# This is the email address or URL to which the translators shall report
# bugs in the untranslated strings:
# - Strings which are not entire sentences, see the maintainer guidelines
# in the GNU gettext documentation, section 'Preparing Strings'.
# - Strings which use unclear terms or require additional context to be
# understood.
# - Strings which make invalid assumptions about notation of date, time or
# money.
# - Pluralisation problems.
# - Incorrect English spelling.
# - Incorrect formatting.
# It can be your email address, or a mailing list address where translators
# can write to without being subscribed, or the URL of a web page through
# which the translators can contact you.
MSGID_BUGS_ADDRESS =
# This is the list of locale categories, beyond LC_MESSAGES, for which the
# message catalogs shall be used. It is usually empty.
EXTRA_LOCALE_CATEGORIES =
# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt'
# context. Possible values are "yes" and "no". Set this to yes if the
# package uses functions taking also a message context, like pgettext(), or
# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument.
USE_MSGCTXT = no
# These options get passed to msgmerge.
# Useful options are in particular:
# --previous to keep previous msgids of translated messages,
# --quiet to reduce the verbosity.
MSGMERGE_OPTIONS =
# These options get passed to msginit.
# If you want to disable line wrapping when writing PO files, add
# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and
# MSGINIT_OPTIONS.
MSGINIT_OPTIONS =
# This tells whether or not to regenerate a PO file when $(DOMAIN).pot
# has changed. Possible values are "yes" and "no". Set this to no if
# the POT file is checked in the repository and the version control
# program ignores timestamps.
PO_DEPENDS_ON_POT = no
# This tells whether or not to forcibly update $(DOMAIN).pot and
# regenerate PO files on "make dist". Possible values are "yes" and
# "no". Set this to no if the POT file and PO files are maintained
# externally.
DIST_DEPENDS_ON_UPDATE_PO = no
[encoding: UTF-8]
src/pavucontrol.desktop.in
src/pavucontrol.glade
src/pavucontrol.cc
......
i18n = import('i18n')
i18n.gettext(meson.project_name(), preset: 'glib')
po_dir = meson.current_source_dir()
......@@ -21,8 +21,11 @@ localedir = $(datadir)/locale
bin_PROGRAMS=pavucontrol
glade_DATA=pavucontrol.glade
desktop_in_files=pavucontrol.desktop.in
desktop_DATA=$(desktop_in_files:.desktop.in=.desktop)
$(desktop_DATA): $(desktop_in_files)
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
pavucontrol_SOURCES= \
minimalstreamwidget.h minimalstreamwidget.cc \
......@@ -48,5 +51,3 @@ pavucontrol_CXXFLAGS+=-DGLADE_FILE=\"$(gladedir)/pavucontrol.glade\"
EXTRA_DIST = $(glade_DATA) $(desktop_in_files)
CLEANFILES = $(desktop_DATA)
@INTLTOOL_DESKTOP_RULE@
pavucontrol_sources = [
'cardwidget.cc',
'channelwidget.cc',
'devicewidget.cc',
'mainwindow.cc',
'minimalstreamwidget.cc',
'pavuapplication.cc',
'pavucontrol.cc',
'rolewidget.cc',
'sinkinputwidget.cc',
'sinkwidget.cc',
'sourceoutputwidget.cc',
'sourcewidget.cc',
'streamwidget.cc',
]
executable('pavucontrol',
pavucontrol_sources,
install: true,
cpp_args: ['-DHAVE_CONFIG_H'],
include_directories : configinc,
dependencies : [gtkmm_dep, sigcpp_dep, canberragtk_dep, libpulse_dep, libpulsemlglib_dep],
)
install_data('pavucontrol.glade')
desktop_file = i18n.merge_file(
input : 'pavucontrol.desktop.in',
output : 'pavucontrol.desktop',
po_dir : po_dir,
type : 'desktop',
install : true,
install_dir : join_paths(datadir, 'applications'),
)
[Desktop Entry]
Version=1.0
_Name=PulseAudio Volume Control
_GenericName=Volume Control
_Comment=Adjust the volume level
Name=PulseAudio Volume Control
GenericName=Volume Control
Comment=Adjust the volume level
Exec=pavucontrol
Icon=multimedia-volume-control
StartupNotify=true
Type=Application
Categories=AudioVideo;Audio;Mixer;GTK;Settings;X-XFCE-SettingsDialog;X-XFCE-HardwareSettings;
_Keywords=pavucontrol;Microphone;Volume;Fade;Balance;Headset;Speakers;Headphones;Audio;Mixer;Output;Input;Devices;Playback;Recording;System Sounds;Sound Card;Settings;Preferences;
Keywords=pavucontrol;Microphone;Volume;Fade;Balance;Headset;Speakers;Headphones;Audio;Mixer;Output;Input;Devices;Playback;Recording;System Sounds;Sound Card;Settings;Preferences;