diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-02-20 10:41:54 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-02-20 10:41:54 +0800 |
commit | 4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f (patch) | |
tree | 408f859e7574f1be90afb41a80868b5c79f29c86 /x11/gnome-panel | |
parent | 1d3bb1052f36b2243c6405bf09f39e0498ba2b64 (diff) | |
download | marcuscom-ports-4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f.tar marcuscom-ports-4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f.tar.gz marcuscom-ports-4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f.tar.bz2 marcuscom-ports-4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f.tar.lz marcuscom-ports-4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f.tar.xz marcuscom-ports-4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f.tar.zst marcuscom-ports-4a7abcd1915f6bd7ccdde45ff387ecbcc6ccad0f.zip |
Fix the path of two *.desktop when it complains about can't find them in
the logout at CLI like this.
===============================================
Unable to open desktop file /usr/X11R6/share/gnome/nautilus.desktop for panel la
uncher: Error reading file '/usr/X11R6/share/gnome/nautilus.desktop': File not f
ound
Unable to open desktop file /usr/X11R6/share/gnome/gnome-terminal.desktop for pa
nel launcher: Error reading file '/usr/X11R6/share/gnome/gnome-terminal.desktop'
: File not found
===============================================
After fix it, you will see two new icons appear in the side of menu.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3681 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnome-panel')
-rw-r--r-- | x11/gnome-panel/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/gnome-panel/Makefile b/x11/gnome-panel/Makefile index 8cad29002..53b1309c0 100644 --- a/x11/gnome-panel/Makefile +++ b/x11/gnome-panel/Makefile @@ -7,6 +7,7 @@ PORTNAME= gnomepanel PORTVERSION= 2.9.91 +PORTREVISION= 1 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/gnome-panel/2.9 @@ -53,8 +54,10 @@ CONFIGURE_ARGS+=--enable-eds CONFIGURE_ARGS+=--disable-eds .endif -.if ${OSVERSION} < 600006 post-patch: + @${REINPLACE_CMD} -e 's|@DATADIR@/|@DATADIR@/applications/|g' \ + ${WRKSRC}/gnome-panel/panel-default-setup.entries.in +.if ${OSVERSION} < 600006 .for po in da.po it.po zh_CN.po zh_TW.po @${REINPLACE_CMD} -e 's|%-|%|g' ${WRKSRC}/po/${po} .endfor |