diff options
author | tnn <tnn> | 2007-07-30 13:58:28 +0000 |
---|---|---|
committer | tnn <tnn> | 2007-07-30 13:58:28 +0000 |
commit | 03dd3d182e9cf058fe6a6ca4d0d3bd40c4a6e408 (patch) | |
tree | ca07c8e1e72afab02ce08e09491830bc10413000 /wm | |
parent | ecbdb32a13ae5759674e9ea7feac09886cf78ce5 (diff) | |
download | pkgsrc-03dd3d182e9cf058fe6a6ca4d0d3bd40c4a6e408.tar.gz |
Attempt to fix two problems seen with the installation of translation files:
- Don't be explicit about using a shell interpreter for install_sh.
- use $(mkinstalldirs) as the "mkdir -p" replacement.
- Bump PKGREVISION
Diffstat (limited to 'wm')
-rw-r--r-- | wm/openbox/Makefile | 3 | ||||
-rw-r--r-- | wm/openbox/distinfo | 3 | ||||
-rw-r--r-- | wm/openbox/patches/patch-ab | 15 |
3 files changed, 19 insertions, 2 deletions
diff --git a/wm/openbox/Makefile b/wm/openbox/Makefile index 3153a327dbf..0060379a543 100644 --- a/wm/openbox/Makefile +++ b/wm/openbox/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.42 2007/07/28 08:46:27 wiz Exp $ +# $NetBSD: Makefile,v 1.43 2007/07/30 13:58:28 tnn Exp $ DISTNAME= openbox-3.4.3 +PKGREVISION= 1 CATEGORIES= wm x11 MASTER_SITES= http://icculus.org/openbox/releases/ # PR pkg/36489 diff --git a/wm/openbox/distinfo b/wm/openbox/distinfo index 549dc27ffca..63724bbd85b 100644 --- a/wm/openbox/distinfo +++ b/wm/openbox/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.13 2007/07/28 08:46:27 wiz Exp $ +$NetBSD: distinfo,v 1.14 2007/07/30 13:58:28 tnn Exp $ SHA1 (openbox-3.4.3.tar.gz) = 69023e03846bb5b96fd623b3f9163547a556e7fe RMD160 (openbox-3.4.3.tar.gz) = 4a6b7e1572ee95c7ae5be40de5b78faa8cef963d Size (openbox-3.4.3.tar.gz) = 747422 bytes SHA1 (patch-aa) = 77043ec9f0466dbd2eb5dd54e467f983afccd9c1 +SHA1 (patch-ab) = bb13ec5801c2e271f1e6b2dc4d0aa149c9e2dff1 diff --git a/wm/openbox/patches/patch-ab b/wm/openbox/patches/patch-ab new file mode 100644 index 00000000000..cd018bcb834 --- /dev/null +++ b/wm/openbox/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.4 2007/07/30 13:58:28 tnn Exp $ + +--- po/Makefile.in.in.orig 2007-07-13 16:21:27.000000000 +0200 ++++ po/Makefile.in.in +@@ -30,8 +30,8 @@ gettextsrcdir = $(datadir)/gettext/po + + INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ +-mkinstalldirs = $(SHELL) @install_sh@ -d +-mkdir_p = @mkdir_p@ ++mkinstalldirs = @install_sh@ -d ++mkdir_p = $(mkinstalldirs) + + GMSGFMT_ = @GMSGFMT@ + GMSGFMT_no = @GMSGFMT@ |