diff options
author | miwi <miwi@FreeBSD.org> | 2009-05-17 06:46:45 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-05-17 06:46:45 +0800 |
commit | 722c9e7253da787d3843b4ebb1519ed5e894b7f2 (patch) | |
tree | ef9f42eb1d3c74c110478e0d8c4d40a5f862a7f8 /deskutils | |
parent | 186fc2b338cc13c78cbcf58a0d226912eab32a11 (diff) | |
download | freebsd-ports-gnome-722c9e7253da787d3843b4ebb1519ed5e894b7f2.tar.gz freebsd-ports-gnome-722c9e7253da787d3843b4ebb1519ed5e894b7f2.tar.zst freebsd-ports-gnome-722c9e7253da787d3843b4ebb1519ed5e894b7f2.zip |
- Fix a problem with hardcoded paths that would
prevent album covers from being displayed properly.
If a track without an album cover was played after
a track with an album cover, the album cover from
the previous track would remain visible instead of
using the generic picture for no cover.
PR: 134525
Submitted by: Jason E. Hale <bsdkaffee@gmail.com> (maintainer)
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/plasma-applet-playwolf/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deskutils/plasma-applet-playwolf/Makefile b/deskutils/plasma-applet-playwolf/Makefile index f34de7126081..ea7723dbba8d 100644 --- a/deskutils/plasma-applet-playwolf/Makefile +++ b/deskutils/plasma-applet-playwolf/Makefile @@ -7,6 +7,7 @@ PORTNAME= playwolf PORTVERSION= 0.7.2 +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= plasma-applet- @@ -37,4 +38,7 @@ post-patch: ${ECHO_CMD} >> ${WRKSRC}/${i} .endfor + cd ${WRKSRC} && ${REINPLACE_CMD} -e 's|usr|${KDE4_PREFIX}|g' \ + infomanager.cpp wolflabel.cpp + .include <bsd.port.post.mk> |