Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
f8c99c8e
Commit
f8c99c8e
authored
Nov 10, 2008
by
Led
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.13.0-alt1
parent
633b021b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
56 deletions
+16
-56
rules
.gear/rules
+1
-1
ce1c200d470356571c6a7aa94a3fd47648bcea5c
.gear/tags/ce1c200d470356571c6a7aa94a3fd47648bcea5c
+5
-0
e8b2d77d8357cc43763d5d1fab5aca97da1bc11a
.gear/tags/e8b2d77d8357cc43763d5d1fab5aca97da1bc11a
+0
-5
list
.gear/tags/list
+1
-1
mpd-0.12.1+flac-1.1.3.patch
mpd-0.12.1+flac-1.1.3.patch
+0
-0
mpd-0.12.1-configure.patch
mpd-0.12.1-configure.patch
+0
-37
mpd.spec
mpd.spec
+9
-12
No files found.
.gear/rules
View file @
f8c99c8e
tar.bz2: @version@:.
copy: *.conf
*.patch
copy: *.conf
.gear/tags/ce1c200d470356571c6a7aa94a3fd47648bcea5c
0 → 100644
View file @
f8c99c8e
object 1370cca91f2f181d2c97ee23119bfee62cd7c952
type commit
tag 0.13.0
tagger Led <led@altlinux.org> 1226282096 +0200
.gear/tags/e8b2d77d8357cc43763d5d1fab5aca97da1bc11a
deleted
100644 → 0
View file @
633b021b
object 134a9ab30b26e207360301330442a10ed0f8c401
type commit
tag 0.12.1
tagger Led <led@altlinux.org> 1226282087 +0200
.gear/tags/list
View file @
f8c99c8e
e8b2d77d8357cc43763d5d1fab5aca97da1bc11a 0.12.1
ce1c200d470356571c6a7aa94a3fd47648bcea5c 0.13.0
mpd-0.12.1+flac-1.1.3.patch
deleted
100644 → 0
View file @
633b021b
This diff is collapsed.
Click to expand it.
mpd-0.12.1-configure.patch
deleted
100644 → 0
View file @
633b021b
diff -urN mpd-0.12.1.orig/configure mpd-0.12.1/configure
--- mpd-0.12.1.orig/configure 2006-10-11 02:57:30 +0300
+++ mpd-0.12.1/configure 2007-01-10 18:56:56 +0200
@@ -18970,7 +18970,13 @@
# Check whether --with-tremor or --without-tremor was given.
if test "${with_tremor+set}" = set; then
withval="$with_tremor"
- use_tremor=yes; test x$withval != xyes && tremor_prefix="$withval"
+ if test "x$withval" = xyes -o "x$withval" = xno; then
+ use_tremor="$withval"
+ else
+ use_tremor=yes
+ tremor_prefix="$withval"
+ fi
+
fi;
# Check whether --with-tremor-libraries or --without-tremor-libraries was given.
diff -urN mpd-0.12.1.orig/configure.ac mpd-0.12.1/configure.ac
--- mpd-0.12.1.orig/configure.ac 2006-10-11 02:56:58 +0300
+++ mpd-0.12.1/configure.ac 2007-01-10 18:56:28 +0200
@@ -81,7 +81,14 @@
AC_ARG_ENABLE(mpc,[ --disable-mpc disable musepack (MPC) support (default: enable)],[enable_mpc=$enableval],[enable_mpc=yes])
AC_ARG_ENABLE(id3,[ --disable-id3 disable id3 support (default: enable)],[enable_id3=$enableval],[enable_id3=yes])
-AC_ARG_WITH(tremor,[[ --with-tremor[=PFX] Use Tremor(vorbisidec) integer Ogg-Vorbis decoder (with optional prefix)]], use_tremor=yes; test x$withval != xyes && tremor_prefix="$withval",)
+AC_ARG_WITH(tremor,[[ --with-tremor[=PFX] Use Tremor(vorbisidec) integer Ogg-Vorbis decoder (with optional prefix)]],
+ if test "x$withval" = xyes -o "x$withval" = xno; then
+ use_tremor="$withval"
+ else
+ use_tremor=yes
+ tremor_prefix="$withval"
+ fi
+,)
AC_ARG_WITH(tremor-libraries,[ --with-tremor-libraries=DIR Directory where Tremor library is installed (optional)], tremor_libraries="$withval", tremor_libraries="")
AC_ARG_WITH(tremor-includes,[ --with-tremor-includes=DIR Directory where Tremor header files are installed (optional)], tremor_includes="$withval", tremor_includes="")
mpd.spec
View file @
f8c99c8e
...
...
@@ -29,23 +29,21 @@
%endif
Name: mpd
Version: 0.1
2.1
Release: alt1
.0
Version: 0.1
3.0
Release: alt1
Summary: Music Player Daemon (MPD) allows remote access for playing music and managing playlists.
License: GPL
Group: Sound
URL: http://musicpd.org/
Source0: http://musicpd.org/uploads/files/%name-%version.tar.bz2
Source1: %name.conf
Patch0: %name-0.12.1-configure.patch
Patch1: mpd-0.12.1+flac-1.1.3.patch
# Automatically added by buildreq on Wed Jan 10 2007
BuildRequires: gcc-c++ zlib-devel
BuildRequires: gcc-c++ zlib-devel
libsamplerate-devel
%{?_enable_alsa:BuildRequires: libalsa-devel >= 0.9.0}
%{?_enable_ao:BuildRequires: libao-devel}
%{?_enable_shout:BuildRequires: libshout-devel}
%{?_enable_shout:BuildRequires: libshout
2
-devel}
%{?_enable_audiofile:BuildRequires: libaudiofile-devel >= 0.1.7}
%{?_enable_mod:BuildRequires: libmikmod-devel >= 3.1.7}
%{?_enable_faad:BuildRequires: libfaad-devel}
...
...
@@ -68,16 +66,11 @@ console junkie, like frontend options, or restart X often.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
touch aclocal.m4
%build
autoconf -v -i -f
%add_optflags -I/usr/include/shout2
%configure \
%{subst_with pic} \
%{subst_with tremor} \
%{subst_enable ao} \
%{subst_enable shout} \
%{subst_enable iconv} \
...
...
@@ -116,6 +109,10 @@ bzip2 --best --keep --force ChangeLog
%changelog
* Mon Sep 10 2007 Alex Gorbachenko (agent_007) <algor@altlinux.ru> 0.13.0-alt1
- 0.13.0.
- fix build with libshout2 (#12708).
* Sat Apr 21 2007 ALT QA Team Robot <qa-robot@altlinux.org> 0.12.1-alt1.0
- Rebuilt due to libFLAC.so.7 -> libFLAC.so.8 soname change.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment