fix installation of some unusual locale files, from Hasso Tepper in a

followup to PR pkg/38921
This commit is contained in:
drochner 2008-06-11 11:37:55 +00:00
parent ccc18ba10e
commit 4d9e92536a
3 changed files with 10 additions and 16 deletions

View file

@ -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

View file

@ -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

View file

@ -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