diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-11-08 04:43:28 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-11-08 04:43:28 +0800 |
commit | e68ab0e6788bc720a66cb7d3a691c091fda11594 (patch) | |
tree | 309df8688c2196894db0ef4988cbe546c388ae08 /x11 | |
parent | ed8a80f5c6b046369e0d54bee591dc778badfca3 (diff) | |
download | marcuscom-ports-e68ab0e6788bc720a66cb7d3a691c091fda11594.tar marcuscom-ports-e68ab0e6788bc720a66cb7d3a691c091fda11594.tar.gz marcuscom-ports-e68ab0e6788bc720a66cb7d3a691c091fda11594.tar.bz2 marcuscom-ports-e68ab0e6788bc720a66cb7d3a691c091fda11594.tar.lz marcuscom-ports-e68ab0e6788bc720a66cb7d3a691c091fda11594.tar.xz marcuscom-ports-e68ab0e6788bc720a66cb7d3a691c091fda11594.tar.zst marcuscom-ports-e68ab0e6788bc720a66cb7d3a691c091fda11594.zip |
Don't do the strftime hack if we are on a sufficiently recent -CURRENT.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3041 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gdm2/Makefile | 2 | ||||
-rw-r--r-- | x11/gnome-panel/Makefile | 2 | ||||
-rw-r--r-- | x11/gnomepanel/Makefile | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/x11/gdm2/Makefile b/x11/gdm2/Makefile index a14d0f9ba..4a501d414 100644 --- a/x11/gdm2/Makefile +++ b/x11/gdm2/Makefile @@ -54,9 +54,11 @@ post-extract: post-patch: @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e 's|[(]datadir[)]/icons/hicolor|(prefix)/share/icons/hicolor|g' +.if ${OSVERSION} < 600006 .for po in zh_CN.po @${REINPLACE_CMD} -e 's|%-|%|g' ${WRKSRC}/po/${po} .endfor +.endif post-install: .if !defined(PACKAGE_BUILDING) diff --git a/x11/gnome-panel/Makefile b/x11/gnome-panel/Makefile index 1f6257711..064ce43d2 100644 --- a/x11/gnome-panel/Makefile +++ b/x11/gnome-panel/Makefile @@ -53,9 +53,11 @@ CONFIGURE_ARGS+=--enable-eds CONFIGURE_ARGS+=--disable-eds .endif +.if ${OSVERSION} < 600006 post-patch: .for po in da.po it.po zh_CN.po zh_TW.po @${REINPLACE_CMD} -e 's|%-|%|g' ${WRKSRC}/po/${po} .endfor +.endif .include <bsd.port.post.mk> diff --git a/x11/gnomepanel/Makefile b/x11/gnomepanel/Makefile index 1f6257711..064ce43d2 100644 --- a/x11/gnomepanel/Makefile +++ b/x11/gnomepanel/Makefile @@ -53,9 +53,11 @@ CONFIGURE_ARGS+=--enable-eds CONFIGURE_ARGS+=--disable-eds .endif +.if ${OSVERSION} < 600006 post-patch: .for po in da.po it.po zh_CN.po zh_TW.po @${REINPLACE_CMD} -e 's|%-|%|g' ${WRKSRC}/po/${po} .endfor +.endif .include <bsd.port.post.mk> |