diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2013-06-18 22:24:20 -0500 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2013-06-22 21:32:56 -0300 |
commit | 6bf23a1fd33d8c6d3da81340d1f4f96f722488d9 (patch) | |
tree | db66ab81ff73945d6c40c576fa543d3dd9253a76 /libraries/gnome-media | |
parent | f02b5c0d28fa5bafd8b122bca664142c825e53f6 (diff) | |
download | slackbuilds-6bf23a1fd33d8c6d3da81340d1f4f96f722488d9.tar.gz |
libraries/gnome-media: Miscellaneous cleanup
* remove obsolete "--enable-profile" configure flag
* note optional dependency on pulseaudio
These were just a couple of issues I noticed when building
this on the way to checking a 'soundconverter' submission.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/gnome-media')
-rw-r--r-- | libraries/gnome-media/README | 5 | ||||
-rw-r--r-- | libraries/gnome-media/gnome-media.SlackBuild | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/libraries/gnome-media/README b/libraries/gnome-media/README index 3e23f45b6f..17e6dc5c68 100644 --- a/libraries/gnome-media/README +++ b/libraries/gnome-media/README @@ -4,5 +4,6 @@ media-related options for GNOME. If you want to build gnome recorder, pass USE_GRECORD=yes to the script when building. If you want to disable GStreamer properties, pass USE_GSTPROP=no to the script. To enable the (deprecated) GStreamer -mixer, pass USE_GSTMIX=yes to the script. To disable the gnome media -profile, pass USE_PROFILE=no to the script. +mixer, pass USE_GSTMIX=yes to the script. + +pulseaudio is an optional dependency. diff --git a/libraries/gnome-media/gnome-media.SlackBuild b/libraries/gnome-media/gnome-media.SlackBuild index 5ae3b48586..a4f3a03a71 100644 --- a/libraries/gnome-media/gnome-media.SlackBuild +++ b/libraries/gnome-media/gnome-media.SlackBuild @@ -6,13 +6,12 @@ PRGNAM=gnome-media VERSION=${VERSION:-2.31.6} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} USE_GRECORD=${USE_GRECORD:-no} USE_GSTPROP=${USE_GSTPROP:-yes} USE_GSTMIX=${USE_GSTMIX:-no} -USE_PROFILE=${USE_PROFILE:-yes} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -69,7 +68,6 @@ CXXFLAGS="$SLKCFLAGS" \ --enable-grecord=$USE_GRECORD \ --enable-gstprops=$USE_GSTPROP \ --enable-gstmix=$USE_GSTMIX \ - --enable-profile=$USE_PROFILE \ --disable-scrollkeeper \ --disable-schemas-install \ --build=$ARCH-slackware-linux |