media-player-info-22/0000775000175000017500000000000012414737516011616 500000000000000media-player-info-22/INSTALL0000644000175000017500000003661012367655477012607 00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without warranty of any kind. Basic Installation ================== Briefly, the shell command `./configure && make && make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. media-player-info-22/NEWS0000664000175000017500000003270312414737324012237 00000000000000media-player-info 22 (2014-10-07) ================================= Martin Pitt: Terminate udev rules with an empty line (LP #1364747) Add Sandisk Sansa Clip Sport (LP #1296418) Remove ZTE Score (Debian #748647) media-player-info 21 (2013-07-24) ================================= Martin Pitt (6): Fix build under non-UTF8 locales (#67242) Fix build in separate build tree media-player-info 19 (2013-07-23) ================================= Martin Pitt (5): Drop obsolete fdi2mpi.py Port generator tools to Python 3 Rename mpi files with overly long names Add Motorola Droid 4 Tom Gundersen (1): Create udev hwdb when building with udev >= 196 media-player-info 18 (2013-07-05) ================================= Dan Williams (1): Add HP Veer Markus Ottensmann (1): Add Archos 5 Internet Tablet Martin Pitt (3): Add ZTE Score Add LG Optimus One P500 Drop newer kindles Pavol Babincak (1): Fix playlist path for Sony Ericsson Xperia mini pro media-player-info 17 (2012-05-30) ================================= Jason Leonard (1): Add Creative Zen MX Jonathan Ernst (6): Xperia X12 is better known as Xperia arc Add Nec LifeTouch Note Galaxy Gio (GT-S5660) shares same is as Ace Add a third ID for Acer Liquid (MT) Add Nokia C7-00 Add Sony Ericsson Xperia Mini Linus Walleij (1): Add support for iBeat Jess Martin Pitt (3): Add Nokia N9 Add playlist format to Android devices Add alternative product ID for Sony Ericsson Xperia X10 media-player-info 16 (2012-01-24) ================================= Alex Fiestas (1): Add Nokia N950 Martin Pitt (8): Fix Nokia N950 Add Sandisk Sansa Clip ZIP Add Sony Walkman NWZ-S765 Generalize Sony NWZ-S76x Add Sony Walkman S-750 series Add Sony Walkman NWZ-S545 Add Archos Key Add Sony Walkman NWZ-A800 series media-player-info 15 (2011-10-04) ================================= Alejandro Mery (1): Add another product ID for Sansa Clip+ Bernd Schlapsi (1): Add audio folder for Sony Walkman NWZ-S638F Jo Shields (2): Add HP Pre 3 Add HP Touchpad Jonathan Ernst (21): Add Sony Ericsson W705 Add Vodafone 845 aka Huawei U8120 Android phone Add LG Optimus S Android phone Add Sharp IS03 Android phone Add Sony Ericsson Xperia X12 (Arc) Android phone Add Samsung Galaxy S2 Add Samsung Reality 0x05c6_0x1000 is also used by Samsung Freeform II not only LG phones Add another ID for Samsung Galaxy S2 (thanks kazken3) for the hint Add GoGear Vibe 4Gb (Modelo SA2VBE) Add Nokia 6730 Classic Add Philips GoGear Raga MP3 player Add Sony Ericsson Vivaz Add Barnes and Noble Nook eReaders Add Motorola Atrix Add Archos A43 Internet Tablet Add Notion Ink Adam Android Tablet Add Samsung Galaxy Ace Add Acer Liquid Add Cowon iAUDIO E2 Fix typo Martin Pitt (10): Add TrekStor i.Beat rock Add playlist path to all Android devices Remove %File references SanDisk Sansa Clip+: Add alternate podcasts directory Add Samsung Galaxy SII Add Palm Pre 2 Define "FolderSeparator" and "LineEnding" properties Sandisk Sansa Fuze: Set FolderSeparator Use symbolic names for FolderSeparator Add Creative Zen Style 300 Pavol Babinčák (1): Add Sony Ericsson Xperia mini pro Shishir Joshi (1): Add MicroMax A60 (Android based) William Witt (2): Add Galaxy S 2 sandisk_sansa-fuze-plus: Add MSC mode Device ID Wojciech Zylinski (1): Add Sony Ericsson Xperia Play media-player-info 14 (2011-04-19) ================================= Alejandro Mery (1): Add Sandisk Sansa Fuze+ Jonathan Ernst (4): HTC legend uses same ID as desire/hero/evo-4g in debug mode Add Pantech SIRIUS alpha Add Sharp IS01 Add Sony Ericsson C905 Martin Pitt (2): Fix product ID of Sandisk Sansa Fuze. Add Creative Zen X-Fi Style media-player-info 13 (2011-03-15) ================================= Jonathan Ernst (18): HTC Evo uses same ID as Desire/Hero in non debug mode -> merging Vortex uses same ID (in debug mode) as Ally -> merge Add playlist format to HTC Desire and friends Improve LG 0x6018 phones m-p-i file Improve Sony Ericsson Xperia X10 mini Pro m-p-i Add Sony Ericsson XPERIA X1 Add Motorola Droid 2 Android phone Rename Motorola Droid X mpi file Fix USB id of sony-ericsson K800i (was phone mode instead of mass storage mode) Add storage folder to Sony Ericsson K800i Add Huawei Ideos non-debug mode Add Samsung Galaxy S debug ID Add Desire HD debug ID Don't generate icon rules as it is currently broken (see LP #657609) Add 5 Coby players Add FolderDepth=2 for the Zen Stone Add RCA H100a Add informations about bug reporting Martin Pitt (1): Add Samsung U6. Philippe Gauthier (1): Add Sony Walkman NWZ-E355. media-player-info 12 (2011-01-08) ================================= Jonathan Ernst (19): Improve Blackberries definition Add Playlist formats supported by the Samsung Galaxy Add ID for Blackberry 8130 Pearl Add new blackberries Merge all blackberries as the ID depends not on t Add Samsung YP-P2 Add newer Kindles Add Nokia 6700 Add Samsung GT-S8000 Jet Add LG Ally Use friendly vendor name for LG Add non debug USB ID for Ally and improve mpi Fix typo in Philips GoGear Opus mpi Add Philips GoGear Aria Merge LG Ally and Optimus One as they use the same usb id. Use naming convention for apple-video-ipod.mpi file Add LG Vortex Add HTC EVO 4G Add Google Nexus S Add Google Nexus S's debug mode usb id Luca Ferretti (1): Add Sony Ericsson Xperia X8 Martin Pitt (6): bump version in configure.ac, forgot to commit Add Philips GoGear RaGa (SA2RGA) Add Cowon J3 Add Samsung YP-U4 (product ID 5093) Add LG Optimus One Revert "Add Samsung YP-U4 (product ID 5093)" Philippe Gauthier (1): Add a new USB ID for iRiver T30 Ryan Blue (1): Update video capable Apple iPods media-player-info 11 (2010-11-10) ================================ Christophe Fergeau (3): Revert "Mark android devices as such" Revert "Mark the n900 as a maemo device" Revert "Mark the Palm Pre as a WebOS device" Jonathan Ernst (83): Add Sony Ericsson W995 Add Sony Ericsson K610i Add Sony Ericsson W580i Add Nokia N97 Add Nokia E71 (it's an S60 phone but has USBModel!=S60) Add Sansa Clip Fix usb id (the previous one was MTP mode) Add the official/european phone name for Motorola Droid and fix folder name Rename mpi file to reflect device name change Don't need to specify the OS in the phone's name Add HTC Legend phone Add reference to Nokia N900 icon (found in banshee icons) Add HTC Snap (music can be stored anywhere) Fix HTC Diamond file to not include other phones IDs Add HTC Dream/ADP1/G1/Magic/Tattoo Add HTC Desire/Hero Phones Add Philips GoGear Mix Add Sony Walkman NWZ-E443 Split Sony Ericsson phones Add some LG Electronics devices Add Motorola Droid X phone Add Dane-Elec Music Mediatouch Split USB ID 6601 from the other Galaxy Ids as it is used by many other phones Cleanup Sandisk devices Separate Blackberry Bold from the rest of the Blackberries Split Samsung music players Add Cowon iAudio 9 Add Cowon iAUDIO 7 Fix Cowon iAudio 7 mpi file Add Sony Ericsson W660i Really add Sony Ericsson W660i Add Nokia 5800 Improve Nokia 5310 definition Improve HTC Desire definition Add supported audio formats for HTC Desire/Hero Add Sony Ericsson W810i Cleanup Sony Ericsson phones Add Sony Ericsson W595 0x6018 is used by at least GM360/GD510/GW520/KP501 phones Add Nokia N95 Add Nokia 6110 Navigator Add Cowon iAUDIO X5 071b:3203 matches at least Archos 1 Vision, Archos Vision 18 and Rockchip ROCK MP3 Delete unused files Add Archos 5 Tablet 0x1100 and 0x1101 is used by at many Media Players Add Acer Liquid (Android phone) Add Creative Zen X-Fi 2 Add Philips GoGear Opus Add Archos 32 IT Improve Nokia 5800 definition Add Sony Ericsson Xperia X10 mini pro Add Motorola i1 Cowon iAUDIO G2 uses same id as iAUDIO U5 Add music location for YP-T9 Add Samsung YP-T10 which has MTP and MSC firmware/modes available Improve 071b:3203 mpi file for better Archos Vision 3 support Add Sony Ericsson Xperia X10 Mini Pro USB debug ID Add Huawei Ideos Add Philips media player (with yet unknown name) Add definition of storage section Add myself to the AUTHORS file ;-) Add Cowon D2 Add Sandisk Sansa View (msc mode) Improve README file Add LG phones Add Samsung Galaxy Icon reference as found in gnome-icon-theme-extras Add Samsung YP S3 (UMS firmware) and YP T7 Add iRiver T60 Add alternate directory for playlists Add two Ali MP3 players Cleanup product names for jetflash and teac players Add Nokia N91 Add Samsung YP-F2R Specify the name of Philips 0x0163 media player Add three Nokia phones (6120,6303,6600i) Add three Sony Ericsson phones (W200,V630i,V640i) Rename and simplify iriver S10 Cleanup Motorola phones Filenames uniformization and naming convention Add Samsung YP-Q2 Thanks Oleg Andreych for the infos Add HTC Vision (Android phone) Add HTC Incredible (Android Phone) Martin Pitt (2): clean up RIM blackberry MPIs Samsung U5: Use storage AccessProtocol Stephane BARON (1): Fix typo in archos-vision_18.mpi media-player-info 10 (2010-09-21) ================================ Martin Pitt (5): fix copy&paste errors in tools copyright headers mpi2udev.py: Add missing comma in rules with icons sanitize name of iRiver T30 sanitize name of hama T30 Add automatic syntax checking Stephane BARON (1): Add Archos Vision 18 media-player-info 9 (2010-09-20) ================================ Christophe Fergeau (8): Give user-readable name to HTC Diamond mpi file Add one more ID to htc-diamond.mpi Add another Samsung Galaxy ID Fix Xperia X10 usb ID Add mpi file for Motorola CLIQ Mark android devices as such Mark the n900 as a maemo device Mark the Palm Pre as a WebOS device Jonathan Ernst (3): Alternative ID and icon for Motorola Droid Add Sony Xperia X10 Mini Add Samsung YP-M1 Martin Pitt (5): Fix Xperia X10 device ID Add Motorola Dext Add iRiver E30 Fix Apple video player detection Motorola Cliq has its own mpi now media-player-info 8 (2010-09-13) ================================ Florian Boucault (2): Fix OutputFormats syntax Add audio/flac as output format for the Samsung Galaxy media-player-info 7 (2010-08-24) ================================ Angel Abad (2): Add Sony Ericsson Xperia X10 Update Sony Ericsson Xperia X10 Bastien Nocera (1): Add parser tools to the distribution Bertrand Lorentz (1): Add Sony Ericsson Xperia X10 Christophe Fergeau (1): Add another Samsung Galaxy ID Martin Pitt (8): Dual-license fdi2mpi.py under X11, too fdi2mpi.py: fix copy&paste typo in license Rebuild udev rules on changes of mpi2udev.py mpi2udev.py: Add matching to USB product and manufacturer name README: Improve description of detection Add Rockbox players Add Archos 5 IMT Revert "Add Sony Ericsson Xperia X10" bugzilla-daemon@freedesktop.org (1): Add TEAC MP3 Player MP-375SD media-player-info 6 (2010-04-08) ================================ Bastien Nocera (8): Add icon for HTC G1 phone Add Palm Prē Add Samsung Galaxy Add Nokia N900 phone Add MP3 support to the Samsung Galaxy Add Google Nexus One Add Huawei Pulse phone Add icon for Google Nexus One phone Christophe Fergeau (3): fix name of iPod icon name fix format of DeviceMatch entries in new mpi files add mpi file for Sansa Clip+ Martin Pitt (1): Fix udev rules to catch MTP devices, too Reinout van Schouwen (1): Add Cowon S9 media-player-info 5 (2010-03-18) ================================ Dallen Wilson (1): add iRiver H320, H340 (LP: #487963) Jonathan Matthew (1): add Amazon Kindle 2 Martin Pitt (8): Move udev rules to a much earlier place Add Motorola Droid (LP: #495764) Add Philips GoGear RaGa (SA1942/02) (LP: #528948) Add Creative Zen Touch. (LP: #478789) add .gitignore Add Samsung U5 Add support for per-device icons apple-ipod.mpi: Set "multimedia-player-ipod" icon media-player-info 4 =================== - Fix udev rules for change events. (LP #454654) - Take USBProduct into account when generating udev rules, to avoid overly generic rules. (LP #477976) - Sync with current hal-info to get the latest music players. media-player-info 3 =================== - fix copyright holders in COPYING media-player-info 2 =================== - rename to media-player-info media-player-id 1 ================= - initial release of media-player-id media-player-info-22/README0000664000175000017500000001270511663120270012407 00000000000000INTRODUCTION ============ media-player-info is a repository of data files describing media player (only USB Mass Storage ones) capabilities. These files contain information about the directory layout to use to add music to these devices, about the supported file formats, ... These capabilities used to be provided by HAL in the 10-usb-music-players.fdi file but had to be moved elsewhere as part of the big HALectomy. The music player capabilities are now described in .mpi files (which are .ini-like files) which you can find in media-players/. These mpi files are used to generate an udev rule to identify these devices. This rule associate an ID_MEDIA_PLAYER attribute to the media player devices. This attribute specifies the name of the .mpi file to use to find out the device capabilities. The .mpi can then be looked up in $XDG_DATA_DIRS/media-player-info (see the XDG Base Directory Specification for more information about what this means). Both the mpi files and the udev rule have to be installed on the system. Indeed, the udev rule only contain what is strictly necessary, ie it only matches media player devices and set an ID_MEDIA_PLAYER udev property on the device. This property contains the name of the mpi file. It's up to applications needing detailed information about media players (like the audio formats they support, ...) to parse this file and extract whatever is necessary from it. The media player information isn't included directly in udev database because not many apps need it, and because we didn't want to repeat the same mistakes as HAL and include everything in its database. If you encounter an USB Mass Storage device that isn't detected correctly, please open a bug against media-player-info : https://bugs.freedesktop.org/enter_bug.cgi?product=media-player-info MPI FILE FORMAT =============== Each mpi file is separated in several sections: - [Device] (only mandatory section) - [Media] - [Playlist] - [storage] The [Device] section contains information about the media player: - Product: human-readable product (device) name - Vendor: human-readable vendor name - AccessProtocol: the way this device is accessed. For now the only supported value is "storage" for USB mass storage devices. - Icon: (optional) Icon name to use instead of the default "media-player". For actually identifying a player from hardware information in /sys, there are two possibilities: - DeviceMatch field: semi-colon separated list of "usb::" values ( is the USB vendor ID, is the USB product ID). This lists all the USB that are described by the current mpi file. - A combination of "USBVendor", "USBProduct", "USBModel", and "USBManufacturer" strings (which map to the corresponding sysfs fields). You can use the '*' wildcard. See apple-ipod.mpi for an example. The [Media] section describes in more details which media formats the player supports. For now it only describes audio capabilities, but video or artwork capabilities might be added in the future. Each entry in the Media section is a semi-colon-separated list of media mime types (audio/mpeg, audio/x-wav, ...). - InputFormats: audio formats the media player can record to - OutputFormats: audio formats the media player can play back The [Playlist] section describes the player playlist capabilites. If it's absent, it means the player doesn't support playlists (or that the information contained in media-player-info is incomplete, in such a case, please email us or file a bug). - Formats: a semi-colon-separated list of the mime-types of the playlist formats supported by the device - FolderSeparator: separator between directory/file names in playlist files. If not given, "Unix" is assumed, which uses '/'. Some players require "DOS", which will use '\'. Other values are invalid and will be ignored. - LineEnding: line separator in playlist files. This can have the values 'CR', 'LF', or 'CRLF', which correspond to 0x0D (\r), 0x0A (\n), and 0x0D0A (\r\n) respectively. If not given, the default behaviour depends on the music player software. The [storage] section describes the location where media files can be found and have to be stored. - AudioFolders: a semi-colon-separeted list of directories where audio files can be found and must be stored - PlaylistPath: describes where and how the playlist files can be found and have to be stored - RequiresEject: the eject ioctl is required to properly eject the media - FolderDepth: this tells applications exactly how deep of directory hierarchies files should be placed in. If the device does not have a limit, do not set this property. MPI FILES NAMING CONVENTION =========================== The current naming convention for .mpi file is as follows : _.mpi Where : - is the official name of the device's manufacturer. If the same usb id is used by different market names, use the manufacturer name from usb.ids/lsusb. If vendor name has more than one word, words are separated by '-' - is the official name of the device. If the same .mpi file matches more than one device, you can separate devices with extra "_". If the .mpi file matches a lot of different market names, you can use 0x1111 where 1111 is the product id of the device (in this case, use a generic name inside the .mpi file (e.g. "Mobile phone", "Media player"). If device name has more than one word, words are separated by '-' Please note that these conventions are not absolute rules but we try to keep the naming coherant. media-player-info-22/AUTHORS0000644000175000017500000000017111466460076012603 00000000000000Martin Pitt Christophe Fergeau Jonathan Ernst media-player-info-22/ChangeLog0000644000175000017500000000007611426557223013306 00000000000000-- please have a look at the git history for the changelog -- media-player-info-22/Makefile.in0000664000175000017500000005564412414737510013613 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = . DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) COPYING \ install-sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UDEV_CFLAGS = @UDEV_CFLAGS@ UDEV_DIR = @UDEV_DIR@ UDEV_LIBS = @UDEV_LIBS@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = media-players tools DISTCHECK_CONFIGURE_FLAGS = --with-udevdir='$${libdir}/udev-distcheck' all: all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-tags \ distcleancheck distdir distuninstallcheck dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: media-player-info-22/Makefile.am0000644000175000017500000000014311434714311013553 00000000000000SUBDIRS=media-players tools DISTCHECK_CONFIGURE_FLAGS = --with-udevdir='$${libdir}/udev-distcheck' media-player-info-22/configure0000775000175000017500000033640412414737510013451 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for media-player-info 22. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: devkit-devel@lists.freedesktop.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='media-player-info' PACKAGE_TARNAME='media-player-info' PACKAGE_VERSION='22' PACKAGE_STRING='media-player-info 22' PACKAGE_BUGREPORT='devkit-devel@lists.freedesktop.org' PACKAGE_URL='' ac_unique_file="media-players/" ac_subst_vars='LTLIBOBJS LIBOBJS UDEV_DIR PYTHON HAVE_HWDB_FALSE HAVE_HWDB_TRUE UDEV_LIBS UDEV_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules with_udevdir ' ac_precious_vars='build_alias host_alias target_alias PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR UDEV_CFLAGS UDEV_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures media-player-info 22 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/media-player-info] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of media-player-info 22:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-udevdir=DIR Installation path for udev rules [auto] Some influential environment variables: PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path UDEV_CFLAGS C compiler flags for UDEV, overriding pkg-config UDEV_LIBS linker flags for UDEV, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF media-player-info configure 22 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by media-player-info $as_me 22, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.14' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='media-player-info' VERSION='22' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for UDEV" >&5 $as_echo_n "checking for UDEV... " >&6; } if test -n "$UDEV_CFLAGS"; then pkg_cv_UDEV_CFLAGS="$UDEV_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"udev\""; } >&5 ($PKG_CONFIG --exists --print-errors "udev") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_UDEV_CFLAGS=`$PKG_CONFIG --cflags "udev" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$UDEV_LIBS"; then pkg_cv_UDEV_LIBS="$UDEV_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"udev\""; } >&5 ($PKG_CONFIG --exists --print-errors "udev") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_UDEV_LIBS=`$PKG_CONFIG --libs "udev" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then UDEV_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "udev" 2>&1` else UDEV_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "udev" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$UDEV_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (udev) were not met: $UDEV_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables UDEV_CFLAGS and UDEV_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables UDEV_CFLAGS and UDEV_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else UDEV_CFLAGS=$pkg_cv_UDEV_CFLAGS UDEV_LIBS=$pkg_cv_UDEV_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi # Check whether --with-udevdir was given. if test "${with_udevdir+set}" = set; then : withval=$with_udevdir; ac_with_udevdir=$withval else ac_with_udevdir="" fi if test "${ac_with_udevdir}" = ""; then ac_with_udevdir=`$PKG_CONFIG --variable=udevdir udev` fi # supports hwdb? if pkg-config --atleast-version=196 udev; then HAVE_HWDB_TRUE= HAVE_HWDB_FALSE='#' else HAVE_HWDB_TRUE='#' HAVE_HWDB_FALSE= fi # Extract the first word of "python3", so it can be a program name with args. set dummy python3; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$PYTHON"; then ac_cv_prog_PYTHON="$PYTHON" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_PYTHON="python3" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi PYTHON=$ac_cv_prog_PYTHON if test -n "$PYTHON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 $as_echo "$PYTHON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$PYTHON" = "x"; then as_fn_error $? "python3 not found" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: installing udev rules in ${ac_with_udevdir}/rules.d" >&5 $as_echo "$as_me: installing udev rules in ${ac_with_udevdir}/rules.d" >&6;} UDEV_DIR=${ac_with_udevdir} ac_config_files="$ac_config_files Makefile tools/Makefile media-players/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. ac_script=' :mline /\\$/{ N s,\\\n,, b mline } t clear :clear s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g t quote b any :quote s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g s/\[/\\&/g s/\]/\\&/g s/\$/$$/g H :any ${ g s/^\n// s/\n/ /g p } ' DEFS=`sed -n "$ac_script" confdefs.h` ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -z "${HAVE_HWDB_TRUE}" && test -z "${HAVE_HWDB_FALSE}"; then as_fn_error $? "conditional \"HAVE_HWDB\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by media-player-info $as_me 22, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE Configuration files: $config_files Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ media-player-info config.status 22 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --he | --h | --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; "media-players/Makefile") CONFIG_FILES="$CONFIG_FILES media-players/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" eval set X " :F $CONFIG_FILES " shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi media-player-info-22/configure.ac0000644000175000017500000000144212414737476014030 00000000000000AC_INIT(media-player-info, 22, devkit-devel@lists.freedesktop.org) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([media-players/]) PKG_CHECK_MODULES(UDEV, udev) AC_ARG_WITH(udevdir, AS_HELP_STRING([--with-udevdir=DIR],[Installation path for udev rules @<:@auto@:>@]), [ac_with_udevdir=$withval], [ac_with_udevdir=""]) if test "${ac_with_udevdir}" = ""; then ac_with_udevdir=`$PKG_CONFIG --variable=udevdir udev` fi # supports hwdb? AM_CONDITIONAL([HAVE_HWDB], [pkg-config --atleast-version=196 udev]) AC_CHECK_PROG([PYTHON], [python3], [python3]) if test "x$PYTHON" = "x"; then AC_MSG_ERROR([python3 not found]) fi AC_MSG_NOTICE([installing udev rules in ${ac_with_udevdir}/rules.d]) AC_SUBST([UDEV_DIR],[${ac_with_udevdir}]) AC_OUTPUT([ Makefile tools/Makefile media-players/Makefile ]) media-player-info-22/aclocal.m40000664000175000017500000010613312414737507013402 00000000000000# generated automatically by aclocal 1.14.1 -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, [m4_warning([this file was generated for autoconf 2.69. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # PKG_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable pkgconfigdir as the location where a module # should install pkg-config .pc files. By default the directory is # $libdir/pkgconfig, but the default can be changed by passing # DIRECTORY. The user can override through the --with-pkgconfigdir # parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_INSTALLDIR # PKG_NOARCH_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable noarch_pkgconfigdir as the location where a # module should install arch-independent pkg-config .pc files. By # default the directory is $datadir/pkgconfig, but the default can be # changed by passing DIRECTORY. The user can override through the # --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_NOARCH_INSTALLDIR # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # ------------------------------------------- # Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])# PKG_CHECK_VAR # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.14' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.14.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.14.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2013 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR media-player-info-22/COPYING0000644000175000017500000000272311426557223012570 00000000000000Copyright (c) 2009, Martin Pitt, Christophe Fergeau All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the author(s) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. media-player-info-22/install-sh0000755000175000017500000003325512367655477013564 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-11-20.07; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: media-player-info-22/missing0000755000175000017500000001533012367655477013151 00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2013 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: media-player-info-22/media-players/0000775000175000017500000000000012414737516014352 500000000000000media-player-info-22/media-players/Makefile.in0000664000175000017500000003712612414737510016342 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = media-players DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(dist_mpi_DATA) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(mpidir)" "$(DESTDIR)$(udevhwdbdir)" \ "$(DESTDIR)$(udevrulesdir)" DATA = $(dist_mpi_DATA) $(nodist_udevhwdb_DATA) \ $(nodist_udevrules_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UDEV_CFLAGS = @UDEV_CFLAGS@ UDEV_DIR = @UDEV_DIR@ UDEV_LIBS = @UDEV_LIBS@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ mpidir = $(datadir)/media-player-info dist_mpi_DATA = $(shell find $(top_srcdir)/media-players -name "*.mpi" -printf "%p\n") udevrulesdir = $(UDEV_DIR)/rules.d nodist_udevrules_DATA = 40-usb-media-players.rules @HAVE_HWDB_TRUE@udevhwdbdir = $(UDEV_DIR)/hwdb.d @HAVE_HWDB_TRUE@nodist_udevhwdb_DATA = 20-usb-media-players.hwdb all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu media-players/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu media-players/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-dist_mpiDATA: $(dist_mpi_DATA) @$(NORMAL_INSTALL) @list='$(dist_mpi_DATA)'; test -n "$(mpidir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(mpidir)'"; \ $(MKDIR_P) "$(DESTDIR)$(mpidir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(mpidir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(mpidir)" || exit $$?; \ done uninstall-dist_mpiDATA: @$(NORMAL_UNINSTALL) @list='$(dist_mpi_DATA)'; test -n "$(mpidir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(mpidir)'; $(am__uninstall_files_from_dir) install-nodist_udevhwdbDATA: $(nodist_udevhwdb_DATA) @$(NORMAL_INSTALL) @list='$(nodist_udevhwdb_DATA)'; test -n "$(udevhwdbdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(udevhwdbdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(udevhwdbdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(udevhwdbdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(udevhwdbdir)" || exit $$?; \ done uninstall-nodist_udevhwdbDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_udevhwdb_DATA)'; test -n "$(udevhwdbdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(udevhwdbdir)'; $(am__uninstall_files_from_dir) install-nodist_udevrulesDATA: $(nodist_udevrules_DATA) @$(NORMAL_INSTALL) @list='$(nodist_udevrules_DATA)'; test -n "$(udevrulesdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(udevrulesdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(udevrulesdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(udevrulesdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(udevrulesdir)" || exit $$?; \ done uninstall-nodist_udevrulesDATA: @$(NORMAL_UNINSTALL) @list='$(nodist_udevrules_DATA)'; test -n "$(udevrulesdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(udevrulesdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(mpidir)" "$(DESTDIR)$(udevhwdbdir)" "$(DESTDIR)$(udevrulesdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_mpiDATA install-nodist_udevhwdbDATA \ install-nodist_udevrulesDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-dist_mpiDATA uninstall-nodist_udevhwdbDATA \ uninstall-nodist_udevrulesDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-local \ cscopelist-am ctags-am distclean distclean-generic distdir dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dist_mpiDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-nodist_udevhwdbDATA install-nodist_udevrulesDATA \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_mpiDATA \ uninstall-nodist_udevhwdbDATA uninstall-nodist_udevrulesDATA 40-usb-media-players.rules: $(dist_mpi_DATA) $(top_srcdir)/tools/mpi2udev.py @HAVE_HWDB_TRUE@ $(top_srcdir)/tools/mpi2udev.py hwdb $(dist_mpi_DATA) > 40-usb-media-players.rules @HAVE_HWDB_FALSE@ $(top_srcdir)/tools/mpi2udev.py udev $(dist_mpi_DATA) > 40-usb-media-players.rules $(top_srcdir)/tools/udev-syntax-check.py 40-usb-media-players.rules @HAVE_HWDB_TRUE@20-usb-media-players.hwdb: $(dist_mpi_DATA) $(top_srcdir)/tools/mpi2hwdb.py @HAVE_HWDB_TRUE@ $(top_srcdir)/tools/mpi2hwdb.py $(dist_mpi_DATA) > 20-usb-media-players.hwdb clean-local: rm -f 40-usb-media-players.rules 20-usb-media-players.hwdb # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: media-player-info-22/media-players/Makefile.am0000644000175000017500000000156112173751110016313 00000000000000mpidir = $(datadir)/media-player-info dist_mpi_DATA = $(shell find $(top_srcdir)/media-players -name "*.mpi" -printf "%p\n") udevrulesdir = $(UDEV_DIR)/rules.d nodist_udevrules_DATA = 40-usb-media-players.rules 40-usb-media-players.rules: $(dist_mpi_DATA) $(top_srcdir)/tools/mpi2udev.py if HAVE_HWDB $(top_srcdir)/tools/mpi2udev.py hwdb $(dist_mpi_DATA) > 40-usb-media-players.rules else $(top_srcdir)/tools/mpi2udev.py udev $(dist_mpi_DATA) > 40-usb-media-players.rules endif $(top_srcdir)/tools/udev-syntax-check.py 40-usb-media-players.rules if HAVE_HWDB udevhwdbdir = $(UDEV_DIR)/hwdb.d nodist_udevhwdb_DATA = 20-usb-media-players.hwdb 20-usb-media-players.hwdb: $(dist_mpi_DATA) $(top_srcdir)/tools/mpi2hwdb.py $(top_srcdir)/tools/mpi2hwdb.py $(dist_mpi_DATA) > 20-usb-media-players.hwdb endif clean-local: rm -f 40-usb-media-players.rules 20-usb-media-players.hwdb media-player-info-22/media-players/cowon_iaudio-9.mpi0000644000175000017500000000063511564420544017623 00000000000000[Device] Product=iAUDIO 9 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0910; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav;video/divx;video/x-ms-wmv;application/x-shockwave-flash;audio/x-monkeys-audio [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlist/ AudioFolders=Music/;Video/;Recordings/FM Radio/;Recordings/Mic/ media-player-info-22/media-players/pantech_sirius-alpha.mpi0000644000175000017500000000045111564420544021075 00000000000000[Device] Product=SIRIUS alpha Vendor=Pantech AccessProtocol=storage DeviceMatch=usb:10a9:6021; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/x-wav;audio/x-midi;application/ogg;audio/amr;audio/m4a [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=Music/; media-player-info-22/media-players/samsung_yp-q2.mpi0000644000175000017500000000040011564420544017471 00000000000000[Device] Product=YP-Q2 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:511c; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/flac [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/ media-player-info-22/media-players/cowon_0x0601_0x0602_0x0604.mpi0000644000175000017500000000044511564420544020700 00000000000000[Device] Product=iAUDIO G3, 5 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0601;usb:0e21:0602;usb:0e21:0604; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=PLAYLIST/ media-player-info-22/media-players/sony-ericsson_v640i.mpi0000644000175000017500000000023011564420544020530 00000000000000[Device] Product=V640i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e0af; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac media-player-info-22/media-players/iriver_0x1101_0x1103_0x1105_0x1111.mpi0000644000175000017500000000044411564420544021753 00000000000000[Device] Product=iFP 100 UMS, 300 UMS, 500 UMS (supports application/ogg only after firmware upgrade), N10 UMS Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:4102:1101;usb:4102:1103;usb:4102:1105;usb:4102:1111; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/coby_mpc843_mpc853.mpi0000644000175000017500000000021611564420544020122 00000000000000[Device] Product=Coby Vendor=MPC843/MPC853 AccessProtocol=storage DeviceMatch=usb:0402:5667; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/samsung_u6.mpi0000644000175000017500000000040111564420544017054 00000000000000[Device] Product=U6 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5133; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/flac;application/ogg; InputFormats=audio/mpeg [storage] AudioFolders=Music/ PlaylistPath=Playlists/;Recorded Files media-player-info-22/media-players/jens-of-sweeden_mp-130.mpi0000644000175000017500000000027411564420544020763 00000000000000[Device] Product=MP-130 Vendor=JoS AccessProtocol=storage DeviceMatch=usb:1332:1325; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/creative_zen-nano.mpi0000644000175000017500000000017711564420544020406 00000000000000[Device] Product=Zen Nano Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:412c; [Media] OutputFormats=audio/mpeg media-player-info-22/media-players/nokia_6120.mpi0000644000175000017500000000024611564420544016545 00000000000000[Device] Product=6120 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:002d; [Media] OutputFormats=audio/mpeg;audio/mp4;audio/aac;audio/x-aac;audio/x-ms-wma media-player-info-22/media-players/cowon_iaudio-7.mpi0000644000175000017500000000063511564420544017621 00000000000000[Device] Product=iAUDIO 7 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0751; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav;video/divx;video/x-ms-wmv;application/x-shockwave-flash;audio/x-monkeys-audio [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlist/ AudioFolders=Music/;Video/;Recordings/FM Radio/;Recordings/Mic/ media-player-info-22/media-players/samsung_galaxy.mpi0000664000175000017500000000070011626662263020020 00000000000000[Device] Product=Galaxy Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:6602;usb:04e8:6603;usb:04e8:6640;usb:04e8:681c;usb:04e8:681d;usb:04e8:685b;usb:04e8:6877;04e8:685e; Icon=phone-samsung-galaxy-s [Media] OutputFormats=audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/mpeg;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ media-player-info-22/media-players/sony_walkman-nwz-135f.mpi0000644000175000017500000000025211564420544020763 00000000000000[Device] Product=Walkman NWZ-135F Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:036e; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/iriver_0x1xxx.mpi0000644000175000017500000000056711564420544017542 00000000000000[Device] Product=T10 1G, T20 UMS, T30 UMS, T10 UMS,iFP 700/800/900/1000 UMS, H10 20GB/50GB UMS Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:4102:1013;usb:4102:1014;usb:4102:1018;usb:4102:1020;usb:4102:1107;usb:4102:1108;usb:4102:1109;usb:4102:1110;usb:4102:2001;usb:4102:2002; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg media-player-info-22/media-players/samsung_yp-f2r.mpi0000644000175000017500000000030011564420544017637 00000000000000[Device] Product=YP-F2R Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5051; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav media-player-info-22/media-players/sony-ericsson_w302i.mpi0000644000175000017500000000031711564420544020532 00000000000000[Device] Product=W302i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e0c8; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/aac;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/nokia_n97.mpi0000644000175000017500000000057311564420544016575 00000000000000[Device] Product=N97 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:026a; [Media] OutputFormats=audio/amr;audio/x-amr;audio/mp3;audio/x-mp3;audio/x-mpg;audio/mpeg;audio/mpeg3;audio/mpg3;audio/mpg;audio/mp4;audio/m4a;audio/aac;audio/x-aac;audio/mp4a-latm;audio/wav;audio/x-ms-wma [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=Sounds/Digital PlaylistPath= media-player-info-22/media-players/cowon_iaudio-u5_g2.mpi0000644000175000017500000000044611564420544020374 00000000000000[Device] Product=iAUDIO Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0760; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=PLAYLIST/ AudioFolders=MUSIC/;RECORD/;VOICE/ media-player-info-22/media-players/samsung_yp-t7f.mpi0000644000175000017500000000033711564420544017660 00000000000000[Device] Product=YP-T7F Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:503d; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/creative_zen-x-fi-2.mpi0000644000175000017500000000035111564420544020447 00000000000000[Device] Product=Zen X-Fi 2 Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:2020; [Media] OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma;audio/x-flac;audio/audible;audio/aac [storage] AudioFolders=Music/;Recorded/ media-player-info-22/media-players/sony-ericsson_xperia-x12.mpi0000664000175000017500000000064411755452536021603 00000000000000[Device] Product=Xperia Arc/X12 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e14f;usb:0fce:614f; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/amr-wbr [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ [Playlist] Formats=audio/mpegurl;audio/x-mpegurl;audio/x-scpls media-player-info-22/media-players/samsung_yp-u4.mpi0000644000175000017500000000027711564420544017513 00000000000000[Device] Product=YP-U4 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5092; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav media-player-info-22/media-players/hama_dmp-100.mpi0000644000175000017500000000017211564420544017036 00000000000000[Device] Product=DMP-100 Vendor=hama AccessProtocol=storage DeviceMatch=usb:0dda:0302; [Media] OutputFormats=audio/mpeg media-player-info-22/media-players/samsung_galaxy-ace_gio.mpi0000664000175000017500000000051711755452536021415 00000000000000[Device] Product=Galaxy Ace/Gio Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:689e; [Media] OutputFormats=audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/mpeg;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ media-player-info-22/media-players/jetflash_0x8004.mpi0000644000175000017500000000043511564420544017517 00000000000000[Device] Product=Music Player Vendor=Jetflash AccessProtocol=storage DeviceMatch=usb:066f:8004; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma [Playlist] Formats=audio/x-mpegurl [storage] DriveType=sd_mmc PlaylistPath=PLAYLIST/ AudioFolders=/ media-player-info-22/media-players/sony-ericsson_k850i.mpi0000644000175000017500000000046511564420544020532 00000000000000[Device] Product=K850i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e075; [Media] InputFormats=audio/amr OutputFormats=audio/mpeg;audio/aac;audio/x-wav;audio/amr;audio/amr-wb;audio/vnd.m-realaudio;audio/3gpp;audio/x-m4b;audio/mp4;audio/midi;audio/x-ms-wma [storage] AudioFolders=Music/ media-player-info-22/media-players/creative_zen-stone.mpi0000644000175000017500000000035611564420544020602 00000000000000[Device] Product=Zen Stone Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:4154; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;audio/x-wav [storage] AudioFolders=MUSIC/ FolderDepth=2 media-player-info-22/media-players/sony_psp.mpi0000644000175000017500000000037411564420544016650 00000000000000[Device] AccessProtocol=storage USBVendor=[sS][oO][nN][yY]* Vendor=Sony USBModel=*PSP* [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/mpeg;audio/mp4;audio/vnd.sony.atrac3 [storage] FolderDepth=0 DriveType=memory_stick AudioFolders=PSP/MUSIC/ media-player-info-22/media-players/sony-ericsson_xperia-x10.mpi0000664000175000017500000000065611761356664021606 00000000000000[Device] Product=Xperia X10 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:312e;usb:0fce:d12e;usb:0fce:e12e; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/amr-wbr [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ [Playlist] Formats=audio/mpegurl;audio/x-mpegurl;audio/x-scpls media-player-info-22/media-players/sonicblue_rio-karma.mpi0000644000175000017500000000027711564420544020725 00000000000000[Device] Product=Rio Karma Vendor=SONICblue AccessProtocol=storage;karma DeviceMatch=usb:045a:5210; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg media-player-info-22/media-players/samsung_meizu-m6-miniplayer.mpi0000644000175000017500000000046311564420544022352 00000000000000[Device] Product=Meizu M6 MiniPlayer Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5a0f; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/ogg;audio/x-ms-wma;audio/flac;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=PLAYLISTS/ AudioFolders=MUSIC;RECORD media-player-info-22/media-players/samsung_yp-f1.mpi0000644000175000017500000000027711564420544017471 00000000000000[Device] Product=YP-F1 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:502b; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav media-player-info-22/media-players/sony-ericsson_c905.mpi0000644000175000017500000000057411564420544020353 00000000000000[Device] Product=C905 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e0ef; [Media] InputFormats=audio/amr OutputFormats=audio/mpeg;audio/3gpp;audio/aac;audio/amr;audio/amr-wb;audio/imelody;audio/mp4;audio/m4a;audio/midi;audio/vnd.m-realaudio;audio/vnd.rn-realaudio;audio/vnd.smaf;audio/x-m4b;audio/x-ms-wma;audio/x-wav;audio/xmf [storage] AudioFolders=music/ media-player-info-22/media-players/trekstor_i.beat-cebrax-fx.mpi0000644000175000017500000000027311564420544021750 00000000000000[Device] Product=i.Beat cebrax fx Vendor=TrekStor AccessProtocol=storage DeviceMatch=usb:0738:1738; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma media-player-info-22/media-players/sony_walkman-nwd-b105.mpi0000644000175000017500000000032711564420544020731 00000000000000[Device] Product=Walkman NWD-B105 Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:0317; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma [storage] AudioFolders=Music/;Record/Voice/ media-player-info-22/media-players/domain-technologies_0x3203.mpi0000644000175000017500000000044611564420544021645 00000000000000[Device] Product=Media Player Vendor=Domain Technologies AccessProtocol=storage DeviceMatch=usb:071b:3203; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma;audio/x-flac;audio/x-ape;application/ogg [storage] AudioFolders=MUSIC/;RECORD/;Music/ FolderDepth=3 media-player-info-22/media-players/htc_vision.mpi0000644000175000017500000000055011761356023017136 00000000000000[Device] Product=Vision Vendor=HTC AccessProtocol=storage DeviceMatch=usb:0bb4:0c94; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/sony_walkman-nwz-s500.mpi0000644000175000017500000000045511705520571020777 00000000000000[Device] Product=Walkman NWZ-S500 Series Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:03fe; [Media] OutputFormats=audio/mpeg;audio/x-aac;audio/x-ms-wma;video/mpeg,video/mp4; [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=MUSIC/;RECORD/;PODCASTS/ PlaylistPath=MUSIC/Playlists/ media-player-info-22/media-players/htc_desire_hero_evo-4g_legend.mpi0000644000175000017500000000064111564420544022620 00000000000000[Device] Product=Android phone Vendor=HTC AccessProtocol=storage DeviceMatch=usb:0bb4:0ff9;usb:0bb4:0c99;usb:0bb4:0ca2;usb:0bb4:0c87;usb:0bb4:0c8d;usb:0bb4:0c97; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/x-wav;audio/x-midi;application/ogg;audio/amr;audio/m4a [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=Music/;MP3/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/sony-ericsson_k800i.mpi0000644000175000017500000000045611564420544020525 00000000000000[Device] Product=K800i AccessProtocol=storage DeviceMatch=usb:0fce:e039; Vendor=Sony Ericsson [Media] InputFormats=audio/x-amr OutputFormats=audio/mpeg;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-amr;audio/x-imy;audio/x-midi;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=music/ media-player-info-22/media-players/sony-ericsson_xperia-mini-pro.mpi0000664000175000017500000000056112024307034022677 00000000000000[Device] Product=Xperia mini pro Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e166;usb:0fce:6166 [Media] OutputFormats=audio/amr;audio/amr-wb;audio/x-wav;audio/mpeg;audio/mp4;audio/midi;audio/imelody;audio/3gpp;audio/mp4;application/ogg [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists/ media-player-info-22/media-players/sony-ericsson_w200.mpi0000644000175000017500000000032311564420544020353 00000000000000[Device] Product=W200 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e090; [Media] OutputFormats=audio/mpeg;audio/aac;audio/amr;audio/amr-wb;audio/m4b;audio/wav;audio/mp3;audio/mp4;audio/3gpp media-player-info-22/media-players/sony_network-walkman.mpi0000644000175000017500000000026011564420544021161 00000000000000[Device] Product=Network Walkman Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:01fb; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/vnd.sony.atrac3 media-player-info-22/media-players/htc_touch-hd.mpi0000644000175000017500000000043211761356012017337 00000000000000[Device] Product=Touch HD Vendor=HTC AccessProtocol=storage DeviceMatch=usb:0bb4:0c25; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=My Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/cowon_iaudio-u3.mpi0000644000175000017500000000051111564420544017773 00000000000000[Device] Product=iAUDIO U3 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0700; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=PLAYLIST/ AudioFolders=RECORDS/FM/;RECORDS/LINEIN/;RECORDS/VOICE/ media-player-info-22/media-players/sony-ericsson_w810i.mpi0000644000175000017500000000032211564420544020532 00000000000000[Device] Product=W810i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e042; [Media] InputFormats=audio/amr OutputFormats=audio/mpeg;audio/aac;audio/x-wav [storage] AudioFolders=MP3/;Music/ media-player-info-22/media-players/jetflash_alba-mp3128d6.mpi0000644000175000017500000000025311564420544020733 00000000000000[Device] Product=ALBA MP3128D6 Vendor=Jetflash AccessProtocol=storage DeviceMatch=usb:066f:8305; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/sony-ericsson_xperia-mini.mpi0000664000175000017500000000053211755452536022121 00000000000000[Device] Product=Xperia mini Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e167; [Media] OutputFormats=audio/amr;audio/amr-wb;audio/x-wav;audio/mpeg;audio/mp4;audio/midi;audio/imelody;audio/3gpp;audio/mp4;application/ogg [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] AudioFolders=Music/ PlaylistPath=Playlists/ media-player-info-22/media-players/sandisk_sansa-e100-series.mpi0000644000175000017500000000031111564420544021541 00000000000000[Device] Product=Sansa e100 Series Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7302; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;audio/x-wav media-player-info-22/media-players/nokia_0x0431_0x04c3_0x0096.mpi0000644000175000017500000000030411564420544020736 00000000000000[Device] Product=770, N800, N810 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:0431;usb:0421:04c3;usb:0421:0096; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/google_nexus-s.mpi0000644000175000017500000000042711564420544017733 00000000000000[Device] Product=Nexus S Vendor=Google AccessProtocol=storage DeviceMatch=usb:18d1:4e21;usb:18d1:4e22; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [storage] AudioFolders=Music/ media-player-info-22/media-players/motorola_cliq.mpi0000644000175000017500000000047311761356062017644 00000000000000[Device] Vendor=Motorola Product=CLIQ/DEXT AccessProtocol=storage DeviceMatch=usb:22b8:2d67; [Media] OutputFormats=audio/mpeg;audio/aac;application/ogg [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] RequiresEject=true AudioFolders=music PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ FolderDepth=4 media-player-info-22/media-players/trekstor_i.beat-rock.mpi0000644000175000017500000000026511564420544021030 00000000000000[Device] Product=i.Beat Rock Vendor=TrekStor AccessProtocol=storage DeviceMatch=usb:1671:1632; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/philips_gogear-sa1330.mpi0000644000175000017500000000026711564420544020703 00000000000000[Device] Product=GoGear SA1330 Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:0165; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/peak_0x1651.mpi0000644000175000017500000000030311564420544016632 00000000000000[Device] AccessProtocol=storage DeviceMatch=usb:0d7d:1651; Vendor=Peak Digital Audio Player [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma [storage] DriveType=sd_mmc media-player-info-22/media-players/lg_0x6018.mpi0000644000175000017500000000047511564420544016330 00000000000000[Device] Product=Mobile phone Vendor=LG AccessProtocol=storage DeviceMatch=usb:1004:6018; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/x-ms-wma;audio/vnd.rn-realaudio;audio/x-wav [storage] AudioFolders=Music/;Sounds/;Sounds/Music/;My folder/Music/ PlaylistPath=Sounds/Playlists;My folder/Playlists/ media-player-info-22/media-players/motorola_droid_milestone.mpi0000644000175000017500000000055311761356122022070 00000000000000[Device] Vendor=Motorola Product=Droid/Milestone AccessProtocol=storage DeviceMatch=usb:22b8:41d9;usb:22b8:41db; Icon=phone-motorola-droid [Media] OutputFormats=audio/mpeg;audio/aac;application/ogg [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] RequiresEject=true AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ FolderDepth=4 media-player-info-22/media-players/dane-elec_music-mediatouch.mpi0000644000175000017500000000030611564420544022126 00000000000000[Device] Product=Music Mediatouch Vendor=Dane-Elec AccessProtocol=storage DeviceMatch=usb:071b:32bb; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/x-wav;audio/x-flac;audio/x-ape media-player-info-22/media-players/philips_gogear-sa2rga.mpi0000644000175000017500000000034311564420544021143 00000000000000[Device] Product=GoGear RaGa (SA2RGA) Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:20b4; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=Music/;Voice/ media-player-info-22/media-players/sony-ericsson_w580i.mpi0000644000175000017500000000027011564420544020540 00000000000000[Device] Product=W580i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:d089;usb:0fce:e089; [Media] OutputFormats=audio/mpeg;audio/aac [storage] AudioFolders=music/ media-player-info-22/media-players/sony_igp-100.mpi0000644000175000017500000000025211564420544017116 00000000000000[Device] Product=iGP 100 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:1006:2001; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/nokia_6110.mpi0000644000175000017500000000031611564420544016542 00000000000000[Device] Product=6110 Navigator Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:0471; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/x-ms-wma [storage] AudioFolders=Sounds/Digital media-player-info-22/media-players/samsung_gt-s8000-jet.mpi0000644000175000017500000000042111564420544020466 00000000000000[Device] Product=GT S8000 Jet Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:4005; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/vnd.rn-realaudio;audio/x-wav; [storage] AudioFolders=Sounds/;Sounds/Music;Sounds/Voice clips;Sounds/Ringtones media-player-info-22/media-players/htc_snap.mpi0000644000175000017500000000042511761356002016566 00000000000000[Device] Product=Snap Vendor=HTC AccessProtocol=storage DeviceMatch=usb:0bb4:0c5f; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/x-midi;audio/x-wav [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [Storage] PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/philips_gogear-opus.mpi0000644000175000017500000000045111564420544020752 00000000000000[Device] Product=GoGear Opus Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:2079; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-flac;audio/aac [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Video/;RECORD/ media-player-info-22/media-players/sony_0xe068_0xe0b3.mpi0000644000175000017500000000041411564420544020054 00000000000000[Device] Product=W880i/890i Walkman Phone Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e068;usb:0fce:e0b3; [Media] OutputFormats=audio/mpeg;audio/aac [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Music/playlists AudioFolders=Music/ media-player-info-22/media-players/touchstone_ts-300.mpi0000644000175000017500000000027311564420544020175 00000000000000[Device] Product=TS-300 Vendor=TouchStone/WaveX AccessProtocol=storage DeviceMatch=usb:10c7:c000; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg [storage] AudioFolders=MP3/ media-player-info-22/media-players/sony-ericsson_xperia-play.mpi0000664000175000017500000000056411625641036022126 00000000000000[Device] Product=Xperia Play Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e15d Icon=phone-sony-ericsson-xperia-play [Media] OutputFormats=audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/mpeg;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ media-player-info-22/media-players/jetflash_0x8000_0x8008_0x8206_0x821f_0x829c_0x82e0_0x835d.mpi0000644000175000017500000000037712173426474025451 00000000000000[Device] Product=Music Player Vendor=Jetflash AccessProtocol=storage DeviceMatch=usb:066f:8000;usb:066f:8008;usb:066f:8206;usb:066f:821f;usb:066f:829c;usb:066f:82e0;usb:066f:835d; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/samsung_yepp-yp-p3.mpi0000644000175000017500000000060711564420544020455 00000000000000[Device] Product=Yepp YP-P3 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5119; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/aac;audio/flac;image/jpeg;text/plain;application/x-shockwave-flash;video/x-ms-wmv [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Video/;Datacasts/;Recorded Files/FM Radio/;Recorded Files/Voice/ media-player-info-22/media-players/iriver_s10.mpi0000644000175000017500000000043111564420544016753 00000000000000[Device] Product=S10 Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:4102:1023; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg [Playlist] Formats=audio/x-iriver-pla [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Recordings/ media-player-info-22/media-players/creative_zen-mx.mpi0000664000175000017500000000042511755453325020102 00000000000000[Device] Product=Zen MX Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:201f; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma [storage] AudioFolders=Music/;Recordings/;Audible/; PlaylistPath=Playlist/ [Playlists] Formats=audio/x-mpegurl media-player-info-22/media-players/lg_ally_optimus-one_vortex.mpi0000644000175000017500000000057111564420544022366 00000000000000[Device] Product=Ally/Optimus One/Vortex Vendor=LG AccessProtocol=storage DeviceMatch=usb:1004:618e;usb:1004:618f;usb:1004:61c6; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/mp4;audio/aac;application/ogg;audio/x-aac;audio/x-wav;audio/x-midi;audio/amr;audio/m4a [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/;media/audio/ media-player-info-22/media-players/barnes-and-noble_nook.mpi0000664000175000017500000000030111642507604021123 00000000000000[Device] Product=Nook Vendor=Barnes and Noble AccessProtocol=storage DeviceMatch=usb:2080:0001;usb:2080:0002;usb:2080:0002; [Media] OutputFormats=audio/mpeg [storage] AudioFolders=my music/ media-player-info-22/media-players/motorola_droid-4.mpi0000644000175000017500000000047612173426634020162 00000000000000[Device] Vendor=Motorola Product=Droid 4 AccessProtocol=storage DeviceMatch=usb:22b8:4332; Icon=phone-motorola-droid [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;application/ogg;audio/amr;audio/amr-wb;audio/midi;audio/x-ms-wma [Storage] PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ AudioFolders=Music/ media-player-info-22/media-players/lyra_th1100a.mpi0000644000175000017500000000020611564420544017075 00000000000000[Device] Product=TH1100A Vendor=Lyra AccessProtocol=storage DeviceMatch=usb:069b:0778; [Media] OutputFormats=audio/mpeg;audio/x-wav media-player-info-22/media-players/sony-ericsson_k610i.mpi0000644000175000017500000000034511564420544020521 00000000000000[Device] Product=K610i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:d046;usb:0fce:e046; [Media] InputFormats=audio/amr OutputFormats=audio/mpeg;audio/aac;audio/x-wav;audio/amr [storage] AudioFolders=music/ media-player-info-22/media-players/thomson_pdp9512fm.mpi0000644000175000017500000000026311564420544020171 00000000000000[Device] Product=PDP9512FM Vendor=Thomson AccessProtocol=storage DeviceMatch=usb:069b:076b; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/sandisk_sansa-clip-sport.mpi0000644000175000017500000000062312370134700021676 00000000000000[Device] Product=Sansa Clip Sport Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:74e7; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio;audio/mp4 [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=Audible/;Audiobooks/;Music/;Podcasts/; media-player-info-22/media-players/sandisk_sansa-e200-series-v2.mpi0000644000175000017500000000046411564420544022100 00000000000000[Device] Product=Sansa e200 Series V2 Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7423; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/nokia_n9.mpi0000664000175000017500000000053511711447116016504 00000000000000[Device] Product=N9 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:0518; [Media] OutputFormats=audio/3gpp;audio/3ga;audio/3gpp2;audio/amr;audio/x-amr;audio/mpa;audio/mp3;audio/x-mp3;audio/x-mpg;audio/mpeg;audio/mpeg3;audio/mpg3;audio/mpg;audio/mp4;audio/m4a;audio/aac;audio/x-aac;audio/mp4a-latm;audio/wav [storage] AudioFolders=Music/ media-player-info-22/media-players/samsung_galaxy-s2.mpi0000664000175000017500000000054511642507604020344 00000000000000[Device] Product=Galaxy S2 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:6860;usb:04e8:685e;usb:04e8:685b; [Media] OutputFormats=audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/mpeg;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ media-player-info-22/media-players/maxfield_max-sin-touch.mpi0000644000175000017500000000032711564420544021341 00000000000000[Device] Product=Maxfield MAX-SIN TOUCH Vendor=Maxfield, M-Cody, TrekStor AccessProtocol=storage DeviceMatch=usb:1890:0110; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg media-player-info-22/media-players/samsung_yp-t10.mpi0000644000175000017500000000035411564420544017563 00000000000000[Device] Product=YP-T10 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:508a; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-ms-asf;audio/x-wav;application/ogg [storage] AudioFolders=Music/ media-player-info-22/media-players/sony-ericsson_c902.mpi0000644000175000017500000000057411564420544020350 00000000000000[Device] Product=C902 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e0d4; [Media] InputFormats=audio/amr OutputFormats=audio/mpeg;audio/3gpp;audio/aac;audio/amr;audio/amr-wb;audio/imelody;audio/mp4;audio/m4a;audio/midi;audio/vnd.m-realaudio;audio/vnd.rn-realaudio;audio/vnd.smaf;audio/x-m4b;audio/x-ms-wma;audio/x-wav;audio/xmf [storage] AudioFolders=Music/ media-player-info-22/media-players/sony-ericsson_w595.mpi0000644000175000017500000000054611564420544020403 00000000000000[Device] Product=W595 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e0f3; [Media] OutputFormats=audio/mpeg;audio/aac;audio/amr;audio/amr-wb;audio/m4b;audio/wav;audio/mp3;audio/mp4;audio/midi;audio/iMelody;audio/3gpp;audio/vnd.smaf;audio/xmf;audio/vnd.m-realaudio;audio/vnd.rn-realaudio;audio/m4a;audio/wma [storage] AudioFolders=Music/ media-player-info-22/media-players/sony-ericsson_w800i.mpi0000644000175000017500000000033311564420544020533 00000000000000[Device] Product=W800i AccessProtocol=storage DeviceMatch=usb:0fce:d028; Vendor=Sony Ericsson [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/aac [storage] AudioFolders=MP3/;MSSEMC/Media files/audio/ media-player-info-22/media-players/danger_hiptop_sidekick.mpi0000644000175000017500000000025611564420544021466 00000000000000[Device] Product=Hiptop/Sidekick 3 Vendor=Danger Research AccessProtocol=storage DeviceMatch=usb:0da0:1001; [Media] OutputFormats=audio/mpeg [storage] AudioFolders=Music/ media-player-info-22/media-players/philips_gogear-sa1100.mpi0000644000175000017500000000026711564420544020676 00000000000000[Device] Product=GoGear SA1100 Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:0163; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=/ media-player-info-22/media-players/samsung_0x6601-phones.mpi0000644000175000017500000000043211564420544020664 00000000000000[Device] Product=Mobile phone Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:6601; [Media] OutputFormats=audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/mpeg;audio/flac [storage] AudioFolders=Music/ media-player-info-22/media-players/apple_video-ipod.mpi0000644000175000017500000000100611564420544020207 00000000000000[Device] Product=iPods with video Vendor=Apple DeviceMatch=usb:05ac:1209;usb:05ac:1261;usb:05ac:1262;usb:05ac:1263;usb:05ac:1265;usb:05ac:1266;usb:05ac:1223;usb:05ac:1224;usb:05ac:1225;usb:05ac:1231;usb:05ac:1255;usb:05ac:1242;usb:05ac:1243;usb:05ac:1245;usb:05ac:1246;usb:05ac:1290;usb:05ac:1292;usb:05ac:1294;usb:05ac:1297;usb:05ac:1291;usb:05ac:1293;usb:05ac:1296;usb:05ac:1299;usb:05ac:129e;usb:05ac:129a; AccessProtocol=storage;ipod [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-wav;audio/x-aiff;video/mp4 media-player-info-22/media-players/sandisk_sansa-c250.mpi0000644000175000017500000000037511564420544020267 00000000000000[Device] Product=Sansa c250 Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7451; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] RequiresEject=true PlaylistPath=PLAYLIST/ AudioFolders=MUSIC/ media-player-info-22/media-players/apple_ipod.mpi0000644000175000017500000000033211564420544017104 00000000000000[Device] AccessProtocol=storage;ipod USBVendor=*Apple* Vendor=Apple USBModel=*iPod* Icon=multimedia-player-apple-ipod [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-wav;audio/x-aiff [storage] RequiresEject=true media-player-info-22/media-players/google_nexus-one.mpi0000644000175000017500000000061311761355641020253 00000000000000[Device] Product=Nexus One Vendor=Google AccessProtocol=storage DeviceMatch=usb:18d1:4e11;usb:18d1:4e12; Icon=phone-google-nexus-one [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/hp_pre3.mpi0000644000175000017500000000034111625640470016330 00000000000000[Device] Product=Pre 3 Vendor=HP AccessProtocol=storage DeviceMatch=usb:0830:8054;usb:0830:8052 Icon=phone-palm-pre [Media] OutputFormats=audio/mpeg;audio/3gpp;audio/mp4;audio/aac;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/motorola_i1.mpi0000644000175000017500000000023011564420544017212 00000000000000[Device] Vendor=Motorola Product=i1 AccessProtocol=storage DeviceMatch=usb:0c44:41d9; [Media] OutputFormats=audio/mpeg [storage] AudioFolders=music/ media-player-info-22/media-players/creative_muvo-v200.mpi0000644000175000017500000000024511564420544020330 00000000000000[Device] Product=MuVo V200 Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:4129; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav media-player-info-22/media-players/insignia_ns-8v24.mpi0000644000175000017500000000050611564420544017775 00000000000000[Device] Product=NS-8V24 Vendor=Insignia AccessProtocol=storage DeviceMatch=usb:19ff:0308; [Media] InputFormats=audio/mpeg;audio/x-ms-wma OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav;video/mpeg4 [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=playlists/ AudioFolders=music/;video/;record/ media-player-info-22/media-players/huawei_pulse.mpi0000644000175000017500000000055111761356044017467 00000000000000[Device] Product=Pulse Vendor=Huawei AccessProtocol=storage DeviceMatch=usb:12d1:1501; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/philips_gogear-aria.mpi0000644000175000017500000000041611564420544020701 00000000000000[Device] Product=GoGear Aria Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:2076; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-flac;application/ogg [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Video/ media-player-info-22/media-players/sonicblue_0x5042.mpi0000644000175000017500000000030111564420544017671 00000000000000[Device] AccessProtocol=storage DeviceMatch=usb:045a:5042; Vendor=SONICblue [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible [storage] DriveType=sd_mmc media-player-info-22/media-players/samsung_yp-mt6v.mpi0000644000175000017500000000030111564420544020043 00000000000000[Device] Product=YP-MT6V Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5026; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav media-player-info-22/media-players/amazon_kindle.mpi0000644000175000017500000000026612165447702017614 00000000000000[Device] Product=Kindle Vendor=Amazon AccessProtocol=storage DeviceMatch=usb:1949:0001;usb:1949:0002;usb:1949:0003; [Media] OutputFormats=audio/mpeg [storage] AudioFolders=music/ media-player-info-22/media-players/nokia_n900.mpi0000644000175000017500000000056511564420544016647 00000000000000[Device] Product=N900 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:01c7; Icon=phone-nokia-n900 [Media] OutputFormats=audio/3gpp;audio/3ga;audio/3gpp2;audio/amr;audio/x-amr;audio/mpa;audio/mp3;audio/x-mp3;audio/x-mpg;audio/mpeg;audio/mpeg3;audio/mpg3;audio/mpg;audio/mp4;audio/m4a;audio/aac;audio/x-aac;audio/mp4a-latm;audio/wav [storage] AudioFolders=Music/ media-player-info-22/media-players/sony-ericsson_w950i.mpi0000644000175000017500000000046411564420544020546 00000000000000[Device] Product=W950i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:d037; [Media] InputFormats=audio/aac;audio/x-wav OutputFormats=audio/mpeg;audio/aac;audio/x-ms-wma;audio/vnd.rn-realaudio [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Music/playlists AudioFolders=Music/ media-player-info-22/media-players/lg_optimus-one-p500.mpi0000664000175000017500000000052112111370037020403 00000000000000[Device] Product=Optimus One P500 Vendor=LG AccessProtocol=storage DeviceMatch=usb:1004:61a6; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/mp4;audio/aac;application/ogg;audio/x-aac;audio/x-wav;audio/x-midi;audio/amr;audio/m4a [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Music/Playlists/ AudioFolders=Music/; media-player-info-22/media-players/nokia_n95.mpi0000644000175000017500000000055511564420544016573 00000000000000[Device] Product=N95 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:006d; [Media] OutputFormats=audio/mp3;audio/x-mp3;audio/x-mpg;audio/mpeg;audio/mpeg3;audio/mpg3;audio/mpg;audio/mp4;audio/m4a;audio/aac;audio/x-aac;audio/mp4a-latm;audio/wav;audio/x-ms-wma [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=Sounds/Digital;Sounds/ PlaylistPath= media-player-info-22/media-players/philips_gogear-raga.mpi0000664000175000017500000000037011642507604020700 00000000000000[Device] Product=GoGear Raga Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:20e3; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav;audio/x-flac;audio/x-ape [storage] AudioFolders=Music/;Recordings/ media-player-info-22/media-players/rim_blackberry.mpi0000644000175000017500000000074411564420544017766 00000000000000[Device] Product=Blackberry Vendor=RIM AccessProtocol=storage DeviceMatch=usb:0fca:0001;usb:0fca:0004;usb:0fca:0006;usb:0fca:0008;usb:0fca:8001;usb:0fca:8004;usb:0fca:8007; [Media] InputFormats=audio/mp4;audio/mpeg OutputFormats=audio/mpeg;audio/mp4;audio/m4a;audio/aac;audio/x-aac;audio/amr;audio/x-amr;audio/amr-wb;audio/3gpp;audio/3ga;audio/3gpp2; [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=BlackBerry/music/;BlackBerry/videos/;home/user/music/;home/user/videos/ media-player-info-22/media-players/sony-ericsson_w705.mpi0000664000175000017500000000027211642507604020372 00000000000000[Device] Product=W705 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e105; [Media] OutputFormats=audio/mpeg;audio/mp4;audio/aac [storage] AudioFolders=Music/;music/ media-player-info-22/media-players/meizu-mini_player_m6.mpi0000644000175000017500000000046311564420544021036 00000000000000[Device] Product=Mini Player M6 Vendor=Meizu AccessProtocol=storage DeviceMatch=usb:0492:0140; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=PLAYLISTS/ AudioFolders=MUSIC/;RECORD/ media-player-info-22/media-players/sony-ericsson_k750i.mpi0000644000175000017500000000032111564420544020520 00000000000000[Device] Product=K750i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:d016; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg [storage] AudioFolders=MP3/;MSSEMC/Media files/audio/ media-player-info-22/media-players/samsung_yp-s3.mpi0000644000175000017500000000040311564420544017477 00000000000000[Device] Product=YP-S3 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5090; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] PlaylistPath=Playlists/ AudioFolders=Music/ media-player-info-22/media-players/samsung_u5.mpi0000644000175000017500000000040111564420544017053 00000000000000[Device] Product=U5 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5121; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/flac;application/ogg; InputFormats=audio/mpeg [storage] AudioFolders=Music/ PlaylistPath=Playlists/;Recorded Files media-player-info-22/media-players/cowon_d2.mpi0000644000175000017500000000035211564420544016504 00000000000000[Device] Product=D2 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0800; [Media] OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav;audio/ogg [storage] AudioFolders=MUSIC/;RECORD/ FolderDepth=2 media-player-info-22/media-players/sonicblue_rio-carbon.mpi0000644000175000017500000000025211564420544021067 00000000000000[Device] Product=Rio Carbon Vendor=SONICblue AccessProtocol=storage DeviceMatch=usb:045a:5224; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/rca_h100a.mpi0000644000175000017500000000030111564420544016422 00000000000000[Device] Product=H100A Vendor=RCA AccessProtocol=storage DeviceMatch=usb:069b:0761; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;audio/x-wav [storage] AudioFolders=LYRA_SYS/ media-player-info-22/media-players/sandisk_sansa-fuze-plus.mpi0000664000175000017500000000067511631146317021553 00000000000000[Device] Product=Sansa Fuze+ Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:74e0;0781:74e1; [Media] InputFormats=audio/x-wav OutputFormats=audio/mp3;audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath=MUSIC/ AudioFolders=MUSIC/;PODCAST/;RECORDING/RADIO/;RECORDING/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/iriver_e100.mpi0000644000175000017500000000044511564420544017022 00000000000000[Device] Product=E100 Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:4102:1041; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/flac [Playlist] Formats=audio/x-iriver-pla [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Recordings/ media-player-info-22/media-players/q-be_0x9111.mpi0000644000175000017500000000021211564420544016534 00000000000000[Device] AccessProtocol=storage DeviceMatch=usb:0f9c:9111; Vendor=Q-be (Hyun Won, Inc.) [Media] OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/iriver_t60.mpi0000644000175000017500000000037111564420544016764 00000000000000[Device] Product=T60 Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:4102:1034; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg [Playlist] Formats=audio/x-iriver-pla [storage] PlaylistPath=Playlists/ media-player-info-22/media-players/cowon_iaudio-x5.mpi0000644000175000017500000000051511564420544020004 00000000000000[Device] Product=iAUDIO X5 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0510; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-ms-asf [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] PlaylistPath=PLAYLIST/;Playlist/ AudioFolders=MUSIC/;Music/ media-player-info-22/media-players/htc_incredible.mpi0000644000175000017500000000053611761355760017742 00000000000000[Device] Product=Incredible Vendor=HTC AccessProtocol=storage DeviceMatch=usb:0bb4:0c9e; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/motorola_v3i.mpi0000644000175000017500000000037111564420544017410 00000000000000[Device] Model=V3i Vendor=Motorola DeviceMatch=usb:22b8:4810; AccessProtocol=ipod;storage USBModel=*Motorola Phone (V3i)* [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/aac [storage] RequiresEject=true AudioFolders=mobile/audio/ media-player-info-22/media-players/nokia_n91.mpi0000644000175000017500000000027411564420544016565 00000000000000[Device] Product=N91 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:0444; [Media] OutputFormats=audio/mpeg,audio/mp3,audio/x-aac [storage] AudioFolders=My Music/ FolderDepth=2 media-player-info-22/media-players/samsung_yp-s2.mpi0000644000175000017500000000027111564420544017501 00000000000000[Device] Product=YP-S2 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5095; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg [storage] AudioFolders=Music/ media-player-info-22/media-players/sandisk_sansa-clip-v2.mpi0000644000175000017500000000063411564420544021070 00000000000000[Device] Product=Sansa Clip V2 Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7435 [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/cowon_iaudio-m3.mpi0000644000175000017500000000042111564420544017763 00000000000000[Device] Product=iAUDIO M3 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0500; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=PLAYLIST/ media-player-info-22/media-players/coby_mp705-4g.mpi0000644000175000017500000000021111564420544017160 00000000000000[Device] Product=Coby Vendor=MP705-4G AccessProtocol=storage DeviceMatch=usb:1e74:2211; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/hp_veer.mpi0000664000175000017500000000034011770567700016426 00000000000000[Device] Product=Veer Vendor=HP AccessProtocol=storage DeviceMatch=usb:0830:8034;usb:0830:8032 Icon=phone-palm-pre [Media] OutputFormats=audio/mpeg;audio/3gpp;audio/mp4;audio/aac;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/philips_gogear-vibe.mpi0000664000175000017500000000033711642507604020716 00000000000000[Device] Product=GoGear Vibe Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:20b6; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=Music/;Recordings/ media-player-info-22/media-players/sony_walkman-nwz-a800.mpi0000644000175000017500000000050511705575653020767 00000000000000[Device] Product=Walkman NWZ-A800 Series Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:0325; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/3gpp;audio/mp4;audio/m4a;audio/wma;audio/wav;video/x-ms-wmv;video/mp4;video/mpeg4;video/x-m4v; [storage] AudioFolders=MUSIC/; PlaylistPath=MUSIC/Playlists/ media-player-info-22/media-players/samsung_reality.mpi0000664000175000017500000000043311642507604020202 00000000000000[Device] Product=Galaxy Reality Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:68aa; [Media] OutputFormats=audio/x-ms-wma;audio/mp4;audio/aac;audio/mpeg [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=my_music/ PlaylistPath=my_music/Playlists/ media-player-info-22/media-players/creative_zen-x-fi-style.mpi0000644000175000017500000000030411564420544021444 00000000000000[Device] Product=Zen X-Fi Style Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:200a; [Media] OutputFormats=audio/mpeg;audio/x-flac;audio/mp4 [storage] AudioFolders=Music/;Recorded/ media-player-info-22/media-players/nokia_n950.mpi0000664000175000017500000000056511663100445016651 00000000000000[Device] Product=N950 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:03d1; Icon=phone-nokia-n950 [Media] OutputFormats=audio/3gpp;audio/3ga;audio/3gpp2;audio/amr;audio/x-amr;audio/mpa;audio/mp3;audio/x-mp3;audio/x-mpg;audio/mpeg;audio/mpeg3;audio/mpg3;audio/mpg;audio/mp4;audio/m4a;audio/aac;audio/x-aac;audio/mp4a-latm;audio/wav [storage] AudioFolders=Music/ media-player-info-22/media-players/nokia_6303.mpi0000644000175000017500000000022711564420544016547 00000000000000[Device] Product=6303 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:01b1; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/mp4 media-player-info-22/media-players/archos_key.mpi0000644000175000017500000000043011705524375017122 00000000000000[Device] Product=Key Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0402:7108; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlist/ AudioFolders=/;/MICIN.DIR;/FMIN.DIR; media-player-info-22/media-players/notion-ink_adam.mpi0000664000175000017500000000040711642507604020044 00000000000000[Device] Product=Adam Vendor=Notion Ink AccessProtocol=storage DeviceMatch=usb:0955:7100; [Media] OutputFormats=application/ogg;audio/mpeg;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists/ media-player-info-22/media-players/nokia_series-60-phones.mpi0000644000175000017500000000052111564420544021160 00000000000000[Device] Product=Series 60 phones Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:*; USBModel=S60 [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-ms-wma;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath=Playlists/ AudioFolders=Music/;Music Downloads/;Sounds/Digital/;Sounds/Simple/ media-player-info-22/media-players/trekstor_i.beat-blaxx.mpi0000644000175000017500000000042111564420544021202 00000000000000[Device] Product=i.Beat Blaxx Vendor=TrekStor AccessProtocol=storage DeviceMatch=usb:1890:0210; [Media] InputFormats=audio/x-wav;audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav;video/x-smv [storage] AudioFolders=MUSIC/;FM/;LINE-IN/;VOICE/ media-player-info-22/media-players/philips_gogear-mix.mpi0000644000175000017500000000032211564420544020556 00000000000000[Device] Product=GoGear Mix Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:2070; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/sony-ericsson_xperia-x10-mini.mpi0000644000175000017500000000066311761356656022535 00000000000000[Device] Product=Xperia X10 mini Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:3137;usb:0fce:2137;usb:0fce:612e; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/amr-wbr [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ [Playlist] Formats=audio/mpegurl;audio/x-mpegurl;audio/x-scpls media-player-info-22/media-players/archos_5it.mpi0000664000175000017500000000062611765354657017056 00000000000000[Device] Product=5 IT Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0e79:1356 [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;application/ogg;audio/ogg;audio/x-flac;audio/x-ms-wma;audio/x-wav;video/mp4;video/mpeg;video/ogg;video/quicktime;video/x-flv;video/x-matroska;video/x-mpeg;video/x-ms-wmv [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/ media-player-info-22/media-players/transcend_t.sonic-520.mpi0000644000175000017500000000025311564420544020714 00000000000000[Device] Product=T.Sonic 520 Vendor=Transcend AccessProtocol=storage DeviceMatch=usb:0402:5661; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/sony-ericsson_v630i.mpi0000644000175000017500000000021411564420544020531 00000000000000[Device] Product=V630i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e043; [Media] OutputFormats=audio/mpeg;audio/aac; media-player-info-22/media-players/sony_walkman-nwz-e443.mpi0000644000175000017500000000027211564420544020766 00000000000000[Device] Product=Walkman NWZ-E443 Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:03fd; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac [storage] AudioFolders=MUSIC/ media-player-info-22/media-players/ali_0x5661-0x5667.mpi0000644000175000017500000000021411564420544017342 00000000000000[Device] Product=Music Player Vendor=Ali AccessProtocol=storage DeviceMatch=usb:0402:5661;usb:0402:5663; [Media] OutputFormats=audio/mpeg media-player-info-22/media-players/sony-ericsson_k810i.mpi0000644000175000017500000000032711564420544020523 00000000000000[Device] Product=K810i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e0a1; [Media] InputFormats=audio/amr OutputFormats=audio/mpeg;audio/aac;audio/x-wav;audio/amr [storage] AudioFolders=music/ media-player-info-22/media-players/samsung_yp-p2.mpi0000644000175000017500000000050011564420544017471 00000000000000[Device] Product=YP-P2 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5082; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav;audio/aac [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Video/;Datacasts/;Recorded Files/FM Radio/;Recorded Files/Voice/ media-player-info-22/media-players/samsung_yp-u1.mpi0000644000175000017500000000027711564420544017510 00000000000000[Device] Product=YP-U1 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:503b; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav media-player-info-22/media-players/htc_dream_adp1_g1_magic_tattoo.mpi0000644000175000017500000000054511761355726022762 00000000000000[Device] Product=Dream/ADP1/G1/Magic/Tattoo Vendor=HTC AccessProtocol=storage DeviceMatch=usb:0bb4:0c01;usb:0bb4:0c02; Icon=phone-htc-g1-white [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/mp4;audio/aac;audio/x-wav;application/ogg [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/mobile-media_0x0001.mpi0000644000175000017500000000022111564420544020221 00000000000000[Device] AccessProtocol=storage DeviceMatch=usb:1011:0001; Vendor=Mobile Media Tech. [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg media-player-info-22/media-players/sony-ericsson_xperia-x10-mini-pro.mpi0000644000175000017500000000070311564420544023313 00000000000000[Device] Product=Xperia X10 mini pro Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:3138;usb:0fce:2138; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/m4a;audio/amr-wbr;audio/xmf [Playlist] Formats=audio/mpegurl;audio/x-mpegurl;audio/x-scpls [storage] AudioFolders=Music/;music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/lg_optimus-s.mpi0000664000175000017500000000050311642507604017414 00000000000000[Device] Product=Optimus S Vendor=LG AccessProtocol=storage DeviceMatch=usb:1004:61cc; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/mp4;audio/aac;application/ogg;audio/x-aac;audio/x-wav;audio/x-midi;audio/amr;audio/m4a [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/; media-player-info-22/media-players/motorola_itunes-phone.mpi0000644000175000017500000000040611564420544021324 00000000000000[Device] Model=iTunes Phone Vendor=Motorola DeviceMatch=usb:22b8:4810; AccessProtocol=ipod;storage USBModel=*[iI][tT][uU][nN][eE][sS]* [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/aac [storage] RequiresEject=true AudioFolders=mobile/audio/ media-player-info-22/media-players/rockbox.mpi0000644000175000017500000000064311564420544016444 00000000000000[Device] Vendor=Rockbox AccessProtocol=storage; USBManufacturer=Rockbox.org USBProduct=Rockbox media player [Media] OutputFormats=audio/mpeg;audio/x-musepack;audio/ogg;audio/aac;audio/ac3;audio/x-ms-wma;audio/x-adx;audio/speex;audio/x-pn-realaudio;audio/x-oma;audio/atrac3;audio/x-wav;audio/x-aiff;audio/flac;audio/alac;audio/x-wavpack;application/x-shorten;audio/x-monkeys-audio;audio/prs.sid;audio/x-mod;audio/midi; media-player-info-22/media-players/iriver_0x3001_0x3002.mpi0000644000175000017500000000032111564420544020115 00000000000000[Device] Product=iHP-100,115 / HP-120,140 Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:1006:3001;usb:1006:3002 [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg media-player-info-22/media-players/cowon_iaudio-e2.mpi0000664000175000017500000000047611642507604017766 00000000000000[Device] Product=iAUDIO E2 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0681; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/ogg;audio/flac;audio/x-wav [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] PlaylistPath=PLAYLIST/;Playlist/ AudioFolders=MUSIC/;Music/ media-player-info-22/media-players/archos_0x1109_0x1300.mpi0000644000175000017500000000044011564420544020104 00000000000000[Device] Product=GMini 400m A404 Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0e79:1109;usb:0e79:1300; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlist/ AudioFolders=Music/ media-player-info-22/media-players/sony_walkman-nwz-s750.mpi0000644000175000017500000000057211703503003020773 00000000000000[Device] Product=Walkman NWZ-S750 Series Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:04cc; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/3gpp;audio/mp4;audio/m4a;audio/wma;audio/wav;video/x-ms-wmv;video/mp4;video/mpeg4;video/x-m4v; [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=MUSIC/;RECORD/;PODCASTS/ PlaylistPath=MUSIC/Playlists/ media-player-info-22/media-players/motorola_droid-2.mpi0000644000175000017500000000053411761356077020160 00000000000000[Device] Vendor=Motorola Product=Droid 2 AccessProtocol=storage DeviceMatch=usb:22b8:42a4; Icon=phone-motorola-droid [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;application/ogg;audio/amr;audio/amr-wb;audio/midi;audio/x-ms-wma [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [Storage] PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/philips_gogear-sa1942.mpi0000644000175000017500000000034611564420544020712 00000000000000[Device] Product=GoGear RaGa (SA1942/02) Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:204e; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=Music/;Voice/ media-player-info-22/media-players/m-cody_m20.mpi0000644000175000017500000000033211564420544016636 00000000000000[Device] Product=M20 Vendor=M-Cody AccessProtocol=storage DeviceMatch=usb:1890:0001; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg [storage] AudioFolders=Music/;voice/;fm/ media-player-info-22/media-players/sony_walkman-nwz-s760.mpi0000644000175000017500000000052611700526331021001 00000000000000[Device] Product=Walkman NWZ-S760 Series Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:05a8; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/3gpp;audio/mp4;audio/m4a;audio/wma;audio/wav;video/x-ms-wmv;video/mp4;video/mpeg4;video/x-m4v; [storage] AudioFolders=MUSIC/;RECORD/;PODCASTS/ PlaylistPath=MUSIC/Playlists/ media-player-info-22/media-players/hp_touchpad.mpi0000644000175000017500000000034411625640651017272 00000000000000[Device] Product=Touchpad Vendor=HP AccessProtocol=storage DeviceMatch=usb:0830:8074;usb:0830:8072 Icon=phone-palm-pre [Media] OutputFormats=audio/mpeg;audio/3gpp;audio/mp4;audio/aac;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/nokia_6300.mpi0000644000175000017500000000027411564420544016546 00000000000000[Device] Product=6300 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:04fa; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=music/ media-player-info-22/media-players/creative_zen-style-300.mpi0000664000175000017500000000036211642510247021106 00000000000000[Device] Product=Zen Style 300 Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:2016; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;audio/x-wav [storage] AudioFolders=Music/ FolderDepth=2 media-player-info-22/media-players/samsung_yepp-yp-k3.mpi0000644000175000017500000000027611564420544020452 00000000000000[Device] Product=Yepp YP-K3 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5080; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg [storage] AudioFolders=Music/ media-player-info-22/media-players/sony_walkman-nwz-s638f.mpi0000644000175000017500000000027411564420544021162 00000000000000[Device] Product=Walkman NWZ-S638F Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:038e; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac [storage] AudioFolders=MUSIC/ media-player-info-22/media-players/creative_zen-nano-plus.mpi0000644000175000017500000000026711564420544021367 00000000000000[Device] Product=Zen Nano Plus Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:4139; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/huawei_u8120.mpi0000664000175000017500000000046711642507604017124 00000000000000[Device] Product=U8120 Vendor=Huawei AccessProtocol=storage DeviceMatch=usb:12d1:1035; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/sony-ericsson_xperia-x8.mpi0000644000175000017500000000057411564420544021520 00000000000000[Device] Product=Xperia X8 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:3149;usb:0fce:2149; Icon=phone-sony-ericsson-xperia-x8 [Media] OutputFormats=audio/amr;audio/amr-wb;audio/amr-wb+;audio/x-wav;audio/mpeg;audio/mp4;audio/midi;audio/imelody;audio/3gpp;application/ogg;video/mp4;video/3gp;video/x-ms-wmv;video/x-ms-asf [storage] AudioFolders=Music/;Video/ media-player-info-22/media-players/iriver_e30.mpi0000644000175000017500000000057211564420544016745 00000000000000[Device] Product=E30 Vendor=iriver AccessProtocol=storage DeviceMatch=usb:4102:1067; [Media] InputFormats=audio/x-ms-wma OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/flac;audio/x-wav;audio/x-monkeys-audio;image/jpeg;image/bmp [Playlist] Formats=audio/x-iriver-pla [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Recordings/Voice;Recordings/FM Radio/; media-player-info-22/media-players/msi-megastick-1_flash_stick.mpi0000644000175000017500000000024211564420544022235 00000000000000[Device] Product=MegaStick-1 Flash Stick Vendor=MSI AccessProtocol=storage DeviceMatch=usb:1462:5512; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg media-player-info-22/media-players/trekstor_vibez.mpi0000644000175000017500000000037311564420544020051 00000000000000[Device] Product=vibez Vendor=TrekStor AccessProtocol=storage DeviceMatch=usb:066f:842a; [Media] OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl;application/vnd.ms-wpl media-player-info-22/media-players/archos_xs-100.mpi0000644000175000017500000000031111564420544017254 00000000000000[Device] Product=XS 100 Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0e79:1205; [Media] InputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma media-player-info-22/media-players/nec_lifetouch-note.mpi0000664000175000017500000000043011755452536020553 00000000000000[Device] Product=LifeTouch Note Vendor=Nec AccessProtocol=storage DeviceMatch=usb:0409:0300;usb:0409:0301; [Media] OutputFormats=application/ogg;audio/mpeg;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists/ media-player-info-22/media-players/nokia_c7-00.mpi0000664000175000017500000000055211755452536016715 00000000000000[Device] Product=C7-00 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:03c0; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-ms-wma;audio/x-midi;audio/x-wav;audio/xmf;audio/amr;audio/amr-wb [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath=Playlists/ AudioFolders=Music/;Music Downloads/;Sounds/Digital/;Sounds/Simple/ media-player-info-22/media-players/sony-ericsson_w995.mpi0000644000175000017500000000026311564420544020403 00000000000000[Device] Product=W995 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e112; [Media] OutputFormats=audio/mpeg;audio/mp4;audio/aac [storage] AudioFolders=music/ media-player-info-22/media-players/coby_mp300.mpi0000644000175000017500000000020611564420544016643 00000000000000[Device] Product=Coby Vendor=MP300 AccessProtocol=storage DeviceMatch=usb:1e74:2211; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/sharp-is03.mpi0000664000175000017500000000043711642507604016671 00000000000000[Device] Product=IS03 Vendor=Sharp AccessProtocol=storage DeviceMatch=usb:04dd:939a; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/x-wav;audio/x-midi;application/ogg;audio/amr;audio/m4a [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=Music/; media-player-info-22/media-players/archos_32-it.mpi0000644000175000017500000000041111564420544017163 00000000000000[Device] Product=32 IT Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0e79:1416; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;application/ogg;audio/ogg;audio/x-wav;audio/x-ms-wma;audio/x-flac;audio/aac;audio/x-aac [storage] AudioFolders=Music/ media-player-info-22/media-players/qualcomm_0x05c6_0x1000.mpi0000664000175000017500000000033111642507604020524 00000000000000[Device] Product=Phone Vendor=LG/Samsung AccessProtocol=storage DeviceMatch=usb:05c6:1000; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/x-ms-wma [storage] AudioFolders=Music/;My_Music/ FolderDepth=1 media-player-info-22/media-players/archos_5.mpi0000644000175000017500000000047711564420544016505 00000000000000[Device] Product=5 Tablet Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0e79:1330; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;application/ogg;audio/ogg;audio/x-wav;audio/x-ms-wma;audio/x-flac [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] PlaylistPath=Playlist/ AudioFolders=Music/ media-player-info-22/media-players/olympus_ds-2.mpi0000644000175000017500000000023011564420544017322 00000000000000[Device] Product=DS-2 voice recorder Vendor=Olympus AccessProtocol=storage DeviceMatch=usb:07b4:020e; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/sandisk_sansa-e200-series.mpi0000644000175000017500000000046111564420544021550 00000000000000[Device] Product=Sansa e200 Series Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7421; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/sony-ericsson_k320i.mpi0000644000175000017500000000032711564420544020517 00000000000000[Device] Product=K320i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e072; [Media] InputFormats=audio/AMR;audio/midi;audio/mpeg OutputFormats=audio/mpeg;audio/AMR [storage] AudioFolders=AUDIO/ media-player-info-22/media-players/jens-of-sweeden_mp-120.mpi0000644000175000017500000000025711564420544020763 00000000000000[Device] Product=MP-120 Vendor=JoS AccessProtocol=storage DeviceMatch=usb:066f:82d4; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg media-player-info-22/media-players/creative_0x4xxx.mpi0000644000175000017500000000061611564420544020042 00000000000000[Device] Product=MuVo NX, MuVo2, MuVo TX, MuVo TX FM, Zen Micro,NOMAD Jukebox Zen Xtra, MuVo N200 (MuVo Micro), Zen Micro, Zen Touch Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:4115;usb:041e:4116;usb:041e:4117;usb:041e:4120;usb:041e:411e;usb:041e:4128;usb:041e:412b;usb:041e:4130;usb:041e:4131; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/samsung_yepp-yp-m1.mpi0000644000175000017500000000060711564420544020450 00000000000000[Device] Product=Yepp YP-M1 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5123; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/aac;audio/flac;image/jpeg;text/plain;application/x-shockwave-flash;video/x-ms-wmv [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Video/;Datacasts/;Recorded Files/FM Radio/;Recorded Files/Voice/ media-player-info-22/media-players/cowon_s9.mpi0000644000175000017500000000067111564420544016536 00000000000000[Device] Product=S9 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0900; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav;video/divx;video/x-ms-wmv;application/x-shockwave-flash;audio/x-monkeys-audio [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Video/;Recordings/FM Radio/;Recordings/Line-in/;Recordings/Mic/ media-player-info-22/media-players/archos_a43.mpi0000664000175000017500000000053611642507604016726 00000000000000[Device] Product=A43 IT Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0e79:1417 [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;application/ogg;audio/ogg;audio/x-wav;audio/x-ms-wma;audio/x-flac;audio/aac;audio/x-aac [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] PlaylistPath=Playlist/;Playlists/ AudioFolders=Music/ media-player-info-22/media-players/palm_pre.mpi0000644000175000017500000000036711625640732016600 00000000000000[Device] Product=Prē Vendor=Palm AccessProtocol=storage DeviceMatch=usb:0830:8004;usb:0830:8002;0830:8042;0830:8044; Icon=phone-palm-pre [Media] OutputFormats=audio/mpeg;audio/3gpp;audio/mp4;audio/aac;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/samsung_yp-s5.mpi0000644000175000017500000000026311564420544017505 00000000000000[Device] Product=YP-S5 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:508c; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac [storage] AudioFolders=Music/ media-player-info-22/media-players/sandisk_sansa-clip-zip.mpi0000644000175000017500000000066211670334060021337 00000000000000[Device] Product=Sansa Clip Zip Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:74e5; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio;audio/mp4 [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;PODCASTS/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/iriver_h320_h340.mpi0000644000175000017500000000045711564420544017572 00000000000000[Device] Product=H320, H340 Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:1006:3003; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/ogg;audio/x-ms-wma;audio/x-wav [Playlist] Formats=audio/x-scpls;audio/x-iriver-pla [storage] PlaylistPath=PLAYLIST/ AudioFolders=MUSIC/;RECORD/ media-player-info-22/media-players/creative_muvo-v100.mpi0000644000175000017500000000023111564420544020322 00000000000000[Device] Product=MuVo V100 Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:200c; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg media-player-info-22/media-players/jetflash_digital-live250.mpi0000644000175000017500000000031211564420544021447 00000000000000[Device] Product=Digital Live250 Vendor=Jetflash AccessProtocol=storage DeviceMatch=usb:066f:80e0; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/iriver_t7-volcano.mpi0000644000175000017500000000044411564420544020345 00000000000000[Device] Product=T7 Volcano Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:4102:1043; [Media] InputFormats=audio/x-ms-wma OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma [Playlist] Formats=audio/x-iriver-pla [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Recordings/ media-player-info-22/media-players/iriver_t30.mpi0000644000175000017500000000040711564420544016761 00000000000000[Device] Product=T30 Vendor=iRiver AccessProtocol=storage DeviceMatch=usb:4102:1019;usb:4102:1023; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg [Playlist] Formats=audio/x-iriver-pla [storage] PlaylistPath=Playlists/ media-player-info-22/media-players/philips_gogear-sa52xx.mpi0000644000175000017500000000044211564420544021116 00000000000000[Device] Product=GoGear SA52XX Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:2022; [Media] InputFormats=audio/x-wav;audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav;audio/aac;video/x-ms-wmv;video/ms-video;video/mp4 [storage] AudioFolders=Music/;Video/;RECORD/ media-player-info-22/media-players/samsung_yp-u2.mpi0000644000175000017500000000027711564420544017511 00000000000000[Device] Product=YP-U2 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5050; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav media-player-info-22/media-players/nexia-1013.mpi0000644000175000017500000000024111564420544016455 00000000000000[Device] AccessProtocol=storage DeviceMatch=usb:1718:1013; Vendor=Nexia [Media] InputFormats=audio/mpeg;audio/x-ms-wma OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/samsung_yp-t7.mpi0000644000175000017500000000033611564420544017511 00000000000000[Device] Product=YP-T7 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5027; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/coby_mp705-8g.mpi0000644000175000017500000000021111564420544017164 00000000000000[Device] Product=Coby Vendor=MP705-8G AccessProtocol=storage DeviceMatch=usb:1e74:2211; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/samsung_yepp-yp-st5.mpi0000644000175000017500000000027011564420544020642 00000000000000[Device] Product=Yepp YP-ST5 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5021; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg media-player-info-22/media-players/archos_5imt.mpi0000644000175000017500000000044211564420544017207 00000000000000[Device] Product=5 IMT Vendor=Archos AccessProtocol=storage DeviceMatch=usb:0e79:1332 [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma;application/ogg [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlist/;Playlists/ AudioFolders=Music/ media-player-info-22/media-players/nokia_5800.mpi0000644000175000017500000000040111564420544016542 00000000000000[Device] Product=5800 XpressMusic Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:0156; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/x-ms-wma;audio/m4a [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Sounds/Digital/;MUSIC/ media-player-info-22/media-players/samsung_yp-j70.mpi0000644000175000017500000000037411564420544017561 00000000000000[Device] Product=YP-J70 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5032; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav [storage] RequiresEject=true AudioFolders=Music/;RECORDED/ media-player-info-22/media-players/samsung_yp-z5.mpi0000644000175000017500000000045011564420544017512 00000000000000[Device] Product=YP-Z5 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5041; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;application/ogg;audio/x-wav [Playlist] Formats=audio/x-mpegurl;audio/x-scpls [storage] PlaylistPath=Playlists/ AudioFolders=Music/ media-player-info-22/media-players/sandisk_sansa-m200-series.mpi0000644000175000017500000000027511564420544021563 00000000000000[Device] Product=Sansa m200 Series Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7401; [Media] InputFormats=audio/mpeg;audio/x-ms-wma OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/sony_walkman-nwz-e355.mpi0000644000175000017500000000027211564420544020770 00000000000000[Device] Product=Walkman NWZ-E355 Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:04cb; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac [storage] AudioFolders=MUSIC/ media-player-info-22/media-players/nokia_5310.mpi0000644000175000017500000000034111564420544016541 00000000000000[Device] Product=5310 XpressMusic Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:006a;usb:0421:006c; Model=5310 [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/motorola_atrix.mpi0000664000175000017500000000044111642507604020036 00000000000000[Device] Product=Atrix Vendor=Motorola AccessProtocol=storage DeviceMatch=usb:22b8:7086; [Media] OutputFormats=audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ media-player-info-22/media-players/sandisk_sansa-clip-plus.mpi0000644000175000017500000000066311573600755021532 00000000000000[Device] Product=Sansa Clip+ Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:74d1;usb:0781:74d0; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;PODCASTS/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/actions-semiconductor_0x1100_0x1101.mpi0000644000175000017500000000035311564420544023132 00000000000000[Device] Product=Media Player Vendor=Actions Semiconductor AccessProtocol=storage DeviceMatch=usb:10d6:1100;usb:10d6:1101; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] FolderDepth=1 media-player-info-22/media-players/micromax_a60.mpi0000644000175000017500000000042511612016573017255 00000000000000[Device] Product=Android A60 Vendor=Micromax(ZTE) AccessProtocol=storage DeviceMatch=usb:19d2:ffe2; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [storage] AudioFolders=Music/ media-player-info-22/media-players/panasonic_sv-mp31v.mpi0000644000175000017500000000030711564420544020421 00000000000000[Device] Product=SV-MP31V Vendor=Panasonic AccessProtocol=storage DeviceMatch=usb:04da:3701; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma [storage] AudioFolders=PLAYER/ media-player-info-22/media-players/sandisk_sansa-fuze-v2.mpi0000644000175000017500000000063511564420544021113 00000000000000[Device] Product=Sansa Fuze V2 Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:74c3; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/cowon_iaudio-u2.mpi0000644000175000017500000000036311564420544017777 00000000000000[Device] Product=iAUDIO U2 Vendor=Cowon DeviceMatch=usb:0e21:0600; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=MUSIC/;RECORDS/FM/;RECORDS/LINEIN/;RECORDS/VOICE/ media-player-info-22/media-players/sony-ericsson_p1i.mpi0000644000175000017500000000042411564420544020356 00000000000000[Device] Product=P1i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e092; [Media] OutputFormats=audio/mpeg;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-amr;audio/x-imy;audio/x-midi;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=music/ media-player-info-22/media-players/cowon_j3.mpi0000644000175000017500000000067111564420544016517 00000000000000[Device] Product=J3 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0920; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav;video/divx;video/x-ms-wmv;application/x-shockwave-flash;audio/x-monkeys-audio [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Video/;Recordings/FM Radio/;Recordings/Line-in/;Recordings/Mic/ media-player-info-22/media-players/sony-ericsson_w910i.mpi0000644000175000017500000000053411564420544020540 00000000000000[Device] Product=W910i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e076; [Media] InputFormats=audio/amr OutputFormats=audio/mpeg;audio/aac;audio/x-wav;audio/amr;audio/amr-wb;audio/vnd.m-realaudio;audio/3gpp;audio/x-m4b;audio/mp4;audio/midi;audio/x-ms-wma;audio/iMelody;audio/vnd.smaf;audio/xmf [storage] AudioFolders=Music/ media-player-info-22/media-players/htc_diamond.mpi0000644000175000017500000000053311761355677017261 00000000000000[Device] Product=Diamond Vendor=HTC AccessProtocol=storage DeviceMatch=usb:0bb4:0c13; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [Playlist] Formats=audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/sony-ericsson_w660i.mpi0000644000175000017500000000025211564420544020537 00000000000000[Device] Product=W660i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e0a3; [Media] OutputFormats=audio/mpeg;audio/aac [storage] AudioFolders=Music/ media-player-info-22/media-players/creative_zen-stone-plus.mpi0000644000175000017500000000034411564420544021560 00000000000000[Device] Product=Zen Stone Plus Vendor=Creative AccessProtocol=storage DeviceMatch=usb:041e:4155; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav;audio/aac [storage] AudioFolders=/;MUSIC/ media-player-info-22/media-players/sandisk_sansa-view.mpi0000644000175000017500000000032211564420544020560 00000000000000[Device] Product=Sansa View Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:74b1; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma [storage] PlaylistPath=PLAYLIST/ AudioFolders=MUSIC/ FolderDepth=2 media-player-info-22/media-players/lg_kc910-renoir.mpi0000644000175000017500000000024611564420544017601 00000000000000[Device] Product=KC910 Renoir Vendor=LG AccessProtocol=storage DeviceMatch=usb:1004:a400; [Media] OutputFormats=audio/mpeg;audio/aac [storage] AudioFolders=Sounds/ media-player-info-22/media-players/nokia_6700.mpi0000644000175000017500000000040211564420544016543 00000000000000[Device] Product=6700 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:0199; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/x-ms-wma;audio/m4a [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/ media-player-info-22/media-players/samsung_yepp-yp-35.mpi0000644000175000017500000000026411564420544020361 00000000000000[Device] Product=Yepp YP-35 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5010; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/cowon_0x0510_0x0520_0x0710_0x0730_0x0750.mpi0000644000175000017500000000056711564420544022545 00000000000000[Device] Product=iAUDIO X5, M5, F2, 7 Vendor=Cowon AccessProtocol=storage DeviceMatch=usb:0e21:0510;usb:0e21:0520;usb:0e21:0710;usb:0e21:0730;usb:0e21:0750; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;application/ogg;audio/x-ms-wma;audio/flac;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=PLAYLIST/ AudioFolders=MUSIC/;RECORD/;VOICE/ media-player-info-22/media-players/motorola_rokr-e2.mpi0000644000175000017500000000030011564420544020160 00000000000000[Device] Product=ROKR e2 Memory Card mode Vendor=Motorola AccessProtocol=storage DeviceMatch=usb:22b8:608d; Model=ROKR e2 [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/aac media-player-info-22/media-players/sony-ericsson_vivaz.mpi0000664000175000017500000000027211642507604021027 00000000000000[Device] Product=Vivaz Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e133; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav [storage] AudioFolders=Music/ media-player-info-22/media-players/samsung_yp-t9.mpi0000644000175000017500000000035311564420544017512 00000000000000[Device] Product=YP-T9 Vendor=Samsung AccessProtocol=storage DeviceMatch=usb:04e8:5055; [Media] InputFormats=audio/mpeg OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-ms-asf;audio/x-wav;application/ogg [storage] AudioFolders=Music/ media-player-info-22/media-players/nokia_5300.mpi0000644000175000017500000000024211564420544016540 00000000000000[Device] Product=5300 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:04b9; Model=5300 [Media] OutputFormats=audio/mpeg [storage] AudioFolders=Music/ media-player-info-22/media-players/philips_gogear-sa3125.mpi0000644000175000017500000000036011564420544020701 00000000000000[Device] Product=GoGear SA3125 Vendor=Philips AccessProtocol=storage DeviceMatch=usb:0471:084a; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav;video/x-smv [storage] AudioFolders=Music/;Video/;Voice/ media-player-info-22/media-players/sony_0x035b_0x035c.mpi0000644000175000017500000000033711564420544017770 00000000000000[Device] Product=Walkman Video MP3 NWZ-xxxx Vendor=Sony AccessProtocol=storage DeviceMatch=usb:054c:035b;usb:054c:035c; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/x-wav [storage] AudioFolders=music/ media-player-info-22/media-players/nokia_6600i.mpi0000644000175000017500000000023511564420544016717 00000000000000[Device] Product=6600i Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:0295; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/x-ms-wma media-player-info-22/media-players/sandisk_sansa-m200-series-v4.mpi0000644000175000017500000000030011564420544022077 00000000000000[Device] Product=Sansa m200 Series V4 Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7431; [Media] InputFormats=audio/mpeg;audio/x-ms-wma OutputFormats=audio/mpeg;audio/x-ms-wma media-player-info-22/media-players/trekstor_i.beat-jess.mpi0000664000175000017500000000023411712015726021031 00000000000000[Device] Product=i.Beat Jess Vendor=TrekStor AccessProtocol=storage DeviceMatch=usb:0835:2835; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/x-wav media-player-info-22/media-players/teac_mp-375sd.mpi0000644000175000017500000000035211564420544017245 00000000000000[Device] Product=MP-375SD Vendor=TEAC AccessProtocol=storage DeviceMatch=usb:0402:5668; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-wav;audio/x-ms-wma [storage] DriveType=microsd AudioFolders=Music;FMREC;VOICE media-player-info-22/media-players/jetflash_0x8038.mpi0000644000175000017500000000030511564420544017522 00000000000000[Device] Product=MP3 Player Vendor=Jetflash AccessProtocol=storage DeviceMatch=usb:066f:8038; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma [storage] DriveType=sd_mmc media-player-info-22/media-players/huawei_ideos.mpi0000644000175000017500000000042511564420544017440 00000000000000[Device] Product=Ideos Vendor=Huawei AccessProtocol=storage DeviceMatch=usb:12d1:1037;usb:12d1:1038; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg [storage] AudioFolders=Music/ media-player-info-22/media-players/rca_0x0713_0x0718_0x0756_0x0767.mpi0000644000175000017500000000037611564420544021302 00000000000000[Device] Product=RD1072, RD2212, MC2021C, TH1501 Vendor=Lyra AccessProtocol=storage DeviceMatch=usb:069b:0713;usb:069b:0718;usb:069b:0756;usb:069b:0767; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;audio/x-wav media-player-info-22/media-players/nokia_e71.mpi0000644000175000017500000000044711564420544016554 00000000000000[Device] Product=E71 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:00aa; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-ms-wma;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/;Music Downloads/;Sounds/Digital/;Sounds/Simple/ media-player-info-22/media-players/sony-ericsson_w300i.mpi0000644000175000017500000000023211564420544020524 00000000000000[Device] Product=W300i Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0fce:e053; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg media-player-info-22/media-players/sandisk_sansa-fuze.mpi0000644000175000017500000000065611631330622020561 00000000000000[Device] Product=Sansa Fuze Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:74c1; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio [Playlist] Formats=audio/x-mpegurl FolderSeparator=DOS [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/acer_liquid.mpi0000664000175000017500000000053711755452536017272 00000000000000[Device] Product=Liquid Vendor=Acer AccessProtocol=storage DeviceMatch=usb:0502:3202;usb:0502:3203;usb:0502:3317; [Media] OutputFormats=audio/x-ms-wma;audio/3gpp;audio/mp4;audio/aac;audio/vnd.rn-realaudio;audio/x-midi;audio/x-wav;application/ogg;audio/mpeg;audio/flac [Playlist] Formats=audio/x-scpls;audio/x-mpegurl [storage] AudioFolders=Music/ media-player-info-22/media-players/motorola_droid-x.mpi0000644000175000017500000000046411761356107020262 00000000000000[Device] Vendor=Motorola Product=Droid X AccessProtocol=storage DeviceMatch=usb:22b8:4285; Icon=phone-motorola-droid [Media] OutputFormats=audio/mpeg;audio/aac;application/ogg [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=Music/ PlaylistPath=Music/Playlists;PLAYLIST/;Playlist/ media-player-info-22/media-players/sandisk_sansa-clip.mpi0000644000175000017500000000063211564420544020541 00000000000000[Device] Product=Sansa Clip Vendor=SanDisk AccessProtocol=storage DeviceMatch=usb:0781:7433; [Media] InputFormats=audio/x-wav OutputFormats=audio/mpeg;audio/x-ms-wma;audio/audible;application/ogg;audio/ogg;audio/flac;audio/x-wav;audio/x-pn-audibleaudio [Playlist] Formats=audio/x-mpegurl [storage] RequiresEject=true PlaylistPath= AudioFolders=MUSIC/;PODCAST/;RECORD/FM/;RECORD/VOICE/;AUDIBLE/;AUDIOBOOKS/ media-player-info-22/media-players/nokia_6730.mpi0000664000175000017500000000043311642507604016554 00000000000000[Device] Product=6730 Vendor=Nokia AccessProtocol=storage DeviceMatch=usb:0421:023a; [Media] OutputFormats=audio/mpeg;audio/aac;audio/x-aac;audio/x-ms-wma;audio/m4a;audio/x-midi;audio/x-wav [Playlist] Formats=audio/x-mpegurl [storage] PlaylistPath=Playlists/ AudioFolders=Music/ media-player-info-22/media-players/sony-ericsson_xperia-x1.mpi0000644000175000017500000000033011564420544021477 00000000000000[Device] Product=XPERIA X1 Vendor=Sony Ericsson AccessProtocol=storage DeviceMatch=usb:0bb4:0c1f;usb:0bb4:0b1f; [Media] OutputFormats=audio/mpeg;audio/aac;audio/mp4;audio/x-ms-wma [storage] AudioFolders=My Music/ media-player-info-22/media-players/sharp-is01.mpi0000644000175000017500000000043711564420544016665 00000000000000[Device] Product=IS01 Vendor=Sharp AccessProtocol=storage DeviceMatch=usb:04dd:9337; [Media] OutputFormats=audio/mpeg;audio/x-ms-wma;audio/aac;audio/x-wav;audio/x-midi;application/ogg;audio/amr;audio/m4a [Playlist] Formats=audio/mpegurl;audio/x-mpegurl [storage] AudioFolders=Music/; media-player-info-22/tools/0000775000175000017500000000000012414737516012756 500000000000000media-player-info-22/tools/Makefile.in0000664000175000017500000002473712414737510014752 00000000000000# Makefile.in generated by automake 1.14.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : subdir = tools DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am COPYING ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ UDEV_CFLAGS = @UDEV_CFLAGS@ UDEV_DIR = @UDEV_DIR@ UDEV_LIBS = @UDEV_LIBS@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build_alias = @build_alias@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host_alias = @host_alias@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = COPYING mpi2udev.py mpi2hwdb.py udev-syntax-check.py all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu tools/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic cscopelist-am \ ctags-am distclean distclean-generic distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: media-player-info-22/tools/Makefile.am0000644000175000017500000000010212173424731014713 00000000000000EXTRA_DIST = COPYING mpi2udev.py mpi2hwdb.py udev-syntax-check.py media-player-info-22/tools/COPYING0000644000175000017500000004313311426557226013733 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. media-player-info-22/tools/mpi2udev.py0000755000175000017500000000753212222265041014775 00000000000000#!/usr/bin/env python3 # Generate udev rules from music player identification (.mpi) files # # (C) 2009 Canonical Ltd. # Author: Martin Pitt # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. import sys, configparser, os.path, os # translation of mpi Device keys to udev attributes mpi2udev = { 'vendorid': 'ATTRS{idVendor}=="%s"', 'productid': 'ATTRS{idProduct}=="%s"', 'usbvendor': 'ATTRS{vendor}=="%s"', 'usbmodel': 'ATTRS{model}=="%s"', 'usbproduct': 'ATTRS{product}=="%s"', 'usbmanufacturer': 'ATTRS{manufacturer}=="%s"', } def parse_mpi(mpi, hwdb): '''Print udev rule for given ConfigParser object.''' cp = configparser.RawConfigParser() assert cp.read(mpi, encoding='UTF-8') rule = '' for name in ['usbvendor', 'usbproduct', 'usbmodel', 'usbmanufacturer']: try: value = cp.get('Device', name) rule += mpi2udev[name] % value + ', ' except configparser.NoOptionError: continue # if using hwdb and no info other than idVendor+idProduct was found, we don't need to write # an udev rule if hwdb and not rule: return try: usbids = {} for usbid in cp.get('Device', 'devicematch').split(';'): if len(usbid.split(':')) != 3: continue (subsystem, vid, pid) = usbid.split(':') if subsystem != "usb": continue if vid in usbids: usbids[vid].append(pid) else: usbids[vid] = [ pid ] for vid, pids in usbids.items(): rule += 'ATTRS{idVendor}=="%s", ATTRS{idProduct}=="%s"'% (vid, '|'.join(pids)) + ', ' except configparser.NoOptionError: pass # if no information was found, don't write a rule at all if not rule: return try: m = cp.get('Device', 'product') rule = ('# %s\n' % m) + rule except configparser.NoOptionError: pass rule += 'ENV{ID_MEDIA_PLAYER}="%s"' % os.path.splitext(os.path.basename(mpi))[0] # do we have an icon? try: icon = cp.get('Device', 'icon') # breaks media player detection : https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/657609 # rule += ', ENV{UDISKS_PRESENTATION_ICON_NAME}="%s"' % icon except configparser.NoOptionError: pass # empty line between blocks rule += '\n\n' # write bytes so that we are independent of the locale os.write(sys.stdout.fileno(), rule.encode('UTF-8')) # # main # # udev rules header os.write(sys.stdout.fileno(), b'''ACTION!="add|change", GOTO="media_player_end" # catch MTP devices ENV{DEVTYPE}=="usb_device", GOTO="media_player_start" # catch UMS devices SUBSYSTEM!="block", GOTO="media_player_end" SUBSYSTEMS=="usb", GOTO="media_player_start" GOTO="media_player_end" LABEL="media_player_start" ''') # the first argument should be "hwdb" or "udev" hwdb = False if sys.argv[1] == 'hwdb': hwdb = True elif sys.argv[1] != 'udev': sys.stderr.write('Unknown mode %s. Must be "hwdb" or "udev".\n' % sys.argv[1]) sys.exit(1) # parse MPI files for f in sys.argv[2:]: parse_mpi(f, hwdb) # udev rules footer os.write(sys.stdout.fileno(), b'\nLABEL="media_player_end"\n') media-player-info-22/tools/mpi2hwdb.py0000755000175000017500000000555512173750725014776 00000000000000#!/usr/bin/env python3 # Generate hwdb file from music player identification (.mpi) files # # (C) 2009 Canonical Ltd. # (C) 2013 Tom Gundersen # Author: Tom Gundersen # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. import sys, configparser, os.path, os def parse_mpi(mpi): '''Print hwdb file for given ConfigParser object.''' cp = configparser.RawConfigParser() assert cp.read(mpi, encoding='UTF-8') # if we have more info than just idVendor+idProduct we need to use an udev rule, # so don't write an hwdb entry for name in ['usbvendor', 'usbproduct', 'usbmodel', 'usbmanufacturer']: try: cp.get('Device', name) return except configparser.NoOptionError: continue block = '' try: m = cp.get('Device', 'product') block += '# ' + m + '\n' except configparser.NoOptionError: pass try: usbids = {} for usbid in cp.get('Device', 'devicematch').split(';'): if len(usbid.split(':')) != 3: continue (subsystem, vid, pid) = usbid.split(':') if subsystem != "usb": continue if vid in usbids: usbids[vid].append(pid) else: usbids[vid] = [ pid ] for vid, pids in usbids.items(): for pid in pids: block += 'usb:v%sp%s*\n' % (vid.upper(), pid.upper()) block += ' ID_MEDIA_PLAYER=%s\n' % os.path.splitext(os.path.basename(mpi))[0] # do we have an icon? try: icon = cp.get('Device', 'icon') # breaks media player detection : https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/657609 #print ' UDISKS_PRESENTATION_ICON_NAME=%s\n' % icon, except configparser.NoOptionError: pass # empty line between blocks block += '\n' # write bytes so that we are independent of the locale os.write(sys.stdout.fileno(), block.encode('UTF-8')) except configparser.NoOptionError: pass # # main # # parse MPI files for f in sys.argv[1:]: parse_mpi(f) media-player-info-22/tools/udev-syntax-check.py0000755000175000017500000000401312173750725016610 00000000000000#!/usr/bin/env python3 # Simple udev rules syntax checker # # (C) 2010 Canonical Ltd. # Author: Martin Pitt # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with keymap; if not, write to the Free Software Foundation, # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. import re import sys if len(sys.argv) < 2: sys.stderr.write('Usage: %s [...]\n' % sys.argv[0]) sys.exit(2) no_args_tests = re.compile('(ACTION|DEVPATH|KERNELS?|NAME|SYMLINK|SUBSYSTEMS?|DRIVERS?|TAG|PROGRAM|RESULT)\s*(?:=|!)=\s*"([^"]*)"$') args_tests = re.compile('(ATTRS?|ENV|TEST){(\w+)}\s*(?:=|!)=\s*"([^"]*)"$') no_args_assign = re.compile('(NAME|SYMLINK|OWNER|GROUP|MODE|TAG|RUN|LABEL|GOTO|WAIT_FOR|OPTIONS)\s*(?:\+=|:=|=)\s*"([^"]*)"$') args_assign = re.compile('(ATTR|ENV|IMPORT){([a-zA-Z0-9_.-]+)}\s*=\s*"([^"]*)"$') result = 0 lineno = 0 for path in sys.argv[1:]: for line in open(path, encoding='UTF-8'): lineno += 1 # filter out comments and empty lines line = line.split('#')[0] line = line.strip() if not line: continue for clause in line.split(','): clause = clause.strip() if not (no_args_tests.match(clause) or args_tests.match(clause) or no_args_assign.match(clause) or args_assign.match(clause)): sys.stderr.write('Invalid line %s:%i: "%s"\n' % (path, lineno, line)) sys.exit(1) result = 1 break sys.exit(result)