summaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-01-20 10:56:15 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2006-01-20 10:56:15 +0800
commitadfd8c1bceda3b157e08b451a62eef4c8ad031c3 (patch)
treee5d8bbbef49723c723a7957f75626c282db3b64d /sysutils
parent2fb9f4a561bef45a715b36cd4d3e70d267f5c3c1 (diff)
downloadmarcuscom-ports-adfd8c1bceda3b157e08b451a62eef4c8ad031c3.tar
marcuscom-ports-adfd8c1bceda3b157e08b451a62eef4c8ad031c3.tar.gz
marcuscom-ports-adfd8c1bceda3b157e08b451a62eef4c8ad031c3.tar.bz2
marcuscom-ports-adfd8c1bceda3b157e08b451a62eef4c8ad031c3.tar.lz
marcuscom-ports-adfd8c1bceda3b157e08b451a62eef4c8ad031c3.tar.xz
marcuscom-ports-adfd8c1bceda3b157e08b451a62eef4c8ad031c3.tar.zst
marcuscom-ports-adfd8c1bceda3b157e08b451a62eef4c8ad031c3.zip
- Move gstreamer 0.8 stuff to gstreamer*80 in preps of gstreamer 0.10
- Add USE_GSTREAMER80 to support old gstreamer - Add a bunch of ports that use USE_GSTREAMER80 Some stuff repo-copied by: marcus git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5446 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/gnome-control-center/Makefile4
-rw-r--r--sysutils/gnomebaker/Makefile49
-rw-r--r--sysutils/gnomebaker/distinfo3
-rw-r--r--sysutils/gnomebaker/files/patch-Makefile.in11
-rw-r--r--sysutils/gnomebaker/files/patch-help-C-Makefile.in12
-rw-r--r--sysutils/gnomebaker/files/patch-src-devices.c12
-rw-r--r--sysutils/gnomebaker/files/patch-src-main.c16
-rw-r--r--sysutils/gnomebaker/pkg-descr22
-rw-r--r--sysutils/gnomebaker/pkg-plist84
-rw-r--r--sysutils/gnomecontrolcenter2/Makefile4
-rw-r--r--sysutils/gstreamer-plugins-cdio80/Makefile18
-rw-r--r--sysutils/serpentine/Makefile43
-rw-r--r--sysutils/serpentine/distinfo3
-rw-r--r--sysutils/serpentine/pkg-descr14
-rw-r--r--sysutils/serpentine/pkg-plist89
15 files changed, 380 insertions, 4 deletions
diff --git a/sysutils/gnome-control-center/Makefile b/sysutils/gnome-control-center/Makefile
index 8a6d85850..6e3dd1c52 100644
--- a/sysutils/gnome-control-center/Makefile
+++ b/sysutils/gnome-control-center/Makefile
@@ -3,7 +3,7 @@
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/sysutils/gnomecontrolcenter2/Makefile,v 1.91 2006/01/18 15:21:41 ahze Exp $
+# $MCom: ports/sysutils/gnomecontrolcenter2/Makefile,v 1.92 2006/01/18 15:59:03 marcus Exp $
#
PORTNAME= gnomecontrolcenter2
@@ -24,7 +24,7 @@ USE_X_PREFIX= yes
USE_REINPLACE= yes
USE_GMAKE= yes
GNOME_DESKTOP_VERSION=2
-USE_GSTREAMER= yes
+USE_GSTREAMER80= yes
WANT_GNOME= yes
USE_GNOME= gnomeprefix gnomehack intlhack metacity nautilus2 \
gnomemenus desktopfileutils nautilus2
diff --git a/sysutils/gnomebaker/Makefile b/sysutils/gnomebaker/Makefile
new file mode 100644
index 000000000..c7edf4402
--- /dev/null
+++ b/sysutils/gnomebaker/Makefile
@@ -0,0 +1,49 @@
+# New ports collection makefile for: gnomebaker
+# Date created: 2005-02-20
+# Whom: Dominique Goncalves <dominique.goncalves@gmail.com>
+#
+# $FreeBSD$
+
+PORTNAME= gnomebaker
+PORTVERSION= 0.5.0
+PORTREVISION= 3
+CATEGORIES= sysutils gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= gnomebaker
+DIST_SUBDIR= gnome2
+
+MAINTAINER= dominique.goncalves@gmail.com
+COMMENT= A CD/DVD recording GUI for Gnome
+
+OPTIONS= DVD "Enable DVD support" off \
+ CJK "Use cdrtools-cjk instead of cdrtools" off
+
+USE_X_PREFIX= yes
+USE_GNOME= gnomeprefix gnomehack libgnomeui desktopfileutils
+GNU_CONFIGURE= yes
+USE_GMAKE= yes
+INSTALLS_OMF= yes
+USE_GCC= 3.4+
+USE_AUTOTOOLS= libtool:15:inc
+USE_GSTREAMER80= vorbis mad flac
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+.include <bsd.port.pre.mk>
+
+RUN_DEPENDS+= cdrdao:${PORTSDIR}/sysutils/cdrdao
+
+.if defined(WITH_CJK)
+RUN_DEPENDS+= cdrecord:${PORTSDIR}/sysutils/cdrtools-cjk
+.else
+RUN_DEPENDS+= cdrecord:${PORTSDIR}/sysutils/cdrtools
+.endif
+
+.if defined(WITH_DVD)
+RUN_DEPENDS+= growisofs:${PORTSDIR}/sysutils/dvd+rw-tools
+.endif
+
+post-install:
+ @-update-desktop-database
+
+.include <bsd.port.post.mk>
diff --git a/sysutils/gnomebaker/distinfo b/sysutils/gnomebaker/distinfo
new file mode 100644
index 000000000..d16f3d231
--- /dev/null
+++ b/sysutils/gnomebaker/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/gnomebaker-0.5.0.tar.gz) = 728c471403ac35a156eac6680d507388
+SHA256 (gnome2/gnomebaker-0.5.0.tar.gz) = 276aa23419257ea8a41ddaf3d35346cccbf9b17afee23497aaa18e5251729df8
+SIZE (gnome2/gnomebaker-0.5.0.tar.gz) = 1184251
diff --git a/sysutils/gnomebaker/files/patch-Makefile.in b/sysutils/gnomebaker/files/patch-Makefile.in
new file mode 100644
index 000000000..d2d321fa4
--- /dev/null
+++ b/sysutils/gnomebaker/files/patch-Makefile.in
@@ -0,0 +1,11 @@
+--- Makefile.in.orig Fri Oct 7 20:08:19 2005
++++ Makefile.in Fri Oct 7 20:08:47 2005
+@@ -217,7 +217,7 @@
+ sysconfdir = @sysconfdir@
+ target_alias = @target_alias@
+ SUBDIRS = intl po macros src pixmaps media help
+-gnomebakerdocdir = ${prefix}/doc/gnomebaker
++gnomebakerdocdir = ${prefix}/share/doc/gnomebaker
+ gnomebakerdoc_DATA = \
+ README\
+ COPYING\
diff --git a/sysutils/gnomebaker/files/patch-help-C-Makefile.in b/sysutils/gnomebaker/files/patch-help-C-Makefile.in
new file mode 100644
index 000000000..cb728e1cc
--- /dev/null
+++ b/sysutils/gnomebaker/files/patch-help-C-Makefile.in
@@ -0,0 +1,12 @@
+--- help/C/Makefile.in.orig Mon Oct 24 18:31:17 2005
++++ help/C/Makefile.in Mon Oct 24 18:31:44 2005
+@@ -214,8 +214,7 @@
+ # ************* Begin of section some packagers may need to modify **************
+ # This variable (docdir) specifies where the documents should be installed.
+ # This default value should work for most packages.
+-docdir = $(datadir)/@PACKAGE@/doc/$(docname)/$(lang)
+-#docdir = $(datadir)/help/$(docname)/$(lang)
++docdir = $(datadir)/help/$(docname)/$(lang)
+
+ # ************** You should not have to edit below this line *******************
+ # ** GSt did ...
diff --git a/sysutils/gnomebaker/files/patch-src-devices.c b/sysutils/gnomebaker/files/patch-src-devices.c
new file mode 100644
index 000000000..d07344400
--- /dev/null
+++ b/sysutils/gnomebaker/files/patch-src-devices.c
@@ -0,0 +1,12 @@
+--- src/devices.c.orig Wed Oct 26 22:12:18 2005
++++ src/devices.c Wed Oct 26 22:12:41 2005
+@@ -779,7 +779,8 @@
+ gchar* devicename = devices_get_device_config(devicekey, GB_DEVICE_NAME_LABEL);
+ gchar* message = g_strdup_printf(_("Please insert a disk into the %s"), devicename);
+ gint ret = GTK_RESPONSE_OK;
+- while(!devices_is_disk_inserted(devicekey) && (ret == GTK_RESPONSE_OK))
++ /* while(!devices_is_disk_inserted(devicekey) && (ret == GTK_RESPONSE_OK)) */
++ if(!devices_is_disk_inserted(devicekey))
+ {
+ devices_eject_disk(devicekey);
+ ret = gnomebaker_show_msg_dlg(parent, GTK_MESSAGE_INFO,
diff --git a/sysutils/gnomebaker/files/patch-src-main.c b/sysutils/gnomebaker/files/patch-src-main.c
new file mode 100644
index 000000000..6caabc515
--- /dev/null
+++ b/sysutils/gnomebaker/files/patch-src-main.c
@@ -0,0 +1,16 @@
+--- src/main.c.orig Fri Oct 7 19:53:32 2005
++++ src/main.c Fri Oct 7 19:54:29 2005
+@@ -23,12 +23,12 @@
+ # include <config.h>
+ #endif
+
++#include <libintl.h>
+ #include "gnomebaker.h"
+ #include <gnome.h>
+ #include <glade/glade.h>
+ #include "splashdlg.h"
+ #include "gbcommon.h"
+-#include <libintl.h>
+ #include <locale.h>
+ #include <gst/gst.h>
+
diff --git a/sysutils/gnomebaker/pkg-descr b/sysutils/gnomebaker/pkg-descr
new file mode 100644
index 000000000..f1b402c70
--- /dev/null
+++ b/sysutils/gnomebaker/pkg-descr
@@ -0,0 +1,22 @@
+Gnomebaker is a gnome cd/dvd burn program. It can:
+
+ * Create data cds
+ * Blank rewritable disks
+ * Copy data cds
+ * Copy audio cds
+ * Burn existing cd iso images
+ * Drag and drop to create data cds (including DnD to and from nautilus)
+ * Create audio cds from existing wavs, mp3, flac and oggs
+ * Integrate with gconf for storage of application settings
+ * Burn DVDs.
+ * Supports multisession burning
+ * Blank/Format DVDs
+ * Burn Cue/Bin files
+ * Burn data cds on the fly
+
+In the future it will also do the following and hopefully much more:
+
+ * Create video cds from existing video and stills
+ * Create mixed mode cds
+
+WWW: http://gnomebaker.sourceforge.net/v2/
diff --git a/sysutils/gnomebaker/pkg-plist b/sysutils/gnomebaker/pkg-plist
new file mode 100644
index 000000000..aa2caf250
--- /dev/null
+++ b/sysutils/gnomebaker/pkg-plist
@@ -0,0 +1,84 @@
+bin/gnomebaker
+%%DOCSDIR%%/AUTHORS
+%%DOCSDIR%%/COPYING
+%%DOCSDIR%%/ChangeLog
+%%DOCSDIR%%/INSTALL
+%%DOCSDIR%%/NEWS
+%%DOCSDIR%%/README
+%%DOCSDIR%%/TODO
+%%DOCSDIR%%/omf.make
+%%DOCSDIR%%/xmldocs.make
+share/applications/gnomebaker.desktop
+share/gnome/help/gnomebaker/C/figures/gnomebaker-blank-cdrw.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker-burn-iso.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker-copy-audio-cd.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker-copy-data-cd.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker-create-audio-cd.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker-create-data-cd.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker_prefs-filebrowser.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker_prefs-tmp.png
+share/gnome/help/gnomebaker/C/figures/gnomebaker_window.png
+share/gnome/help/gnomebaker/C/gnomebaker.xml
+share/gnome/help/gnomebaker/C/legal.xml
+share/gnome/omf/gnomebaker/gnomebaker-C.omf
+%%DATADIR%%/baker-add-dir.png
+%%DATADIR%%/baker-add-files.png
+%%DATADIR%%/baker-audio-copy.png
+%%DATADIR%%/baker-blank-cdrw.png
+%%DATADIR%%/baker-blank-dvdrw.png
+%%DATADIR%%/baker-burn-cd.png
+%%DATADIR%%/baker-cd-iso.png
+%%DATADIR%%/baker-cd.png
+%%DATADIR%%/baker-cue-image.png
+%%DATADIR%%/baker-data-copy.png
+%%DATADIR%%/baker-dvd-iso.png
+%%DATADIR%%/baker-import-session.png
+%%DATADIR%%/baker-remove-files.png
+%%DATADIR%%/gnomebaker-48.png
+%%DATADIR%%/gnomebaker.glade
+%%DATADIR%%/media/BurnFailed.wav
+%%DATADIR%%/media/BurnOk.wav
+%%DATADIR%%/splash_2.png
+share/locale/af/LC_MESSAGES/gnomebaker.mo
+share/locale/bg/LC_MESSAGES/gnomebaker.mo
+share/locale/cs/LC_MESSAGES/gnomebaker.mo
+share/locale/da/LC_MESSAGES/gnomebaker.mo
+share/locale/de/LC_MESSAGES/gnomebaker.mo
+share/locale/en_US/LC_MESSAGES/gnomebaker.mo
+share/locale/es/LC_MESSAGES/gnomebaker.mo
+share/locale/es_ES/LC_MESSAGES/gnomebaker.mo
+share/locale/eu/LC_MESSAGES/gnomebaker.mo
+share/locale/fr/LC_MESSAGES/gnomebaker.mo
+share/locale/he/LC_MESSAGES/gnomebaker.mo
+share/locale/hr/LC_MESSAGES/gnomebaker.mo
+share/locale/ja/LC_MESSAGES/gnomebaker.mo
+share/locale/ko/LC_MESSAGES/gnomebaker.mo
+share/locale/lv/LC_MESSAGES/gnomebaker.mo
+share/locale/ms/LC_MESSAGES/gnomebaker.mo
+share/locale/nl_NL/LC_MESSAGES/gnomebaker.mo
+share/locale/no/LC_MESSAGES/gnomebaker.mo
+share/locale/pl/LC_MESSAGES/gnomebaker.mo
+share/locale/pt/LC_MESSAGES/gnomebaker.mo
+share/locale/pt_BR/LC_MESSAGES/gnomebaker.mo
+share/locale/ro/LC_MESSAGES/gnomebaker.mo
+share/locale/ru/LC_MESSAGES/gnomebaker.mo
+share/locale/sk/LC_MESSAGES/gnomebaker.mo
+share/locale/sv/LC_MESSAGES/gnomebaker.mo
+share/locale/sv_SE/LC_MESSAGES/gnomebaker.mo
+share/locale/tr/LC_MESSAGES/gnomebaker.mo
+share/locale/zh_CN/LC_MESSAGES/gnomebaker.mo
+@unexec /bin/rmdir %D/share/locale/nl_NL/LC_MESSAGES 2>/dev/null || /usr/bin/true
+@unexec /bin/rmdir %D/share/locale/nl_NL 2>/dev/null || /usr/bin/true
+@unexec /bin/rmdir %D/share/locale/en_US/LC_MESSAGES 2>/dev/null || /usr/bin/true
+@unexec /bin/rmdir %D/share/locale/en_US 2>/dev/null || /usr/bin/true
+@unexec /bin/rmdir %D/share/locale/sv_SE/LC_MESSAGES 2>/dev/null || /usr/bin/true
+@unexec /bin/rmdir %D/share/locale/sv_SE 2>/dev/null || /usr/bin/true
+@dirrm %%DATADIR%%/media
+@dirrm %%DATADIR%%
+@dirrm share/gnome/omf/gnomebaker
+@dirrm share/gnome/help/gnomebaker/C/figures
+@dirrm share/gnome/help/gnomebaker/C
+@dirrm share/gnome/help/gnomebaker
+@dirrm %%DOCSDIR%%
+@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
+@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
diff --git a/sysutils/gnomecontrolcenter2/Makefile b/sysutils/gnomecontrolcenter2/Makefile
index 8a6d85850..6e3dd1c52 100644
--- a/sysutils/gnomecontrolcenter2/Makefile
+++ b/sysutils/gnomecontrolcenter2/Makefile
@@ -3,7 +3,7 @@
# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
#
# $FreeBSD$
-# $MCom: ports/sysutils/gnomecontrolcenter2/Makefile,v 1.91 2006/01/18 15:21:41 ahze Exp $
+# $MCom: ports/sysutils/gnomecontrolcenter2/Makefile,v 1.92 2006/01/18 15:59:03 marcus Exp $
#
PORTNAME= gnomecontrolcenter2
@@ -24,7 +24,7 @@ USE_X_PREFIX= yes
USE_REINPLACE= yes
USE_GMAKE= yes
GNOME_DESKTOP_VERSION=2
-USE_GSTREAMER= yes
+USE_GSTREAMER80= yes
WANT_GNOME= yes
USE_GNOME= gnomeprefix gnomehack intlhack metacity nautilus2 \
gnomemenus desktopfileutils nautilus2
diff --git a/sysutils/gstreamer-plugins-cdio80/Makefile b/sysutils/gstreamer-plugins-cdio80/Makefile
new file mode 100644
index 000000000..2b226b62c
--- /dev/null
+++ b/sysutils/gstreamer-plugins-cdio80/Makefile
@@ -0,0 +1,18 @@
+# New ports collection makefile for: gstreamer-plugins-cdio
+# Date created: 5 July 2005
+# Whom: Koop Mast <kwm@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom$
+#
+
+CATEGORIES= sysutils
+PORTREVISION= 1
+
+COMMENT= Gstreamer compact disc input and control library
+
+GST_PLUGIN= cdio
+
+MASTERDIR= ${.CURDIR}/../../multimedia/gstreamer-plugins80
+
+.include "${MASTERDIR}/Makefile"
diff --git a/sysutils/serpentine/Makefile b/sysutils/serpentine/Makefile
new file mode 100644
index 000000000..2b6aa65f3
--- /dev/null
+++ b/sysutils/serpentine/Makefile
@@ -0,0 +1,43 @@
+# New ports collection makefile for: serpentine
+# Date created: 2005-06-25
+# Whom: Michael Johnson <ahze@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom$
+
+PORTNAME= serpentine
+PORTVERSION= 0.6.4
+PORTREVISION= 2
+CATEGORIES= sysutils
+MASTER_SITES= http://download.berlios.de/${PORTNAME}/
+
+MAINTAINER= ahze@FreeBSD.org
+COMMENT= Gnome Audio Cd Buner
+
+BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/gst/__init__.py:${PORTSDIR}/multimedia/py-gstreamer \
+ xmlproc_parse:${PORTSDIR}/textproc/py-xml
+RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gst/__init__.py:${PORTSDIR}/multimedia/py-gstreamer \
+ xmlproc_parse:${PORTSDIR}/textproc/py-xml
+
+USE_X_PREFIX= yes
+USE_BZIP2= yes
+GNU_CONFIGURE= yes
+USE_GNOME= pygnomeextras intlhack
+USE_GMAKE= yes
+USE_GSTREAMER80= core gnomevfs
+USE_PYTHON= 2.4+
+
+OPTIONS= MUINE "Cd-Burner Plugin for muine audio player (i386 only)" Off
+
+.include <bsd.port.pre.mk>
+
+.if (defined(WITH_MUINE) || exists(${X11BASE}/bin/muine)) && ${ARCH}=="i386"
+BUILD_DEPENDS+= muine:${PORTSDIR}/audio/muine
+RUN_DEPENDS+= muine:${PORTSDIR}/audio/muine
+PLIST_SUB+= MUINE=""
+CONFIGURE_ARGS+= --enable-muine
+.else
+PLIST_SUB+= MUINE="@comment "
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/sysutils/serpentine/distinfo b/sysutils/serpentine/distinfo
new file mode 100644
index 000000000..2bfb7f558
--- /dev/null
+++ b/sysutils/serpentine/distinfo
@@ -0,0 +1,3 @@
+MD5 (serpentine-0.6.4.tar.bz2) = 98bf62755a4539d47a17fb5c84a183cb
+SHA256 (serpentine-0.6.4.tar.bz2) = d9f03fe0b49ae606757a981913ac9bb63424878672dcdb863e3cd4ec4a5b1de7
+SIZE (serpentine-0.6.4.tar.bz2) = 191148
diff --git a/sysutils/serpentine/pkg-descr b/sysutils/serpentine/pkg-descr
new file mode 100644
index 000000000..22350b404
--- /dev/null
+++ b/sysutils/serpentine/pkg-descr
@@ -0,0 +1,14 @@
+Gnome application for writing CD-Audio discs. It aims for simplicity,
+usability and compability. Its features are:
+
+ o Supports multiple formats files, like WAV, MP3, OGG, FLAC and every other
+ gstreamer does
+ o Save and open PLS, M3U and XSPF playlists
+ o Extracts audio from video contents, like an MPEG video
+ o Uses audio metadata for better handling
+ o Supports drag and drop: drop musics directly from Rhythmbox or Nautilus!
+ o Clean and easy to use interface
+ o Easy integration with other applications
+ o Muine plugin: allows you to write your playlist directly from Muine.
+
+WWW: http://s1x.homelinux.net/projects/serpentine
diff --git a/sysutils/serpentine/pkg-plist b/sysutils/serpentine/pkg-plist
new file mode 100644
index 000000000..7c6b4d70b
--- /dev/null
+++ b/sysutils/serpentine/pkg-plist
@@ -0,0 +1,89 @@
+bin/serpentine
+%%MUINE%%lib/muine/plugins/SerpentinePlugin.dll
+%%PYTHON_SITELIBDIR%%/serpentine/__init__.py
+%%PYTHON_SITELIBDIR%%/serpentine/__init__.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/__init__.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/audio.py
+%%PYTHON_SITELIBDIR%%/serpentine/audio.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/audio.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/common.py
+%%PYTHON_SITELIBDIR%%/serpentine/common.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/common.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/components.py
+%%PYTHON_SITELIBDIR%%/serpentine/components.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/components.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/constants.py
+%%PYTHON_SITELIBDIR%%/serpentine/constants.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/constants.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/converting.py
+%%PYTHON_SITELIBDIR%%/serpentine/converting.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/converting.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/export.py
+%%PYTHON_SITELIBDIR%%/serpentine/export.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/export.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/gaw.py
+%%PYTHON_SITELIBDIR%%/serpentine/gaw.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/gaw.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/gdkpiechart.py
+%%PYTHON_SITELIBDIR%%/serpentine/gdkpiechart.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/gdkpiechart.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/gtkutil.py
+%%PYTHON_SITELIBDIR%%/serpentine/gtkutil.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/gtkutil.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/mainwindow.py
+%%PYTHON_SITELIBDIR%%/serpentine/mainwindow.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/mainwindow.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/mastering.py
+%%PYTHON_SITELIBDIR%%/serpentine/mastering.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/mastering.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/operations.py
+%%PYTHON_SITELIBDIR%%/serpentine/operations.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/operations.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugrhythmbox.py
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugrhythmbox.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugrhythmbox.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/__init__.py
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/__init__.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/__init__.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_dir.py
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_dir.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_dir.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_k3b.py
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_k3b.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_k3b.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_plparser.py
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_plparser.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_plparser.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_plsave.py
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_plsave.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_plsave.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_xspf.py
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_xspf.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/plugins/plugfilter_xspf.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/preferences.py
+%%PYTHON_SITELIBDIR%%/serpentine/preferences.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/preferences.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/recording.py
+%%PYTHON_SITELIBDIR%%/serpentine/recording.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/recording.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/release.py
+%%PYTHON_SITELIBDIR%%/serpentine/release.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/release.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/services.py
+%%PYTHON_SITELIBDIR%%/serpentine/services.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/services.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/urlutil.py
+%%PYTHON_SITELIBDIR%%/serpentine/urlutil.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/urlutil.pyo
+%%PYTHON_SITELIBDIR%%/serpentine/xspf.py
+%%PYTHON_SITELIBDIR%%/serpentine/xspf.pyc
+%%PYTHON_SITELIBDIR%%/serpentine/xspf.pyo
+share/applications/serpentine.desktop
+%%DATADIR%%/serpentine.glade
+@dirrm %%DATADIR%%
+@unexec rmdir %D/share/applications 2> /dev/null || true
+@dirrm %%PYTHON_SITELIBDIR%%/serpentine/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/serpentine
+%%MUINE%%@unexec rmdir %D/lib/muine/plugins 2> /dev/null || true
+@unexec rmdir %D/%%PYTHON_SITELIBDIR%% 2> /dev/null || true
+@unexec rmdir %D/%%PYTHON_LIBDIR%% 2> /dev/null || true