diff options
author | drochner <drochner@pkgsrc.org> | 2008-06-11 11:37:55 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2008-06-11 11:37:55 +0000 |
commit | 4d9e92536a297b058aed72cbf9b572214d175817 (patch) | |
tree | ae1e1f715f7ee66eface12c5418121c59247a717 /audio/exaile | |
parent | ccc18ba10e9452bab2d4681f903eba1413bc060a (diff) | |
download | pkgsrc-4d9e92536a297b058aed72cbf9b572214d175817.tar.gz |
fix installation of some unusual locale files, from Hasso Tepper in a
followup to PR pkg/38921
Diffstat (limited to 'audio/exaile')
-rw-r--r-- | audio/exaile/PLIST | 6 | ||||
-rw-r--r-- | audio/exaile/distinfo | 4 | ||||
-rw-r--r-- | audio/exaile/patches/patch-aa | 16 |
3 files changed, 10 insertions, 16 deletions
diff --git a/audio/exaile/PLIST b/audio/exaile/PLIST index ea7c37a20af..9e800c757d0 100644 --- a/audio/exaile/PLIST +++ b/audio/exaile/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2008/05/30 17:18:23 drochner Exp $ +@comment $NetBSD: PLIST,v 1.5 2008/06/11 11:37:55 drochner Exp $ bin/exaile lib/exaile/exaile.py lib/exaile/lib/__init__.py @@ -215,9 +215,12 @@ share/locale/eu/LC_MESSAGES/exaile.mo share/locale/fa/LC_MESSAGES/exaile.mo share/locale/fi/LC_MESSAGES/exaile.mo share/locale/fr/LC_MESSAGES/exaile.mo +share/locale/frp/LC_MESSAGES/exaile.mo share/locale/he/LC_MESSAGES/exaile.mo +share/locale/he_IL/LC_MESSAGES/exaile.mo share/locale/hu/LC_MESSAGES/exaile.mo share/locale/it/LC_MESSAGES/exaile.mo +share/locale/it_IT/LC_MESSAGES/exaile.mo share/locale/ka/LC_MESSAGES/exaile.mo share/locale/ko/LC_MESSAGES/exaile.mo share/locale/lt/LC_MESSAGES/exaile.mo @@ -236,6 +239,7 @@ share/locale/sr@latin/LC_MESSAGES/exaile.mo share/locale/sv/LC_MESSAGES/exaile.mo share/locale/te/LC_MESSAGES/exaile.mo share/locale/tr/LC_MESSAGES/exaile.mo +share/locale/tr_TR/LC_MESSAGES/exaile.mo share/locale/uk/LC_MESSAGES/exaile.mo share/locale/zh_TW/LC_MESSAGES/exaile.mo share/pixmaps/exaile.png diff --git a/audio/exaile/distinfo b/audio/exaile/distinfo index 8a8bfb512c9..dd23d581fdd 100644 --- a/audio/exaile/distinfo +++ b/audio/exaile/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.6 2008/05/30 17:18:23 drochner Exp $ +$NetBSD: distinfo,v 1.7 2008/06/11 11:37:55 drochner Exp $ SHA1 (exaile_0.2.13.tar.gz) = 8cc754c55333dad750d27e45a4e16f53c1f1522c RMD160 (exaile_0.2.13.tar.gz) = 6b839da1a996207ae18555937d251ffaaebde028 Size (exaile_0.2.13.tar.gz) = 1267717 bytes -SHA1 (patch-aa) = 6000b294114ef1337b84afc625b5d305f4484479 +SHA1 (patch-aa) = 2947a4a4a8ff7b13812c3d94fcc741e8e69b0a55 SHA1 (patch-ab) = 46d55fb1e5175aafc9d414bf17b045f1eaf3b3bb diff --git a/audio/exaile/patches/patch-aa b/audio/exaile/patches/patch-aa index d59b76429d7..b12051ba697 100644 --- a/audio/exaile/patches/patch-aa +++ b/audio/exaile/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.3 2008/05/30 17:18:23 drochner Exp $ +$NetBSD: patch-aa,v 1.4 2008/06/11 11:37:55 drochner Exp $ ---- Makefile.orig 2008-04-02 03:42:17.000000000 +0200 -+++ Makefile +--- Makefile.orig 2008-06-11 03:42:53 +0300 ++++ Makefile 2008-06-11 03:43:25 +0300 @@ -6,15 +6,14 @@ all: compile mmkeys.so translations @echo "Type: 'make install' now" @@ -34,13 +34,3 @@ $NetBSD: patch-aa,v 1.3 2008/05/30 17:18:23 drochner Exp $ install -m 644 exaile.py $(DESTDIR)$(PREFIX)$(LIBDIR)/exaile install -m 644 exaile.glade $(DESTDIR)$(PREFIX)/share/exaile install -m 644 equalizer.ini $(DESTDIR)$(PREFIX)/share/exaile -@@ -73,9 +72,6 @@ install: make-install-dirs - > exaile && \ - chmod 755 exaile - for f in `find po -name exaile.mo` ; do \ -- install -d -m 755 \ -- `echo $$f | sed "s|^po|$(DESTDIR)$(PREFIX)/share/locale|" | \ -- xargs dirname` && \ - install -m 644 $$f \ - `echo $$f | sed "s|^po|$(DESTDIR)$(PREFIX)/share/locale|"` ; \ - done |