# HG changeset patch # User William Pitcock # Date 1190302068 18000 # Node ID 4ee9f4c9f90549dba97601fdfac9fcc14c10dab4 # Parent 978fbda4855f03da0e206f004ec44c8271d52979# Parent 7d0adad41792a7e744dcca1f7e171a7745a9a039 Automated merge with ssh://hg.atheme.org//hg/audacious diff -r 978fbda4855f -r 4ee9f4c9f905 .hgignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,31 @@ +syntax: glob +aclocal.m4 +autom4te.cache +audacious.pc +audclient.pc +buildsys.mk +config.h +config.h.in +config.log +config.status +configure +extra.mk +man/audacious.1 +man/audtool.1 +po/Makefile +po/Makefile.in +po/POTFILES +po/stamp-po +src/audacious/audacious +src/audacious/audacious.desktop +src/audacious/build_stamp.c +src/audacious/dbus-client-bindings.h +src/audacious/dbus-server-bindings.h +src/audtool/audtool +.deps +*.a +*.dylib +*.gmo +*.o +*.so +*~ diff -r 978fbda4855f -r 4ee9f4c9f905 Makefile --- a/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,16 +1,97 @@ +SUBDIRS = src man pixmaps po +DATA = Skins/Classic/balance.png \ + Skins/Classic/cbuttons.png \ + Skins/Classic/eq_ex.png \ + Skins/Classic/eqmain.png \ + Skins/Classic/main.png \ + Skins/Classic/monoster.png \ + Skins/Classic/nums_ex.png \ + Skins/Classic/playpaus.png \ + Skins/Classic/pledit.png \ + Skins/Classic/pledit.txt \ + Skins/Classic/posbar.png \ + Skins/Classic/shufrep.png \ + Skins/Classic/skin-classic.hints \ + Skins/Classic/skin.hints \ + Skins/Classic/text.png \ + Skins/Classic/titlebar.png \ + Skins/Classic/viscolor.txt \ + Skins/Classic/volume.png \ + Skins/Default/balance.png \ + Skins/Default/cbuttons.png \ + Skins/Default/eq_ex.png \ + Skins/Default/eqmain.png \ + Skins/Default/main.png \ + Skins/Default/monoster.png \ + Skins/Default/nums_ex.png \ + Skins/Default/playpaus.png \ + Skins/Default/pledit.png \ + Skins/Default/pledit.txt \ + Skins/Default/posbar.png \ + Skins/Default/shufrep.png \ + Skins/Default/skin-classic.hints \ + Skins/Default/skin.hints \ + Skins/Default/text.png \ + Skins/Default/titlebar.png \ + Skins/Default/viscolor.txt \ + Skins/Default/volume.png \ + Skins/Ivory/balance.png \ + Skins/Ivory/cbuttons.png \ + Skins/Ivory/eq_ex.png \ + Skins/Ivory/eqmain.png \ + Skins/Ivory/main.png \ + Skins/Ivory/monoster.png \ + Skins/Ivory/nums_ex.png \ + Skins/Ivory/playpaus.png \ + Skins/Ivory/pledit.png \ + Skins/Ivory/pledit.txt \ + Skins/Ivory/posbar.png \ + Skins/Ivory/shufrep.png \ + Skins/Ivory/skin.hints \ + Skins/Ivory/text.png \ + Skins/Ivory/titlebar.png \ + Skins/Ivory/viscolor.txt \ + Skins/Ivory/volume.png \ + Skins/Osmosis/balance.png \ + Skins/Osmosis/cbuttons.png \ + Skins/Osmosis/eq_ex.png \ + Skins/Osmosis/eqmain.png \ + Skins/Osmosis/main.png \ + Skins/Osmosis/monoster.png \ + Skins/Osmosis/nums_ex.png \ + Skins/Osmosis/playpaus.png \ + Skins/Osmosis/pledit.png \ + Skins/Osmosis/pledit.txt \ + Skins/Osmosis/posbar.png \ + Skins/Osmosis/shufrep.png \ + Skins/Osmosis/skin.hints \ + Skins/Osmosis/text.png \ + Skins/Osmosis/titlebar.png \ + Skins/Osmosis/viscolor.txt \ + Skins/Osmosis/volume.png \ + Skins/TinyPlayer/balance.png \ + Skins/TinyPlayer/cbuttons.png \ + Skins/TinyPlayer/eq_ex.png \ + Skins/TinyPlayer/eqmain.png \ + Skins/TinyPlayer/main.png \ + Skins/TinyPlayer/monoster.png \ + Skins/TinyPlayer/nums_ex.png \ + Skins/TinyPlayer/playpaus.png \ + Skins/TinyPlayer/pledit.png \ + Skins/TinyPlayer/pledit.txt \ + Skins/TinyPlayer/posbar.png \ + Skins/TinyPlayer/shufrep.png \ + Skins/TinyPlayer/skin.hints \ + Skins/TinyPlayer/text.png \ + Skins/TinyPlayer/titlebar.png \ + Skins/TinyPlayer/viscolor.txt \ + Skins/TinyPlayer/volume.png DISTCLEAN = extra.mk include buildsys.mk -SUBDIRS = src man po icons skins - -OBJECTIVE_DATA = \ - audacious.pc:$(LIBDIR)/pkgconfig \ - audclient.pc:$(LIBDIR)/pkgconfig - install-extra: - y="audacious.pc audclient.pc"; \ - for i in $$y; do \ + for i in audacious.pc audclient.pc; do \ ${INSTALL_STATUS}; \ if ${MKDIR_P} ${DESTDIR}${libdir}/pkgconfig && ${INSTALL} -m 644 $$i ${DESTDIR}${libdir}/pkgconfig/$$i; then \ ${INSTALL_OK}; \ @@ -20,8 +101,7 @@ done uninstall-extra: - y="audacious.pc audclient.pc"; \ - for i in $$y; do \ + for i in audacious.pc audclient.pc; do \ if [ -f ${DESTDIR}${libdir}/pkgconfig/$$i ]; then \ if rm -f ${DESTDIR}${libdir}/pkgconfig/$$i; then \ ${DELETE_OK}; \ diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/.depend diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/.depend-done diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/balance.png Binary file Skins/Classic/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/cbuttons.png Binary file Skins/Classic/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/eq_ex.png Binary file Skins/Classic/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/eqmain.png Binary file Skins/Classic/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/main.png Binary file Skins/Classic/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/monoster.png Binary file Skins/Classic/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/nums_ex.png Binary file Skins/Classic/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/playpaus.png Binary file Skins/Classic/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/pledit.png Binary file Skins/Classic/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/pledit.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Classic/pledit.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,6 @@ +[Text] +Normal=#a6c1df +Current=#eeeeee +NormalBG=#000000 +SelectedBG=#666666 +Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/posbar.png Binary file Skins/Classic/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/shufrep.png Binary file Skins/Classic/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/skin-classic.hints --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Classic/skin-classic.hints Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,3 @@ +[skin] +skinDescription=The default skin for Audacious. (Classic variant) +mainwinOthertext=1 diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/skin.hints --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Classic/skin.hints Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,7 @@ +[skin] +skinDescription=The default skin for Audacious. +mainwinOthertext=1 +mainwinOthertextVisible=1 +mainwinTextVisible=1 +mainwinVisVisible=1 +mainwinMenurowVisible=1 diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/text.png Binary file Skins/Classic/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/titlebar.png Binary file Skins/Classic/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/viscolor.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Classic/viscolor.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,24 @@ +0,0,0 // [background color 1] +0,0,0 // [background color 2] +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +126,126,126 // [osc 1] +126,126,126 // [osc 2] +126,126,126 // [osc 3] +126,126,126 // [osc 4] +126,126,126 // [osc 5] +130,130,131 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Classic/volume.png Binary file Skins/Classic/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/.depend diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/.depend-done diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/balance.png Binary file Skins/Default/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/cbuttons.png Binary file Skins/Default/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/eq_ex.png Binary file Skins/Default/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/eqmain.png Binary file Skins/Default/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/main.png Binary file Skins/Default/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/monoster.png Binary file Skins/Default/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/nums_ex.png Binary file Skins/Default/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/playpaus.png Binary file Skins/Default/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/pledit.png Binary file Skins/Default/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/pledit.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Default/pledit.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,6 @@ +[Text] +Normal=#a6c1df +Current=#eeeeee +NormalBG=#000000 +SelectedBG=#666666 +Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/posbar.png Binary file Skins/Default/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/shufrep.png Binary file Skins/Default/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/skin-classic.hints --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Default/skin-classic.hints Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,3 @@ +[skin] +skinDescription=The default skin for Audacious. (Classic variant) +mainwinOthertext=1 diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/skin.hints --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Default/skin.hints Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,28 @@ +[skin] +skinDescription=The default skin for Audacious. +mainwinOthertext=1 +mainwinVisX=19 +mainwinVisY=39 +mainwinTextX=19 +mainwinTextY=26 +mainwinTextWidth=246 +mainwinInfobarX=111 +mainwinInfobarY=42 +mainwinNumber0X=30 +mainwinNumber0Y=56 +mainwinNumber1X=42 +mainwinNumber1Y=56 +mainwinNumber2X=54 +mainwinNumber2Y=56 +mainwinNumber3X=72 +mainwinNumber3Y=56 +mainwinNumber4X=84 +mainwinNumber4Y=56 +mainwinPlayStatusX=19 +mainwinPlayStatusY=58 +mainwinMenurowVisible=1 +mainwinOthertextIsStatus=1 +mainwinOthertextVisible=1 +mainwinTextVisible=1 +mainwinVisVisible=1 + diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/text.png Binary file Skins/Default/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/titlebar.png Binary file Skins/Default/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/viscolor.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Default/viscolor.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,24 @@ +0,0,0 // [background color 1] +0,0,0 // [background color 2] +9,13,15 +19,26,31 +29,39,47 +39,52,63 +49,65,79 +59,78,95 +69,91,111 +79,105,127 +88,118,143 +98,131,159 +108,144,175 +118,157,191 +128,170,207 +138,183,223 +148,196,239 +158,210,255 +240,240,240 // [osc 1] +220,220,220 // [osc 2] +170,170,170 // [osc 3] +100,100,100 // [osc 4] +20,20,20 // [osc 5] +200,200,220 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Default/volume.png Binary file Skins/Default/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/.depend diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/.depend-done diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/balance.png Binary file Skins/Ivory/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/cbuttons.png Binary file Skins/Ivory/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/eq_ex.png Binary file Skins/Ivory/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/eqmain.png Binary file Skins/Ivory/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/main.png Binary file Skins/Ivory/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/monoster.png Binary file Skins/Ivory/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/nums_ex.png Binary file Skins/Ivory/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/playpaus.png Binary file Skins/Ivory/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/pledit.png Binary file Skins/Ivory/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/pledit.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Ivory/pledit.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,6 @@ +[Text] +Normal=#325e84 +Current=#111111 +NormalBG=#FFFFFF +SelectedBG=#999999 +Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/posbar.png Binary file Skins/Ivory/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/shufrep.png Binary file Skins/Ivory/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/skin.hints --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Ivory/skin.hints Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,64 @@ +[skin] +skinDescription=Ivory +mainwinOthertext=1 +mainwinVisX=335 +mainwinVisY=53 +mainwinTextX=93 +mainwinTextY=42 +mainwinTextWidth=319 +mainwinInfobarX=173 +mainwinInfobarY=64 +mainwinNumber0X=105 +mainwinNumber0Y=57 +mainwinNumber1X=117 +mainwinNumber1Y=57 +mainwinNumber2X=129 +mainwinNumber2Y=57 +mainwinNumber3X=147 +mainwinNumber3Y=57 +mainwinNumber4X=159 +mainwinNumber4Y=57 +mainwinPlayStatusX=93 +mainwinPlayStatusY=60 +mainwinOthertextIsStatus=1 +mainwinVolumeX=126 +mainwinVolumeY=22 +mainwinBalanceX=200 +mainwinBalanceY=22 +mainwinPositionX=130 +mainwinPositionY=80 +mainwinTextVisible=1 +mainwinOthertextVisible=1 +mainwinVisVisible=1 +mainwinMenurowVisible=0 +mainwinWidth=425 +mainwinHeight=100 +mainwinPreviousX=5 +mainwinPreviousY=48 +mainwinPlayX=33 +mainwinPlayY=48 +mainwinPauseX=33 +mainwinPauseY=70 +mainwinStopX=33 +mainwinStopY=26 +mainwinNextX=61 +mainwinNextY=48 +mainwinEjectX=390 +mainwinEjectY=77 +mainwinEQButtonX=249 +mainwinEQButtonY=22 +mainwinPLButtonX=272 +mainwinPLButtonY=22 +mainwinShuffleX=355 +mainwinShuffleY=20 +mainwinRepeatX=400 +mainwinRepeatY=20 +mainwinAboutX=999 +mainwinAboutY=999 +mainwinMinimizeX=393 +mainwinMinimizeY=3 +mainwinShadeX=403 +mainwinShadeY=3 +mainwinCloseX=413 +mainwinCloseY=3 + diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/text.png Binary file Skins/Ivory/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/titlebar.png Binary file Skins/Ivory/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/viscolor.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Ivory/viscolor.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,25 @@ +255,255,255 // [background color 1] +255,255,255 // [background color 2] +255,255,255 +240,242,244 +226,230,234 +212,218,223 +198,205,213 +184,193,203 +170,181,192 +156,168,182 +142,156,172 +128,144,161 +114,131,151 +100,119,140 +86,107,130 +72,94,120 +58,82,109 +44,70,99 +30,58,89 +129,129,129 // [osc 1] +150,150,150 // [osc 2] +170,170,170 // [osc 3] +200,200,200 // [osc 4] +240,240,240 // [osc 5] +125,125,124 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Ivory/volume.png Binary file Skins/Ivory/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/.depend diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/.depend-done diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/balance.png Binary file Skins/Osmosis/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/cbuttons.png Binary file Skins/Osmosis/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/eq_ex.png Binary file Skins/Osmosis/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/eqmain.png Binary file Skins/Osmosis/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/main.png Binary file Skins/Osmosis/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/monoster.png Binary file Skins/Osmosis/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/nums_ex.png Binary file Skins/Osmosis/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/playpaus.png Binary file Skins/Osmosis/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/pledit.png Binary file Skins/Osmosis/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/pledit.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Osmosis/pledit.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,6 @@ +[Text] +Normal=#a6c1df +Current=#eeeeee +NormalBG=#000000 +SelectedBG=#666666 +Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/posbar.png Binary file Skins/Osmosis/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/shufrep.png Binary file Skins/Osmosis/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/skin.hints --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Osmosis/skin.hints Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,64 @@ +[skin] +skinDescription=Osmosis +mainwinOthertext=1 +mainwinVisX=335 +mainwinVisY=53 +mainwinTextX=93 +mainwinTextY=42 +mainwinTextWidth=319 +mainwinInfobarX=173 +mainwinInfobarY=64 +mainwinNumber0X=105 +mainwinNumber0Y=57 +mainwinNumber1X=117 +mainwinNumber1Y=57 +mainwinNumber2X=129 +mainwinNumber2Y=57 +mainwinNumber3X=147 +mainwinNumber3Y=57 +mainwinNumber4X=159 +mainwinNumber4Y=57 +mainwinPlayStatusX=93 +mainwinPlayStatusY=60 +mainwinOthertextIsStatus=1 +mainwinVolumeX=126 +mainwinVolumeY=22 +mainwinBalanceX=200 +mainwinBalanceY=22 +mainwinPositionX=130 +mainwinPositionY=80 +mainwinTextVisible=1 +mainwinOthertextVisible=1 +mainwinVisVisible=1 +mainwinMenurowVisible=0 +mainwinWidth=425 +mainwinHeight=100 +mainwinPreviousX=5 +mainwinPreviousY=48 +mainwinPlayX=33 +mainwinPlayY=48 +mainwinPauseX=33 +mainwinPauseY=70 +mainwinStopX=33 +mainwinStopY=26 +mainwinNextX=61 +mainwinNextY=48 +mainwinEjectX=390 +mainwinEjectY=77 +mainwinEQButtonX=249 +mainwinEQButtonY=22 +mainwinPLButtonX=272 +mainwinPLButtonY=22 +mainwinShuffleX=355 +mainwinShuffleY=20 +mainwinRepeatX=400 +mainwinRepeatY=20 +mainwinAboutX=999 +mainwinAboutY=999 +mainwinMinimizeX=393 +mainwinMinimizeY=3 +mainwinShadeX=403 +mainwinShadeY=3 +mainwinCloseX=413 +mainwinCloseY=3 + diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/text.png Binary file Skins/Osmosis/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/titlebar.png Binary file Skins/Osmosis/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/viscolor.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/Osmosis/viscolor.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,24 @@ +0,0,0 // [background color 1] +0,0,0 // [background color 2] +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +126,126,126 // [osc 1] +126,126,126 // [osc 2] +126,126,126 // [osc 3] +126,126,126 // [osc 4] +126,126,126 // [osc 5] +130,130,131 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/Osmosis/volume.png Binary file Skins/Osmosis/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/.depend diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/.depend-done diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/balance.png Binary file Skins/TinyPlayer/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/cbuttons.png Binary file Skins/TinyPlayer/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/eq_ex.png Binary file Skins/TinyPlayer/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/eqmain.png Binary file Skins/TinyPlayer/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/main.png Binary file Skins/TinyPlayer/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/monoster.png Binary file Skins/TinyPlayer/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/nums_ex.png Binary file Skins/TinyPlayer/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/playpaus.png Binary file Skins/TinyPlayer/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/pledit.png Binary file Skins/TinyPlayer/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/pledit.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/TinyPlayer/pledit.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,6 @@ +[Text] +Normal=#a6c1df +Current=#eeeeee +NormalBG=#000000 +SelectedBG=#666666 +Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/posbar.png Binary file Skins/TinyPlayer/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/shufrep.png Binary file Skins/TinyPlayer/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/skin.hints --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/TinyPlayer/skin.hints Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,57 @@ +[skin] +skinDescription=TinyPlayer skin +mainwinOthertext=1 +mainwinVisX=189 +mainwinVisY=36 +mainwinTextX=1 +mainwinTextY=80 +mainwinTextWidth=273 +mainwinInfobarX=0 +mainwinInfobarY=0 +mainwinNumber0X=30 +mainwinNumber0Y=19 +mainwinNumber1X=42 +mainwinNumber1Y=19 +mainwinNumber2X=54 +mainwinNumber2Y=19 +mainwinNumber3X=72 +mainwinNumber3Y=19 +mainwinNumber4X=84 +mainwinNumber4Y=19 +mainwinPlayStatusX=11 +mainwinPlayStatusY=22 +mainwinOthertextIsStatus=0 +mainwinVolumeX=106 +mainwinVolumeY=22 +mainwinBalanceX=180 +mainwinBalanceY=22 +mainwinPositionX=16 +mainwinPositionY=36 +mainwinTextVisible=1 +mainwinOthertextVisible=0 +mainwinVisVisible=0 +mainwinMenurowVisible=0 +mainwinWidth=275 +mainwinHeight=87 +mainwinPreviousX=16 +mainwinPreviousY=53 +mainwinPlayX=39 +mainwinPlayY=53 +mainwinPauseX=62 +mainwinPauseY=53 +mainwinStopX=85 +mainwinStopY=53 +mainwinNextX=108 +mainwinNextY=53 +mainwinEjectX=136 +mainwinEjectY=53 +mainwinEQButtonX=219 +mainwinEQButtonY=22 +mainwinPLButtonX=242 +mainwinPLButtonY=22 +mainwinShuffleX=164 +mainwinShuffleY=56 +mainwinRepeatX=210 +mainwinRepeatY=56 +mainwinAboutX=247 +mainwinAboutY=53 diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/text.png Binary file Skins/TinyPlayer/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/titlebar.png Binary file Skins/TinyPlayer/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/viscolor.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Skins/TinyPlayer/viscolor.txt Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,24 @@ +0,0,0 // [background color 1] +0,0,0 // [background color 2] +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +128,170,206 +126,126,126 // [osc 1] +126,126,126 // [osc 2] +126,126,126 // [osc 3] +126,126,126 // [osc 4] +126,126,126 // [osc 5] +130,130,131 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 Skins/TinyPlayer/volume.png Binary file Skins/TinyPlayer/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 buildsys.mk.in --- a/buildsys.mk.in Thu Sep 20 10:27:19 2007 -0500 +++ b/buildsys.mk.in Thu Sep 20 10:27:48 2007 -0500 @@ -70,6 +70,10 @@ OBJS5 = ${OBJS4:.erl=.beam} OBJS += ${OBJS5:.m=.o} +ifneq ($(strip $(prefix)),) + RPATH = -Wl,-rpath=${libdir} +endif + .SILENT: .SUFFIXES: .beam .c .cc .cxx .d .erl .m .PHONY: all subdirs depend install uninstall clean distclean @@ -79,7 +83,7 @@ subdirs: for i in ${SUBDIRS}; do \ ${DIR_ENTER}; \ - ${MAKE} || exit 1; \ + ${MAKE} ${MFLAGS} || exit 1; \ ${DIR_LEAVE}; \ done @@ -100,7 +104,7 @@ ${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS} ${LINK_STATUS} - if ${LD} -o $@ ${OBJS} ${LDFLAGS} ${LIBS}; then \ + if ${LD} -o $@ ${OBJS} ${LDFLAGS} ${LIBS} ${RPATH}; then \ ${LINK_OK}; \ else \ ${LINK_FAILED}; \ @@ -183,7 +187,7 @@ install: ${LIB} ${STATIC_LIB} ${PLUGIN} ${PROG} install-extra for i in ${SUBDIRS}; do \ ${DIR_ENTER}; \ - ${MAKE} install || exit 1; \ + ${MAKE} ${MFLAGS} install || exit 1; \ ${DIR_LEAVE}; \ done @@ -216,7 +220,7 @@ for i in ${DATA}; do \ ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${datadir} && ${INSTALL} -m 644 $$i ${DESTDIR}${datadir}/${PACKAGE}/$$i; then \ + if ${MKDIR_P} $$(dirname ${DESTDIR}${datadir}/${PACKAGE}/$$i) && ${INSTALL} -m 644 $$i ${DESTDIR}${datadir}/${PACKAGE}/$$i; then \ ${INSTALL_OK}; \ else \ ${INSTALL_FAILED}; \ @@ -255,7 +259,7 @@ uninstall: uninstall-extra for i in ${SUBDIRS}; do \ ${DIR_ENTER}; \ - ${MAKE} uninstall || exit 1; \ + ${MAKE} ${MFLAGS} uninstall || exit 1; \ ${DIR_LEAVE}; \ done @@ -336,7 +340,7 @@ clean: for i in ${SUBDIRS}; do \ ${DIR_ENTER}; \ - ${MAKE} clean || exit 1; \ + ${MAKE} ${MFLAGS} clean || exit 1; \ ${DIR_LEAVE}; \ done @@ -353,7 +357,7 @@ distclean: clean for i in ${SUBDIRS}; do \ ${DIR_ENTER}; \ - ${MAKE} distclean || exit 1; \ + ${MAKE} ${MFLAGS} distclean || exit 1; \ ${DIR_LEAVE}; \ done diff -r 978fbda4855f -r 4ee9f4c9f905 icons/Makefile --- a/icons/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -include ../buildsys.mk - -pixmapsdir = $(datadir)/pixmaps - -install-extra: - y="audacious.png"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${pixmapsdir} && ${INSTALL} -m 644 $$i ${DESTDIR}${pixmapsdir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="audacious.png"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${pixmapsdir}/$$i ]; then \ - if rm -f ${DESTDIR}${pixmapsdir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done - diff -r 978fbda4855f -r 4ee9f4c9f905 icons/audacious.png Binary file icons/audacious.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 pixmaps/.depend diff -r 978fbda4855f -r 4ee9f4c9f905 pixmaps/.depend-done diff -r 978fbda4855f -r 4ee9f4c9f905 pixmaps/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pixmaps/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -0,0 +1,5 @@ +DATA = audacious.png + +include ../buildsys.mk + +PACKAGE = pixmaps diff -r 978fbda4855f -r 4ee9f4c9f905 pixmaps/audacious.png Binary file pixmaps/audacious.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/Makefile --- a/skins/Classic/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -include ../../buildsys.mk - -skindir = $(pkgdatadir)/Skins/Classic - -install-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${skindir} && ${INSTALL} -m 644 $$i ${DESTDIR}${skindir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${skindir}/$$i ]; then \ - if rm -f ${DESTDIR}${skindir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/balance.png Binary file skins/Classic/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/cbuttons.png Binary file skins/Classic/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/eq_ex.png Binary file skins/Classic/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/eqmain.png Binary file skins/Classic/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/main.png Binary file skins/Classic/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/monoster.png Binary file skins/Classic/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/nums_ex.png Binary file skins/Classic/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/playpaus.png Binary file skins/Classic/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/pledit.png Binary file skins/Classic/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/pledit.txt --- a/skins/Classic/pledit.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -[Text] -Normal=#a6c1df -Current=#eeeeee -NormalBG=#000000 -SelectedBG=#666666 -Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/posbar.png Binary file skins/Classic/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/shufrep.png Binary file skins/Classic/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/skin-classic.hints --- a/skins/Classic/skin-classic.hints Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -[skin] -skinDescription=The default skin for Audacious. (Classic variant) -mainwinOthertext=1 diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/skin.hints --- a/skins/Classic/skin.hints Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,7 +0,0 @@ -[skin] -skinDescription=The default skin for Audacious. -mainwinOthertext=1 -mainwinOthertextVisible=1 -mainwinTextVisible=1 -mainwinVisVisible=1 -mainwinMenurowVisible=1 diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/text.png Binary file skins/Classic/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/titlebar.png Binary file skins/Classic/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/viscolor.txt --- a/skins/Classic/viscolor.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -0,0,0 // [background color 1] -0,0,0 // [background color 2] -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -126,126,126 // [osc 1] -126,126,126 // [osc 2] -126,126,126 // [osc 3] -126,126,126 // [osc 4] -126,126,126 // [osc 5] -130,130,131 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Classic/volume.png Binary file skins/Classic/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/Makefile --- a/skins/Default/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -include ../../buildsys.mk - -skindir = $(pkgdatadir)/Skins/Default - -install-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${skindir} && ${INSTALL} -m 644 $$i ${DESTDIR}${skindir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${skindir}/$$i ]; then \ - if rm -f ${DESTDIR}${skindir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/balance.png Binary file skins/Default/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/cbuttons.png Binary file skins/Default/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/eq_ex.png Binary file skins/Default/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/eqmain.png Binary file skins/Default/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/main.png Binary file skins/Default/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/monoster.png Binary file skins/Default/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/nums_ex.png Binary file skins/Default/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/playpaus.png Binary file skins/Default/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/pledit.png Binary file skins/Default/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/pledit.txt --- a/skins/Default/pledit.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -[Text] -Normal=#a6c1df -Current=#eeeeee -NormalBG=#000000 -SelectedBG=#666666 -Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/posbar.png Binary file skins/Default/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/shufrep.png Binary file skins/Default/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/skin-classic.hints --- a/skins/Default/skin-classic.hints Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -[skin] -skinDescription=The default skin for Audacious. (Classic variant) -mainwinOthertext=1 diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/skin.hints --- a/skins/Default/skin.hints Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -[skin] -skinDescription=The default skin for Audacious. -mainwinOthertext=1 -mainwinVisX=19 -mainwinVisY=39 -mainwinTextX=19 -mainwinTextY=26 -mainwinTextWidth=246 -mainwinInfobarX=111 -mainwinInfobarY=42 -mainwinNumber0X=30 -mainwinNumber0Y=56 -mainwinNumber1X=42 -mainwinNumber1Y=56 -mainwinNumber2X=54 -mainwinNumber2Y=56 -mainwinNumber3X=72 -mainwinNumber3Y=56 -mainwinNumber4X=84 -mainwinNumber4Y=56 -mainwinPlayStatusX=19 -mainwinPlayStatusY=58 -mainwinMenurowVisible=1 -mainwinOthertextIsStatus=1 -mainwinOthertextVisible=1 -mainwinTextVisible=1 -mainwinVisVisible=1 - diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/text.png Binary file skins/Default/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/titlebar.png Binary file skins/Default/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/viscolor.txt --- a/skins/Default/viscolor.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -0,0,0 // [background color 1] -0,0,0 // [background color 2] -9,13,15 -19,26,31 -29,39,47 -39,52,63 -49,65,79 -59,78,95 -69,91,111 -79,105,127 -88,118,143 -98,131,159 -108,144,175 -118,157,191 -128,170,207 -138,183,223 -148,196,239 -158,210,255 -240,240,240 // [osc 1] -220,220,220 // [osc 2] -170,170,170 // [osc 3] -100,100,100 // [osc 4] -20,20,20 // [osc 5] -200,200,220 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Default/volume.png Binary file skins/Default/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/Makefile --- a/skins/Ivory/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -include ../../buildsys.mk - -skindir = $(pkgdatadir)/Skins/Ivory - -install-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${skindir} && ${INSTALL} -m 644 $$i ${DESTDIR}${skindir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${skindir}/$$i ]; then \ - if rm -f ${DESTDIR}${skindir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/balance.png Binary file skins/Ivory/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/cbuttons.png Binary file skins/Ivory/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/eq_ex.png Binary file skins/Ivory/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/eqmain.png Binary file skins/Ivory/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/main.png Binary file skins/Ivory/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/monoster.png Binary file skins/Ivory/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/nums_ex.png Binary file skins/Ivory/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/playpaus.png Binary file skins/Ivory/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/pledit.png Binary file skins/Ivory/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/pledit.txt --- a/skins/Ivory/pledit.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -[Text] -Normal=#325e84 -Current=#111111 -NormalBG=#FFFFFF -SelectedBG=#999999 -Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/posbar.png Binary file skins/Ivory/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/shufrep.png Binary file skins/Ivory/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/skin.hints --- a/skins/Ivory/skin.hints Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,64 +0,0 @@ -[skin] -skinDescription=Ivory -mainwinOthertext=1 -mainwinVisX=335 -mainwinVisY=53 -mainwinTextX=93 -mainwinTextY=42 -mainwinTextWidth=319 -mainwinInfobarX=173 -mainwinInfobarY=64 -mainwinNumber0X=105 -mainwinNumber0Y=57 -mainwinNumber1X=117 -mainwinNumber1Y=57 -mainwinNumber2X=129 -mainwinNumber2Y=57 -mainwinNumber3X=147 -mainwinNumber3Y=57 -mainwinNumber4X=159 -mainwinNumber4Y=57 -mainwinPlayStatusX=93 -mainwinPlayStatusY=60 -mainwinOthertextIsStatus=1 -mainwinVolumeX=126 -mainwinVolumeY=22 -mainwinBalanceX=200 -mainwinBalanceY=22 -mainwinPositionX=130 -mainwinPositionY=80 -mainwinTextVisible=1 -mainwinOthertextVisible=1 -mainwinVisVisible=1 -mainwinMenurowVisible=0 -mainwinWidth=425 -mainwinHeight=100 -mainwinPreviousX=5 -mainwinPreviousY=48 -mainwinPlayX=33 -mainwinPlayY=48 -mainwinPauseX=33 -mainwinPauseY=70 -mainwinStopX=33 -mainwinStopY=26 -mainwinNextX=61 -mainwinNextY=48 -mainwinEjectX=390 -mainwinEjectY=77 -mainwinEQButtonX=249 -mainwinEQButtonY=22 -mainwinPLButtonX=272 -mainwinPLButtonY=22 -mainwinShuffleX=355 -mainwinShuffleY=20 -mainwinRepeatX=400 -mainwinRepeatY=20 -mainwinAboutX=999 -mainwinAboutY=999 -mainwinMinimizeX=393 -mainwinMinimizeY=3 -mainwinShadeX=403 -mainwinShadeY=3 -mainwinCloseX=413 -mainwinCloseY=3 - diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/text.png Binary file skins/Ivory/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/titlebar.png Binary file skins/Ivory/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/viscolor.txt --- a/skins/Ivory/viscolor.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -255,255,255 // [background color 1] -255,255,255 // [background color 2] -255,255,255 -240,242,244 -226,230,234 -212,218,223 -198,205,213 -184,193,203 -170,181,192 -156,168,182 -142,156,172 -128,144,161 -114,131,151 -100,119,140 -86,107,130 -72,94,120 -58,82,109 -44,70,99 -30,58,89 -129,129,129 // [osc 1] -150,150,150 // [osc 2] -170,170,170 // [osc 3] -200,200,200 // [osc 4] -240,240,240 // [osc 5] -125,125,124 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Ivory/volume.png Binary file skins/Ivory/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Makefile --- a/skins/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ -include ../buildsys.mk - -SUBDIRS = Default Classic TinyPlayer Osmosis Ivory - diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/Makefile --- a/skins/Osmosis/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -include ../../buildsys.mk - -skindir = $(pkgdatadir)/Skins/Osmosis - -install-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${skindir} && ${INSTALL} -m 644 $$i ${DESTDIR}${skindir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${skindir}/$$i ]; then \ - if rm -f ${DESTDIR}${skindir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/balance.png Binary file skins/Osmosis/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/cbuttons.png Binary file skins/Osmosis/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/eq_ex.png Binary file skins/Osmosis/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/eqmain.png Binary file skins/Osmosis/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/main.png Binary file skins/Osmosis/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/monoster.png Binary file skins/Osmosis/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/nums_ex.png Binary file skins/Osmosis/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/playpaus.png Binary file skins/Osmosis/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/pledit.png Binary file skins/Osmosis/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/pledit.txt --- a/skins/Osmosis/pledit.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -[Text] -Normal=#a6c1df -Current=#eeeeee -NormalBG=#000000 -SelectedBG=#666666 -Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/posbar.png Binary file skins/Osmosis/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/shufrep.png Binary file skins/Osmosis/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/skin.hints --- a/skins/Osmosis/skin.hints Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,64 +0,0 @@ -[skin] -skinDescription=Osmosis -mainwinOthertext=1 -mainwinVisX=335 -mainwinVisY=53 -mainwinTextX=93 -mainwinTextY=42 -mainwinTextWidth=319 -mainwinInfobarX=173 -mainwinInfobarY=64 -mainwinNumber0X=105 -mainwinNumber0Y=57 -mainwinNumber1X=117 -mainwinNumber1Y=57 -mainwinNumber2X=129 -mainwinNumber2Y=57 -mainwinNumber3X=147 -mainwinNumber3Y=57 -mainwinNumber4X=159 -mainwinNumber4Y=57 -mainwinPlayStatusX=93 -mainwinPlayStatusY=60 -mainwinOthertextIsStatus=1 -mainwinVolumeX=126 -mainwinVolumeY=22 -mainwinBalanceX=200 -mainwinBalanceY=22 -mainwinPositionX=130 -mainwinPositionY=80 -mainwinTextVisible=1 -mainwinOthertextVisible=1 -mainwinVisVisible=1 -mainwinMenurowVisible=0 -mainwinWidth=425 -mainwinHeight=100 -mainwinPreviousX=5 -mainwinPreviousY=48 -mainwinPlayX=33 -mainwinPlayY=48 -mainwinPauseX=33 -mainwinPauseY=70 -mainwinStopX=33 -mainwinStopY=26 -mainwinNextX=61 -mainwinNextY=48 -mainwinEjectX=390 -mainwinEjectY=77 -mainwinEQButtonX=249 -mainwinEQButtonY=22 -mainwinPLButtonX=272 -mainwinPLButtonY=22 -mainwinShuffleX=355 -mainwinShuffleY=20 -mainwinRepeatX=400 -mainwinRepeatY=20 -mainwinAboutX=999 -mainwinAboutY=999 -mainwinMinimizeX=393 -mainwinMinimizeY=3 -mainwinShadeX=403 -mainwinShadeY=3 -mainwinCloseX=413 -mainwinCloseY=3 - diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/text.png Binary file skins/Osmosis/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/titlebar.png Binary file skins/Osmosis/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/viscolor.txt --- a/skins/Osmosis/viscolor.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -0,0,0 // [background color 1] -0,0,0 // [background color 2] -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -126,126,126 // [osc 1] -126,126,126 // [osc 2] -126,126,126 // [osc 3] -126,126,126 // [osc 4] -126,126,126 // [osc 5] -130,130,131 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 skins/Osmosis/volume.png Binary file skins/Osmosis/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/Makefile --- a/skins/TinyPlayer/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,26 +0,0 @@ -include ../../buildsys.mk - -skindir = $(pkgdatadir)/Skins/TinyPlayer - -install-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${skindir} && ${INSTALL} -m 644 $$i ${DESTDIR}${skindir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="*.png *.txt *.hints"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${skindir}/$$i ]; then \ - if rm -f ${DESTDIR}${skindir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/balance.png Binary file skins/TinyPlayer/balance.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/cbuttons.png Binary file skins/TinyPlayer/cbuttons.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/eq_ex.png Binary file skins/TinyPlayer/eq_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/eqmain.png Binary file skins/TinyPlayer/eqmain.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/main.png Binary file skins/TinyPlayer/main.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/monoster.png Binary file skins/TinyPlayer/monoster.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/nums_ex.png Binary file skins/TinyPlayer/nums_ex.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/playpaus.png Binary file skins/TinyPlayer/playpaus.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/pledit.png Binary file skins/TinyPlayer/pledit.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/pledit.txt --- a/skins/TinyPlayer/pledit.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -[Text] -Normal=#a6c1df -Current=#eeeeee -NormalBG=#000000 -SelectedBG=#666666 -Font=Helvetica diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/posbar.png Binary file skins/TinyPlayer/posbar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/shufrep.png Binary file skins/TinyPlayer/shufrep.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/skin.hints --- a/skins/TinyPlayer/skin.hints Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,57 +0,0 @@ -[skin] -skinDescription=TinyPlayer skin -mainwinOthertext=1 -mainwinVisX=189 -mainwinVisY=36 -mainwinTextX=1 -mainwinTextY=80 -mainwinTextWidth=273 -mainwinInfobarX=0 -mainwinInfobarY=0 -mainwinNumber0X=30 -mainwinNumber0Y=19 -mainwinNumber1X=42 -mainwinNumber1Y=19 -mainwinNumber2X=54 -mainwinNumber2Y=19 -mainwinNumber3X=72 -mainwinNumber3Y=19 -mainwinNumber4X=84 -mainwinNumber4Y=19 -mainwinPlayStatusX=11 -mainwinPlayStatusY=22 -mainwinOthertextIsStatus=0 -mainwinVolumeX=106 -mainwinVolumeY=22 -mainwinBalanceX=180 -mainwinBalanceY=22 -mainwinPositionX=16 -mainwinPositionY=36 -mainwinTextVisible=1 -mainwinOthertextVisible=0 -mainwinVisVisible=0 -mainwinMenurowVisible=0 -mainwinWidth=275 -mainwinHeight=87 -mainwinPreviousX=16 -mainwinPreviousY=53 -mainwinPlayX=39 -mainwinPlayY=53 -mainwinPauseX=62 -mainwinPauseY=53 -mainwinStopX=85 -mainwinStopY=53 -mainwinNextX=108 -mainwinNextY=53 -mainwinEjectX=136 -mainwinEjectY=53 -mainwinEQButtonX=219 -mainwinEQButtonY=22 -mainwinPLButtonX=242 -mainwinPLButtonY=22 -mainwinShuffleX=164 -mainwinShuffleY=56 -mainwinRepeatX=210 -mainwinRepeatY=56 -mainwinAboutX=247 -mainwinAboutY=53 diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/text.png Binary file skins/TinyPlayer/text.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/titlebar.png Binary file skins/TinyPlayer/titlebar.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/viscolor.txt --- a/skins/TinyPlayer/viscolor.txt Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -0,0,0 // [background color 1] -0,0,0 // [background color 2] -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -128,170,206 -126,126,126 // [osc 1] -126,126,126 // [osc 2] -126,126,126 // [osc 3] -126,126,126 // [osc 4] -126,126,126 // [osc 5] -130,130,131 // [peak color] diff -r 978fbda4855f -r 4ee9f4c9f905 skins/TinyPlayer/volume.png Binary file skins/TinyPlayer/volume.png has changed diff -r 978fbda4855f -r 4ee9f4c9f905 src/Makefile --- a/src/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/src/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,14 +1,9 @@ -.SILENT: +SUBDIRS = libguess audacious libid3tag include ../extra.mk -SUBDIRS = libguess - ifdef USE_DBUS -SUBDIRS += libaudclient audtool +SUBDIRS := libaudclient audtool $(SUBDIRS) endif -SUBDIRS += audacious libid3tag - include ../buildsys.mk - diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/Makefile --- a/src/audacious/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/src/audacious/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,172 +1,196 @@ include ../../extra.mk -SUBDIRS = $(INTL_OBJECTIVE) glade images ui +SUBDIRS = ${INTL_OBJECTIVE} PROG = audacious - -LDFLAGS += $(AUDLDFLAGS) - -INCLUDES = \ - auddrct.h \ - configdb.h \ - custom_uri.h \ - dbus.h \ - discovery.h \ - dbus-service.h \ - eventqueue.h \ - flow.h \ - formatter.h \ - rcfile.h \ - i18n.h \ - input.h \ - hook.h \ - main.h \ - mime.h \ - output.h \ - playback.h \ - playlist.h \ - playlist_container.h \ - plugin.h \ - strings.h \ - tuple.h \ - tuple_formatter.h \ - tuple_compiler.h \ - ui_fileinfopopup.h \ - ui_lastfm.h\ - ui_plugin_menu.h \ - ui_preferences.h \ - util.h \ - vfs.h \ - vfs_buffer.h \ - vfs_buffered_file.h \ - xconvert.h - -SRCS = \ - auddrct.c \ - build_stamp.c \ - configdb.c \ - custom_uri.c \ - discovery.c \ - dnd.c \ - dock.c \ - effect.c \ - eventqueue.c \ - fft.c \ - flow.c \ - formatter.c \ - general.c \ - glade.c \ - hints.c \ - hook.c \ - iir.c \ - iir_cfs.c \ - iir_fpu.c \ - input.c \ - logger.c \ - main.c \ - memorypool.c \ - mime.c \ - output.c \ - pixbuf_effects.c \ - playback.c \ - playback_evlisteners.c \ - playlist.c \ - playlist_container.c \ - playlist_evlisteners.c \ - pluginenum.c \ - rcfile.c \ - signals.c \ - strings.c \ - tuple.c \ - tuple_formatter.c \ - tuple_compiler.c \ - skin.c \ - ui_about.c \ - ui_albumart.c \ - ui_credits.c \ - ui_equalizer.c \ - ui_fileinfo.c \ - ui_fileinfopopup.c \ - ui_fileopener.c \ - ui_jumptotrack.c \ - ui_lastfm.c\ - ui_main.c \ - ui_main_evlisteners.c \ - ui_manager.c \ - ui_playlist.c \ - ui_playlist_manager.c \ - ui_preferences.c \ - ui_skinned_cursor.c \ - ui_skinned_window.c \ - ui_skinned_button.c \ - ui_skinned_textbox.c \ - ui_skinned_number.c \ - ui_skinned_horizontal_slider.c \ - ui_vis.c \ - ui_svis.c \ - ui_skinned_menurow.c \ - ui_skinned_playstatus.c \ - ui_skinned_monostereo.c \ - ui_skinned_equalizer_slider.c \ - ui_skinned_equalizer_graph.c \ - ui_skinned_playlist_slider.c \ - ui_skinned_playlist.c \ - ui_skinselector.c \ - ui_urlopener.c \ - util.c \ - vfs.c \ - vfs_buffer.c \ - vfs_buffered_file.c \ - vfs_common.c \ - visualization.c \ - volumecontrol.c \ - sync-menu.c \ - xconvert.c +SRCS = auddrct.c \ + build_stamp.c \ + configdb.c \ + custom_uri.c \ + discovery.c \ + dnd.c \ + dock.c \ + effect.c \ + eventqueue.c \ + fft.c \ + flow.c \ + formatter.c \ + general.c \ + glade.c \ + hints.c \ + hook.c \ + iir.c \ + iir_cfs.c \ + iir_fpu.c \ + input.c \ + logger.c \ + main.c \ + memorypool.c \ + mime.c \ + output.c \ + pixbuf_effects.c \ + playback.c \ + playback_evlisteners.c \ + playlist.c \ + playlist_container.c \ + playlist_evlisteners.c \ + pluginenum.c \ + rcfile.c \ + signals.c \ + strings.c \ + tuple.c \ + tuple_formatter.c \ + tuple_compiler.c \ + skin.c \ + ui_about.c \ + ui_albumart.c \ + ui_credits.c \ + ui_equalizer.c \ + ui_fileinfo.c \ + ui_fileinfopopup.c \ + ui_fileopener.c \ + ui_jumptotrack.c \ + ui_lastfm.c \ + ui_main.c \ + ui_main_evlisteners.c \ + ui_manager.c \ + ui_playlist.c \ + ui_playlist_manager.c \ + ui_preferences.c \ + ui_skinned_cursor.c \ + ui_skinned_window.c \ + ui_skinned_button.c \ + ui_skinned_textbox.c \ + ui_skinned_number.c \ + ui_skinned_horizontal_slider.c \ + ui_vis.c \ + ui_svis.c \ + ui_skinned_menurow.c \ + ui_skinned_playstatus.c \ + ui_skinned_monostereo.c \ + ui_skinned_equalizer_slider.c \ + ui_skinned_equalizer_graph.c \ + ui_skinned_playlist_slider.c \ + ui_skinned_playlist.c \ + ui_skinselector.c \ + ui_urlopener.c \ + util.c \ + vfs.c \ + vfs_buffer.c \ + vfs_buffered_file.c \ + vfs_common.c \ + visualization.c \ + volumecontrol.c \ + sync-menu.c \ + xconvert.c ifdef USE_DBUS SRCS += dbus.c endif -LIBDEP = ../libguess/libguess.a +INCLUDES = auddrct.h \ + configdb.h \ + custom_uri.h \ + dbus.h \ + discovery.h \ + dbus-service.h \ + eventqueue.h \ + flow.h \ + formatter.h \ + rcfile.h \ + i18n.h \ + input.h \ + hook.h \ + main.h \ + mime.h \ + output.h \ + playback.h \ + playlist.h \ + playlist_container.h \ + plugin.h \ + strings.h \ + tuple.h \ + tuple_formatter.h \ + tuple_compiler.h \ + ui_fileinfopopup.h \ + ui_lastfm.h \ + ui_plugin_menu.h \ + ui_preferences.h \ + util.h \ + vfs.h \ + vfs_buffer.h \ + vfs_buffered_file.h \ + xconvert.h + +DATA = glade/fileinfo.glade \ + glade/prefswin.glade \ + images/about-logo.png \ + images/appearance.png \ + images/audacious_eq.xpm \ + images/audacious_player.xpm \ + images/audacious_playlist.xpm \ + images/audio.png \ + images/connectivity.png \ + images/eq.png \ + images/info.png \ + images/menu_invert_playlist.png \ + images/menu_queue_toggle.png \ + images/menu_randomize_playlist.png \ + images/menu_remove_dups.png \ + images/menu_remove_unavail.png \ + images/menu_select_all.png \ + images/menu_select_invert.png \ + images/menu_select_none.png \ + images/menu_sort_artist.png \ + images/menu_sort_filename.png \ + images/menu_sort_pathfile.png \ + images/menu_sort_title.png \ + images/mouse.png \ + images/pl.png \ + images/play.png \ + images/playlist.png \ + images/plugins.png \ + ui/equalizer.ui \ + ui/mainwin.ui \ + ui/playlist.ui \ + ui/carbon-menubar.ui include ../../buildsys.mk -LIBADD += $(LDADD) +LDFLAGS += ${EXPORTDYN} +LIBS += ${LDADD} -ifdef USE_DBUS +ifdef USE_DBUS CPPFLAGS += -I../libaudclient DBUS_BINDINGS = dbus-server-bindings.h dbus-client-bindings.h LIBS += -L../libaudclient -laudclient endif -LDFLAGS += ${EXPORTDYN} - -depend-hook: $(DBUS_BINDINGS) +depend-hook: ${DBUS_BINDINGS} -CPPFLAGS += -DHAVE_CONFIG_H \ - $(MOWGLI_CFLAGS) \ - $(GTK_CFLAGS) \ - $(LIBGLADE_CFLAGS) \ - $(BEEP_DEFINES) \ - $(ARCH_DEFINES) \ - $(DBUS_CFLAGS) \ - $(samplerate_CFLAGS) \ - $(REGEX_CFLAGS) \ - $(LIBMCS_CFLAGS) \ - -D_AUDACIOUS_CORE \ - -I.. -I../.. \ - -I./intl +CPPFLAGS += -DHAVE_CONFIG_H \ + ${MOWGLI_CFLAGS} \ + ${GTK_CFLAGS} \ + ${LIBGLADE_CFLAGS} \ + ${BEEP_DEFINES} \ + ${ARCH_DEFINES} \ + ${DBUS_CFLAGS} \ + ${samplerate_CFLAGS} \ + ${REGEX_CFLAGS} \ + ${LIBMCS_CFLAGS} \ + -D_AUDACIOUS_CORE \ + -I.. -I../.. \ + -I./intl -LIBS += \ - $(LIBINTL) \ - $(samplerate_LIBS) \ - ../libguess/libguess.a \ - $(GTK_LIBS) \ - $(DBUS_LIBS) \ - $(MOWGLI_LIBS) \ - $(LIBMCS_LIBS) \ - $(LIBGLADE_LIBS) \ - $(REGEX_LIBS) +LIBS += ${LIBINTL} \ + ${samplerate_LIBS} \ + ../libguess/libguess.a \ + ${GTK_LIBS} \ + ${DBUS_LIBS} \ + ${MOWGLI_LIBS} \ + ${LIBMCS_LIBS} \ + ${LIBGLADE_LIBS} \ + ${REGEX_LIBS} build_stamp.c: if [ -d ../../.hg ]; then \ @@ -179,23 +203,21 @@ rm -f build_stamp.c; \ fi -DBUS_BINDINGS_SOURCES = \ - objects.xml \ - mpris_root.xml \ - mpris_tracklist.xml \ - mpris_player.xml +DBUS_BINDINGS_SOURCES = objects.xml \ + mpris_root.xml \ + mpris_tracklist.xml \ + mpris_player.xml desktop_DATA = audacious.desktop -desktopdir = $(datadir)/applications +desktopdir = ${datadir}/applicationu -dbus-server-bindings.h: $(DBUS_BINDINGS_SOURCES) - $(DBUS_BINDING_TOOL) --mode=glib-server --prefix=audacious_rc objects.xml > $@ - $(DBUS_BINDING_TOOL) --mode=glib-server --prefix=mpris_root mpris_root.xml >> $@ - $(DBUS_BINDING_TOOL) --mode=glib-server --prefix=mpris_tracklist mpris_tracklist.xml >> $@ - $(DBUS_BINDING_TOOL) --mode=glib-server --prefix=mpris_player mpris_player.xml >> $@ +dbus-server-bindings.h: ${DBUS_BINDINGS_SOURCES} + ${DBUS_BINDING_TOOL} --mode=glib-server --prefix=audacious_rc objects.xml > $@ + ${DBUS_BINDING_TOOL} --mode=glib-server --prefix=mpris_root mpris_root.xml >> $@ + ${DBUS_BINDING_TOOL} --mode=glib-server --prefix=mpris_tracklist mpris_tracklist.xml >> $@ + ${DBUS_BINDING_TOOL} --mode=glib-server --prefix=mpris_player mpris_player.xml >> $@ -dbus-client-bindings.h: $(DBUS_BINDINGS_SOURCES) - $(DBUS_BINDING_TOOL) --mode=glib-client --prefix=audacious_rc objects.xml > $@ +dbus-client-bindings.h: ${DBUS_BINDINGS_SOURCES} + ${DBUS_BINDING_TOOL} --mode=glib-client --prefix=audacious_rc objects.xml > $@ -OBJECTIVE_DATA = audacious.desktop:$(datadir)/applications - +OBJECTIVE_DATA = audacious.desktop:${datadir}/applications diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/glade/Makefile --- a/src/audacious/glade/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -include ../../../buildsys.mk - -gladexmldir = $(pkgdatadir)/glade - -install-extra: - y="fileinfo.glade prefswin.glade"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${gladexmldir} && ${INSTALL} -m 644 $$i ${DESTDIR}${gladexmldir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="fileinfo.glade prefswin.glade"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${gladexmldir}/$$i ]; then \ - if rm -f ${DESTDIR}${gladexmldir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done; - diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/images/Makefile --- a/src/audacious/images/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -include ../../../buildsys.mk - -imagesdir = $(pkgdatadir)/images - -install-extra: - y="*.png *.xpm"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${imagesdir} && ${INSTALL} -m 644 $$i ${DESTDIR}${imagesdir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="*.png *.xpm"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${imagesdir}/$$i ]; then \ - if rm -f ${DESTDIR}${imagesdir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done; - diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/intl/Makefile --- a/src/audacious/intl/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/src/audacious/intl/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,42 +1,40 @@ -SRCS = \ - bindtextdom.c \ - dcgettext.c \ - dgettext.c \ - gettext.c \ - finddomain.c \ - loadmsgcat.c \ - localealias.c \ - textdomain.c \ - l10nflist.c \ - explodename.c \ - dcigettext.c \ - dcngettext.c \ - dngettext.c \ - ngettext.c \ - plural.c \ - plural-exp.c \ - localcharset.c \ - relocatable.c \ - localename.c \ - log.c \ - osdep.c \ - os2compat.c \ - intl-compat.c - STATIC_LIB_NOINST = libintl.a +SRCS = bindtextdom.c \ + dcgettext.c \ + dgettext.c \ + gettext.c \ + finddomain.c \ + loadmsgcat.c \ + localealias.c \ + textdomain.c \ + l10nflist.c \ + explodename.c \ + dcigettext.c \ + dcngettext.c \ + dngettext.c \ + ngettext.c \ + plural.c \ + plural-exp.c \ + localcharset.c \ + relocatable.c \ + localename.c \ + log.c \ + osdep.c \ + os2compat.c \ + intl-compat.c include ../../../buildsys.mk include ../../../extra.mk -localedir = $(datadir)/locale -gettextsrcdir = $(datadir)/gettext/intl -aliaspath = $(localedir) +localedir = ${datadir)}locale +gettextsrcdir = ${datadir}/gettext/intl +aliaspath = ${localedir} -DEFS += -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \ - -DLIBDIR=\"$(libdir)\" -DIN_LIBINTL \ - -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"$(libdir)\" -DINSTALLPREFIX=\"$(libdir)\" -DNO_XMALLOC \ +DEFS += -DLOCALEDIR=\"${localedir}\" -DLOCALE_ALIAS_PATH=\"${aliaspath}\" \ + -DLIBDIR=\"${libdir}\" -DIN_LIBINTL \ + -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"${libdir}\" -DINSTALLPREFIX=\"${libdir}\" -DNO_XMALLOC \ -Dset_relocation_prefix=libintl_set_relocation_prefix \ -Drelocate=libintl_relocate \ -DDEPENDS_ON_LIBICONV=1 -CPPFLAGS += -I../../.. -I../.. -I. $(DEFS) +CPPFLAGS += -I../../.. -I../.. -I. ${DEFS} diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/playlist.c --- a/src/audacious/playlist.c Thu Sep 20 10:27:19 2007 -0500 +++ b/src/audacious/playlist.c Thu Sep 20 10:27:48 2007 -0500 @@ -688,11 +688,7 @@ gchar *filename_entry; if ( subtunes_num > 0 ) { - GString *tmpstr = g_string_new(filename); - g_string_append_printf(tmpstr, "?%i", i); - filename_entry = tmpstr->str; - g_string_free(tmpstr, FALSE); - + filename_entry = g_strdup_printf("%s?%d", filename, i); /* we're dealing with subtune, let's ask again tuple information to plugin, by passing the ?subsong suffix; this way we may get specific subtune information in the tuple, if available */ diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/ui/Makefile --- a/src/audacious/ui/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -include ../../../buildsys.mk - -gladexmldir = $(pkgdatadir)/ui - -install-extra: - y="*.ui"; \ - for i in $$y; do \ - ${INSTALL_STATUS}; \ - if ${MKDIR_P} ${DESTDIR}${gladexmldir} && ${INSTALL} -m 644 $$i ${DESTDIR}${gladexmldir}/$$i; then \ - ${INSTALL_OK}; \ - else \ - ${INSTALL_FAILED}; \ - fi; \ - done - -uninstall-extra: - y="*.ui"; \ - for i in $$y; do \ - if [ -f ${DESTDIR}${gladexmldir}/$$i ]; then \ - if rm -f ${DESTDIR}${gladexmldir}/$$i; then \ - ${DELETE_OK}; \ - else \ - ${DELETE_FAILED}; \ - fi \ - fi; \ - done; - diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/ui_main.c --- a/src/audacious/ui_main.c Thu Sep 20 10:27:19 2007 -0500 +++ b/src/audacious/ui_main.c Thu Sep 20 10:27:48 2007 -0500 @@ -135,11 +135,10 @@ static GtkWidget *mainwin_shuffle, *mainwin_repeat; GtkWidget *mainwin_eq, *mainwin_pl; -GtkWidget *mainwin_info; +GtkWidget *mainwin_info, *mainwin_othertext; GtkWidget *mainwin_stime_min, *mainwin_stime_sec; -static GtkWidget *mainwin_rate_text, *mainwin_freq_text, - *mainwin_othertext; +static GtkWidget *mainwin_rate_text, *mainwin_freq_text; GtkWidget *mainwin_playstatus; @@ -2438,6 +2437,7 @@ g_signal_connect(mainwin_info, "right-clicked", mainwin_info_right_clicked_cb, NULL); mainwin_othertext = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 112, 43, 153, 1, SKIN_TEXT); + ui_skinned_textbox_set_xfont(mainwin_othertext, cfg.mainwin_use_xfont, cfg.mainwin_font); mainwin_rate_text = ui_skinned_textbox_new(SKINNED_WINDOW(mainwin)->fixed, 111, 43, 15, 0, SKIN_TEXT); diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/ui_main.h --- a/src/audacious/ui_main.h Thu Sep 20 10:27:19 2007 -0500 +++ b/src/audacious/ui_main.h Thu Sep 20 10:27:48 2007 -0500 @@ -100,7 +100,7 @@ extern GtkWidget *mainwin_jtf; extern GtkWidget *mainwin_eq, *mainwin_pl; -extern GtkWidget *mainwin_info; +extern GtkWidget *mainwin_info, *mainwin_othertext; extern GtkWidget *mainwin_stime_min, *mainwin_stime_sec; diff -r 978fbda4855f -r 4ee9f4c9f905 src/audacious/ui_preferences.c --- a/src/audacious/ui_preferences.c Thu Sep 20 10:27:19 2007 -0500 +++ b/src/audacious/ui_preferences.c Thu Sep 20 10:27:48 2007 -0500 @@ -585,6 +585,7 @@ cfg.mainwin_font = g_strdup(gtk_font_button_get_font_name(button)); ui_skinned_textbox_set_xfont(mainwin_info, cfg.mainwin_use_xfont, cfg.mainwin_font); + ui_skinned_textbox_set_xfont(mainwin_othertext, cfg.mainwin_use_xfont, cfg.mainwin_font); } static void @@ -602,6 +603,7 @@ gboolean useit = gtk_toggle_button_get_active(button); cfg.mainwin_use_xfont = useit != FALSE ? FALSE : TRUE; ui_skinned_textbox_set_xfont(mainwin_info, cfg.mainwin_use_xfont, cfg.mainwin_font); + ui_skinned_textbox_set_xfont(mainwin_othertext, cfg.mainwin_use_xfont, cfg.mainwin_font); playlistwin_set_sinfo_font(cfg.playlist_font); if (cfg.playlist_shaded) { diff -r 978fbda4855f -r 4ee9f4c9f905 src/audtool/Makefile --- a/src/audtool/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/src/audtool/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,33 +1,24 @@ -include ../../extra.mk - PROG = audtool - -SRCS = \ - audtool_main.c \ - audtool_handlers_general.c \ - audtool_handlers_playback.c \ - audtool_handlers_playlist.c \ - audtool_handlers_playqueue.c \ - audtool_handlers_vitals.c \ - audtool_report.c +SRCS = audtool_main.c \ + audtool_handlers_general.c \ + audtool_handlers_playback.c \ + audtool_handlers_playlist.c \ + audtool_handlers_playqueue.c \ + audtool_handlers_vitals.c \ + audtool_report.c include ../../buildsys.mk - -LIBS += \ - $(DBUS_LIBS) \ - -L../libaudclient -laudclient \ - $(GTK_LIBS) \ - $(MOWGLI_LIBS) \ - $(LIBGLADE_LIBS) +include ../../extra.mk -CFLAGS += \ - $(GTK_CFLAGS) \ - $(DBUS_CFLAGS) \ - $(LIBGLADE_CFLAGS) \ - $(BEEP_DEFINES) \ - $(ARCH_DEFINES) \ - $(MOWGLI_CFLAGS) \ - -I.. -I../.. \ - -I../intl - -CPPFLAGS += $(CFLAGS) +CPPFLAGS += ${CFLAGS} -I.. -I../.. -I../intl +CFLAGS += ${GTK_CFLAGS} \ + ${DBUS_CFLAGS} \ + ${LIBGLADE_CFLAGS} \ + ${BEEP_DEFINES} \ + ${ARCH_DEFINES} \ + ${MOWGLI_CFLAGS} +LIBS += ${DBUS_LIBS} \ + -L../libaudclient -laudclient \ + ${GTK_LIBS} \ + ${MOWGLI_LIBS} \ + ${LIBGLADE_LIBS} diff -r 978fbda4855f -r 4ee9f4c9f905 src/libaudclient/Makefile --- a/src/libaudclient/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/src/libaudclient/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,5 +1,3 @@ -include ../../extra.mk - LIB = ${LIB_PREFIX}audclient${LIB_SUFFIX} LIB_MAJOR = 1 LIB_MINOR = 0 @@ -9,25 +7,20 @@ INCLUDES = audctrl.h include ../../buildsys.mk +include ../../extra.mk depend-hook: cd ../audacious; make dbus-client-bindings.h -LIBS += \ - $(GLIB_LIBS) \ - $(DBUS_LIBS) \ - $(MOWGLI_LIBS) \ - $(GCONF_LIBS) \ - $(LIBMCS_LIBS) - -CFLAGS += $(LIB_CFLAGS) \ - $(MOWGLI_CFLAGS) \ - $(GTK_CFLAGS) \ - $(GCONF_CFLAGS) \ - $(DBUS_CFLAGS) \ - $(LIBMCS_CFLAGS) \ - -D_AUDACIOUS_CORE \ - -I.. -I../.. \ - -I../intl - -CPPFLAGS = ${CFLAGS} +CPPFLAGS = ${LIB_CPPFLAGS} ${CFLAGS} -D_AUDACIOUS_CORE -I.. -I../.. -I../intl +CFLAGS += ${LIB_CFLAGS} \ + ${MOWGLI_CFLAGS} \ + ${GTK_CFLAGS} \ + ${GCONF_CFLAGS} \ + ${DBUS_CFLAGS} \ + ${LIBMCS_CFLAGS} +LIBS += ${GLIB_LIBS} \ + ${DBUS_LIBS} \ + ${MOWGLI_LIBS} \ + ${GCONF_LIBS} \ + ${LIBMCS_LIBS} diff -r 978fbda4855f -r 4ee9f4c9f905 src/libguess/Makefile --- a/src/libguess/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/src/libguess/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,12 +1,10 @@ STATIC_LIB_NOINST = libguess.a - -SRCS = \ - guess.c \ - arabic_impl.c \ - cjk_impl.c \ - greek_impl.c \ - hebrew_impl.c \ - russian_impl.c \ - turkish_impl.c +SRCS = guess.c \ + arabic_impl.c \ + cjk_impl.c \ + greek_impl.c \ + hebrew_impl.c \ + russian_impl.c \ + turkish_impl.c include ../../buildsys.mk diff -r 978fbda4855f -r 4ee9f4c9f905 src/libid3tag/Makefile --- a/src/libid3tag/Makefile Thu Sep 20 10:27:19 2007 -0500 +++ b/src/libid3tag/Makefile Thu Sep 20 10:27:48 2007 -0500 @@ -1,35 +1,32 @@ -include ../../extra.mk - LIB = ${LIB_PREFIX}audid3tag${LIB_SUFFIX} LIB_MAJOR = 1 LIB_MINOR = 0 -LIBDIR = $(plugindir) +LIBDIR = ${plugindir} INCLUDES = id3tag.h -SRCS = \ - compat.c \ - debug.c \ - file.c \ - frametype.c \ - latin1.c \ - render.c \ - ucs4.c \ - utf8.c \ - version.c \ - crc.c \ - field.c \ - frame.c \ - genre.c \ - parse.c \ - tag.c \ - utf16.c \ - util.c +SRCS = compat.c \ + debug.c \ + file.c \ + frametype.c \ + latin1.c \ + render.c \ + ucs4.c \ + utf8.c \ + version.c \ + crc.c \ + field.c \ + frame.c \ + genre.c \ + parse.c \ + tag.c \ + utf16.c \ + util.c include ../../buildsys.mk +include ../../extra.mk -CPPFLAGS += -I.. $(GLIB_CFLAGS) -CFLAGS += $(LIB_CFLAGS) - -LIBS += $(GLIB_LIBS) +CPPFLAGS += ${LIB_CPPFLAGS} -I.. ${GLIB_CFLAGS} +CFLAGS += ${LIB_CFLAGS} +LIBS += ${GLIB_LIBS}