ports/119067: [PATCH] multimedia/audacious: update to 1.4.4

Andriy Gapon avg at icyb.net.ua
Thu Dec 27 17:30:05 UTC 2007


>Number:         119067
>Category:       ports
>Synopsis:       [PATCH] multimedia/audacious: update to 1.4.4
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Dec 27 17:30:03 UTC 2007
>Closed-Date:
>Last-Modified:
>Originator:     Andriy Gapon
>Release:        FreeBSD 6.2-RELEASE-p6 amd64
>Organization:
>Environment:
System: FreeBSD 6.2-RELEASE-p6 amd64
>Description:
- Update to 1.4.4

Added file(s):
- files/patch-Makefile
- files/patch-audacious-Makefile
- files/patch-configure

Some comments on the changes:
1. Makefile is slightly changed to get less warnings from portlint
2. CHARSET option didn't work before because of the wrong variable name in check
3. esoteric CPPFLAGS has to be set, so that port building is not confused
   by .h files installed by the previous incompatible version; alternative would
   be to explain special upgrade procedure in UPDATING: first deinstall, then
   build.

Please also note that multimedia/audacious-plugins has to be updated together
with this port. I am making a separate PR submission for that.

This PR also supercedes audacious-specific part of the following PR:
http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/118377

Port maintainer (oliver at FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- audacious-1.4.4.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/multimedia/audacious.orig/Makefile /usr/ports/multimedia/audacious/Makefile
--- /usr/ports/multimedia/audacious.orig/Makefile	Thu Dec 27 15:31:38 2007
+++ /usr/ports/multimedia/audacious/Makefile	Thu Dec 27 17:24:55 2007
@@ -6,17 +6,21 @@
 #
 
 PORTNAME=	audacious
-PORTVERSION=	1.3.2
-PORTREVISION=	1
+PORTVERSION=	1.4.4
+PORTREVISION=	#0
 CATEGORIES=	multimedia audio
 MASTER_SITES=	${MASTER_SITE_LOCAL} \
-		http://static.audacious-media-player.org/release/
+		http://distfiles.atheme.org/
 MASTER_SITE_SUBDIR=oliver
 EXTRACT_SUFX=.tgz
 
 MAINTAINER=	oliver at FreeBSD.org
 COMMENT=	A media player based on BMP and XMMS
 
+LIB_DEPENDS=	mcs.1:${PORTSDIR}/devel/libmcs
+LIB_DEPENDS+=	mowgli.1:${PORTSDIR}/devel/libmowgli
+LIB_DEPENDS+=	execinfo.1:${PORTSDIR}/devel/libexecinfo
+
 GNU_CONFIGURE=	yes
 USE_GETOPT_LONG=yes
 USE_GMAKE=	yes
@@ -24,12 +28,11 @@
 USE_LDCONFIG=	yes
 USE_XLIB=	yes
 CONFIGURE_ARGS=	--with-libintl-prefix=${LOCALBASE}
+CONFIGURE_ENV=	CPPFLAGS="-nostdinc -I/usr/include -I. -I.."
 
 MAN1=		audacious.1 audtool.1
 
-LIB_DEPENDS=	mcs.1:${PORTSDIR}/devel/libmcs
-
-PORTDOCS=	README AUTHORS ChangeLog NEWS
+PORTDOCS=	README AUTHORS NEWS
 
 OPTIONS=	CHARSET	"Build with automatic charset detection" off \
 		GNOME	"Build with gconf support" off \
@@ -38,7 +41,7 @@
 
 .include <bsd.port.pre.mk>
 
-.if defined(WITH_CHARSET_DETECTION)
+.if defined(WITH_CHARSET)
 CONFIGURE_ARGS+=--enable-chardet
 .endif
 
@@ -84,6 +87,5 @@
 	@${ECHO_MSG} "ALL PRESETS will be stored in the gconf database."
 	@${ECHO_MSG} ""
 .endif
-	
 
 .include <bsd.port.post.mk>
diff -ruN --exclude=CVS /usr/ports/multimedia/audacious.orig/distinfo /usr/ports/multimedia/audacious/distinfo
--- /usr/ports/multimedia/audacious.orig/distinfo	Thu Dec 27 15:31:38 2007
+++ /usr/ports/multimedia/audacious/distinfo	Thu Dec 27 15:38:01 2007
@@ -1,3 +1,3 @@
-MD5 (audacious-1.3.2.tgz) = b784a30604a2f9d84e9da310069f43f9
-SHA256 (audacious-1.3.2.tgz) = ccc8a190d6e9b5f603bae55fc642ddb26fab285b5e76704592b7e95d82feeeef
-SIZE (audacious-1.3.2.tgz) = 1730554
+MD5 (audacious-1.4.4.tgz) = 8dbb98afab832b49485d87c5a8d95da3
+SHA256 (audacious-1.4.4.tgz) = 3af5da0a5b526d609ea72eb7111dab1239d345aa05b5a4f12ceaada308b1b4d2
+SIZE (audacious-1.4.4.tgz) = 1839420
diff -ruN --exclude=CVS /usr/ports/multimedia/audacious.orig/files/patch-Makefile /usr/ports/multimedia/audacious/files/patch-Makefile
--- /usr/ports/multimedia/audacious.orig/files/patch-Makefile	Thu Jan  1 03:00:00 1970
+++ /usr/ports/multimedia/audacious/files/patch-Makefile	Thu Dec 27 17:09:58 2007
@@ -0,0 +1,22 @@
+--- Makefile.orig	Thu Dec 27 17:08:32 2007
++++ Makefile	Thu Dec 27 17:09:15 2007
+@@ -221,7 +221,7 @@
+ install-extra:
+ 	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 \
++		if ${MKDIR_P} ${DESTDIR}${libdir}data/pkgconfig && ${INSTALL} -m 644 $$i ${DESTDIR}${libdir}data/pkgconfig/$$i; then \
+ 			${INSTALL_OK}; \
+ 		else \
+ 			${INSTALL_FAILED}; \
+@@ -241,8 +241,8 @@
+ 
+ uninstall-extra:
+ 	for i in audacious.pc audclient.pc; do \
+-		if [ -f ${DESTDIR}${libdir}/pkgconfig/$$i ]; then \
+-			if rm -f ${DESTDIR}${libdir}/pkgconfig/$$i; then \
++		if [ -f ${DESTDIR}${libdir}data/pkgconfig/$$i ]; then \
++			if rm -f ${DESTDIR}${libdir}data/pkgconfig/$$i; then \
+ 				${DELETE_OK}; \
+ 			else \
+ 				${DELETE_FAILED}; \
diff -ruN --exclude=CVS /usr/ports/multimedia/audacious.orig/files/patch-audacious-Makefile /usr/ports/multimedia/audacious/files/patch-audacious-Makefile
--- /usr/ports/multimedia/audacious.orig/files/patch-audacious-Makefile	Thu Jan  1 03:00:00 1970
+++ /usr/ports/multimedia/audacious/files/patch-audacious-Makefile	Thu Dec 27 16:30:06 2007
@@ -0,0 +1,12 @@
+--- src/audacious/Makefile.orig	Thu Dec 27 16:28:35 2007
++++ src/audacious/Makefile	Thu Dec 27 16:28:54 2007
+@@ -188,7 +188,8 @@
+ 	${MOWGLI_LIBS}		\
+ 	${LIBMCS_LIBS}		\
+ 	${LIBGLADE_LIBS}	\
+-	${REGEX_LIBS}
++	${REGEX_LIBS}		\
++	-lexecinfo
+ 
+ LDFLAGS += ${PROG_IMPLIB_LDFLAGS}
+ 
diff -ruN --exclude=CVS /usr/ports/multimedia/audacious.orig/files/patch-configure /usr/ports/multimedia/audacious/files/patch-configure
--- /usr/ports/multimedia/audacious.orig/files/patch-configure	Thu Jan  1 03:00:00 1970
+++ /usr/ports/multimedia/audacious/files/patch-configure	Thu Dec 27 16:42:39 2007
@@ -0,0 +1,13 @@
+--- configure.orig	Thu Dec 27 16:41:30 2007
++++ configure	Thu Dec 27 16:42:07 2007
+@@ -12553,10 +12553,6 @@
+ 
+ 
+ 
+-if test "$prefix" != "NONE" || test "$exec_prefix" != "NONE" ; then
+-	test x"`$CC -dM -E - </dev/null | grep __ELF__`" != x"" && RPATH="-Wl,-rpath $libdir"
+-fi
+-
+ if test "$prefix" = "NONE"; then
+         prefix="${ac_default_prefix}"
+ fi
diff -ruN --exclude=CVS /usr/ports/multimedia/audacious.orig/pkg-message /usr/ports/multimedia/audacious/pkg-message
--- /usr/ports/multimedia/audacious.orig/pkg-message	Thu Dec 27 15:31:38 2007
+++ /usr/ports/multimedia/audacious/pkg-message	Thu Dec 27 16:28:03 2007
@@ -6,5 +6,3 @@
 
   You should now go and install multimedia/audacious-plugins. Without it,
   audacious is useless!
-
-
diff -ruN --exclude=CVS /usr/ports/multimedia/audacious.orig/pkg-plist /usr/ports/multimedia/audacious/pkg-plist
--- /usr/ports/multimedia/audacious.orig/pkg-plist	Thu Dec 27 15:31:38 2007
+++ /usr/ports/multimedia/audacious/pkg-plist	Thu Dec 27 17:18:42 2007
@@ -1,33 +1,78 @@
-bin/audacious
 bin/audtool
-include/audacious/beepctrl.h
+bin/audacious
+include/audacious/audctrl.h
+include/audacious/auddrct.h
 include/audacious/configdb.h
+include/audacious/custom_uri.h
+include/audacious/dbus.h
+include/audacious/discovery.h
+include/audacious/dbus-service.h
+include/audacious/eventqueue.h
+include/audacious/flow.h
 include/audacious/formatter.h
-include/audacious/hook.h
+include/audacious/rcfile.h
 include/audacious/i18n.h
-include/audacious/id3tag.h
 include/audacious/input.h
+include/audacious/hook.h
 include/audacious/main.h
+include/audacious/mime.h
 include/audacious/output.h
+include/audacious/playback.h
 include/audacious/playlist.h
 include/audacious/playlist_container.h
 include/audacious/plugin.h
-include/audacious/rcfile.h
 include/audacious/strings.h
-include/audacious/titlestring.h
+include/audacious/tuple.h
+include/audacious/tuple_formatter.h
+include/audacious/tuple_compiler.h
 include/audacious/ui_fileinfopopup.h
+include/audacious/ui_plugin_menu.h
 include/audacious/ui_preferences.h
 include/audacious/util.h
 include/audacious/vfs.h
 include/audacious/vfs_buffer.h
 include/audacious/vfs_buffered_file.h
 include/audacious/xconvert.h
+include/audacious/id3tag.h
+lib/audacious/libaudid3tag.so.1.0.0
+lib/audacious/libaudid3tag.so.1
 lib/audacious/libaudid3tag.so
-lib/libaudacious.so
-lib/libaudacious.so.5
-lib/libaudacious.so.5.0.0
 libdata/pkgconfig/audacious.pc
+libdata/pkgconfig/audclient.pc
 share/applications/audacious.desktop
+share/pixmaps/audacious.png
+%%DATADIR%%/glade/fileinfo.glade
+%%DATADIR%%/glade/prefswin.glade
+%%DATADIR%%/images/about-logo.png
+%%DATADIR%%/images/appearance.png
+%%DATADIR%%/images/audacious_eq.xpm
+%%DATADIR%%/images/audacious_player.xpm
+%%DATADIR%%/images/audacious_playlist.xpm
+%%DATADIR%%/images/audio.png
+%%DATADIR%%/images/connectivity.png
+%%DATADIR%%/images/eq.png
+%%DATADIR%%/images/info.png
+%%DATADIR%%/images/menu_invert_playlist.png
+%%DATADIR%%/images/menu_queue_toggle.png
+%%DATADIR%%/images/menu_randomize_playlist.png
+%%DATADIR%%/images/menu_remove_dups.png
+%%DATADIR%%/images/menu_remove_unavail.png
+%%DATADIR%%/images/menu_select_all.png
+%%DATADIR%%/images/menu_select_invert.png
+%%DATADIR%%/images/menu_select_none.png
+%%DATADIR%%/images/menu_sort_artist.png
+%%DATADIR%%/images/menu_sort_filename.png
+%%DATADIR%%/images/menu_sort_pathfile.png
+%%DATADIR%%/images/menu_sort_title.png
+%%DATADIR%%/images/mouse.png
+%%DATADIR%%/images/pl.png
+%%DATADIR%%/images/play.png
+%%DATADIR%%/images/playlist.png
+%%DATADIR%%/images/plugins.png
+%%DATADIR%%/ui/equalizer.ui
+%%DATADIR%%/ui/mainwin.ui
+%%DATADIR%%/ui/playlist.ui
+%%DATADIR%%/ui/carbon-menubar.ui
 %%DATADIR%%/Skins/Classic/balance.png
 %%DATADIR%%/Skins/Classic/cbuttons.png
 %%DATADIR%%/Skins/Classic/eq_ex.png
@@ -40,12 +85,30 @@
 %%DATADIR%%/Skins/Classic/pledit.txt
 %%DATADIR%%/Skins/Classic/posbar.png
 %%DATADIR%%/Skins/Classic/shufrep.png
+%%DATADIR%%/Skins/Classic/skin-classic.hints
 %%DATADIR%%/Skins/Classic/skin.hints
 %%DATADIR%%/Skins/Classic/text.png
 %%DATADIR%%/Skins/Classic/titlebar.png
 %%DATADIR%%/Skins/Classic/viscolor.txt
 %%DATADIR%%/Skins/Classic/volume.png
-%%DATADIR%%/Skins/Default/balance.png
+%%DATADIR%%/Skins/Classic1.3/balance.png
+%%DATADIR%%/Skins/Classic1.3/cbuttons.png
+%%DATADIR%%/Skins/Classic1.3/eq_ex.png
+%%DATADIR%%/Skins/Classic1.3/eqmain.png
+%%DATADIR%%/Skins/Classic1.3/main.png
+%%DATADIR%%/Skins/Classic1.3/monoster.png
+%%DATADIR%%/Skins/Classic1.3/nums_ex.png
+%%DATADIR%%/Skins/Classic1.3/playpaus.png
+%%DATADIR%%/Skins/Classic1.3/pledit.png
+%%DATADIR%%/Skins/Classic1.3/pledit.txt
+%%DATADIR%%/Skins/Classic1.3/posbar.png
+%%DATADIR%%/Skins/Classic1.3/shufrep.png
+%%DATADIR%%/Skins/Classic1.3/skin-classic.hints
+%%DATADIR%%/Skins/Classic1.3/skin.hints
+%%DATADIR%%/Skins/Classic1.3/text.png
+%%DATADIR%%/Skins/Classic1.3/titlebar.png
+%%DATADIR%%/Skins/Classic1.3/viscolor.txt
+%%DATADIR%%/Skins/Classic1.3/volume.png
 %%DATADIR%%/Skins/Default/cbuttons.png
 %%DATADIR%%/Skins/Default/eq_ex.png
 %%DATADIR%%/Skins/Default/eqmain.png
@@ -62,6 +125,101 @@
 %%DATADIR%%/Skins/Default/titlebar.png
 %%DATADIR%%/Skins/Default/viscolor.txt
 %%DATADIR%%/Skins/Default/volume.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Arrows/arrow-down.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Arrows/arrow-insens.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Arrows/arrow-left.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Arrows/arrow-right.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Arrows/arrow-up.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Buttons/button-insensitive.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Buttons/button-normal.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Buttons/button-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/check1.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/check2.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/check3.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/check4.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/check5.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/check6.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/option1.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/option2.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/option3.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/option4.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/option5.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio/option6.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Frame-Gap/frame-gap-end.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Frame-Gap/frame-gap-start.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Frame-Gap/frame.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Handles/handle-h.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Handles/handle-v.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Lines/line-h.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Lines/line-v.png
+%%DATADIR%%/Skins/Default/gtk-2.0/ListHeaders/list_header-insens.png
+%%DATADIR%%/Skins/Default/gtk-2.0/ListHeaders/list_header-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/ListHeaders/list_header-pressed.png
+%%DATADIR%%/Skins/Default/gtk-2.0/ListHeaders/list_header.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Menu-Menubar/menu.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Menu-Menubar/menubar-item-active.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Menu-Menubar/menubar-item.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Menu-Menubar/menubar.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Others/null.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Others/ruler.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Panel/panel-bg.png
+%%DATADIR%%/Skins/Default/gtk-2.0/ProgressBar/progressbar-horiz.png
+%%DATADIR%%/Skins/Default/gtk-2.0/ProgressBar/trough-progressbar-horiz.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Range/slider-horiz-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Range/slider-horiz.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Range/slider-vert-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Range/slider-vert.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Range/trough-horizontal.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Range/trough-vertical.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/scroll-thumb-horiz-pre.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/scroll-thumb-horiz.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/scroll-thumb-vert-pre.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/scroll-thumb-vert.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/slider-horiz-pre.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/slider-horiz.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/slider-vert-pre.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/slider-vert.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-down-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-down.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-left-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-left.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-right-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-right.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-up-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/stepper-up.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/trough-scrollbar-horiz.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars/trough-scrollbar-vert.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Shadows/shadow-in.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Shadows/shadow-out.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Shadows/text-.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Shadows/text-entry.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Spin/spin-down-disable.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Spin/spin-down-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Spin/spin-down.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Spin/spin-up-disable.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Spin/spin-up-prelight.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Spin/spin-up.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-bottom-left.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-bottom-right.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-left-bottom.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-left-top.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-right-bottom.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-right-top.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-top-current.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-top-left.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/gap-top-right.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/notebook.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-bottom-active.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-bottom.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-left-active.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-left.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-right-active.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-right.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-top-active.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Tabs/tab-top.png
+%%DATADIR%%/Skins/Default/gtk-2.0/Toolbar/toolbar.png
+%%DATADIR%%/Skins/Default/gtk-2.0/gtkrc
+%%DATADIR%%/Skins/Default/gtk-2.0/panel.rc
 %%DATADIR%%/Skins/Ivory/balance.png
 %%DATADIR%%/Skins/Ivory/cbuttons.png
 %%DATADIR%%/Skins/Ivory/eq_ex.png
@@ -113,20 +271,22 @@
 %%DATADIR%%/Skins/TinyPlayer/titlebar.png
 %%DATADIR%%/Skins/TinyPlayer/viscolor.txt
 %%DATADIR%%/Skins/TinyPlayer/volume.png
-%%DATADIR%%/glade/fileinfo.glade
-%%DATADIR%%/glade/prefswin.glade
-%%DATADIR%%/images/about-logo.png
-%%DATADIR%%/images/appearance.png
-%%DATADIR%%/images/audacious_player.xpm
-%%DATADIR%%/images/audio.png
-%%DATADIR%%/images/connectivity.png
-%%DATADIR%%/images/eq.png
-%%DATADIR%%/images/mouse.png
-%%DATADIR%%/images/playlist.png
-%%DATADIR%%/images/plugins.png
-%%DATADIR%%/ui/equalizer.ui
-%%DATADIR%%/ui/mainwin.ui
-%%DATADIR%%/ui/playlist.ui
+%%DATADIR%%/Skins/Refugee/cbuttons.png
+%%DATADIR%%/Skins/Refugee/eq_ex.png
+%%DATADIR%%/Skins/Refugee/eqmain.png
+%%DATADIR%%/Skins/Refugee/main.png
+%%DATADIR%%/Skins/Refugee/monoster.png
+%%DATADIR%%/Skins/Refugee/nums_ex.png
+%%DATADIR%%/Skins/Refugee/playpaus.png
+%%DATADIR%%/Skins/Refugee/pledit.png
+%%DATADIR%%/Skins/Refugee/pledit.txt
+%%DATADIR%%/Skins/Refugee/posbar.png
+%%DATADIR%%/Skins/Refugee/shufrep.png
+%%DATADIR%%/Skins/Refugee/skin.hints
+%%DATADIR%%/Skins/Refugee/text.png
+%%DATADIR%%/Skins/Refugee/titlebar.png
+%%DATADIR%%/Skins/Refugee/viscolor.txt
+%%DATADIR%%/Skins/Refugee/volume.png
 %%NLS%%share/locale/bg/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/br/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/audacious.mo
@@ -135,6 +295,7 @@
 %%NLS%%share/locale/de/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/el/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/es/LC_MESSAGES/audacious.mo
+%%NLS%%share/locale/et/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/fi/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/hi/LC_MESSAGES/audacious.mo
@@ -159,13 +320,32 @@
 %%NLS%%share/locale/uk/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/audacious.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/audacious.mo
-share/pixmaps/audacious.png
 @dirrm %%DATADIR%%/Skins/Classic
+ at dirrm %%DATADIR%%/Skins/Classic1.3
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Arrows
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Buttons
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Check-Radio
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Frame-Gap
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Handles
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Lines
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/ListHeaders
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Menu-Menubar
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Others
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Panel
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/ProgressBar
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Range
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Scrollbars
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Shadows
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Spin
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Tabs
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0/Toolbar
+ at dirrm %%DATADIR%%/Skins/Default/gtk-2.0
 @dirrm %%DATADIR%%/Skins/Default
 @dirrm %%DATADIR%%/Skins/Ivory
 @dirrm %%DATADIR%%/Skins/Osmosis
 @dirrm %%DATADIR%%/Skins/TinyPlayer
- at dirrm %%DATADIR%%/Skins
+ at dirrm %%DATADIR%%/Skins/Refugee
+ at dirrmtry %%DATADIR%%/Skins
 @dirrm %%DATADIR%%/glade
 @dirrmtry %%DATADIR%%/images
 @dirrm %%DATADIR%%/ui
--- audacious-1.4.4.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list