diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-06-07 12:33:14 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-06-07 12:33:14 +0800 |
commit | f50208ceaffb4e79634f7475af42d8b83dfc937f (patch) | |
tree | 92fdad63d41676f7d11fc43bd43b1a78ee0c6248 | |
parent | ea8aec8f5a5793c969ca355745876d1dd4e3414c (diff) | |
download | marcuscom-ports-f50208ceaffb4e79634f7475af42d8b83dfc937f.tar marcuscom-ports-f50208ceaffb4e79634f7475af42d8b83dfc937f.tar.gz marcuscom-ports-f50208ceaffb4e79634f7475af42d8b83dfc937f.tar.bz2 marcuscom-ports-f50208ceaffb4e79634f7475af42d8b83dfc937f.tar.lz marcuscom-ports-f50208ceaffb4e79634f7475af42d8b83dfc937f.tar.xz marcuscom-ports-f50208ceaffb4e79634f7475af42d8b83dfc937f.tar.zst marcuscom-ports-f50208ceaffb4e79634f7475af42d8b83dfc937f.zip |
Do not let the symlink to overwrite a real binary by disable it. :-P Also,
change from -sf to -s to be more safer in future if we need symlink again.
Bump the PORTREVISION.
Before:
# ls -l /usr/local/bin | grep evolution
lrwxr-xr-x 1 root wheel 29 Jun 5 20:58 evolution@ -> /usr/local/bin/evolution-2.12
After:
# ls -l /usr/local/bin | grep evolution
-r-xr-xr-x 1 root wheel 415411 Jun 6 23:24 evolution*
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8998 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | mail/evolution/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 52a1e916d..2527ec0a8 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -3,11 +3,12 @@ # Whom: Ade Lovett <ade@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/mail/evolution/Makefile,v 1.139 2007/05/19 21:36:13 marcus Exp $ +# $MCom: ports/mail/evolution/Makefile,v 1.140 2007/06/05 17:40:20 ahze Exp $ # PORTNAME= evolution PORTVERSION= 2.11.3 +PORTREVISION= 1 CATEGORIES= mail gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} @@ -114,8 +115,8 @@ post-install: install-ldconfig-file ${MKDIR} ${PREFIX}/include/evolution-${EVO_VERSION}/composer ${INSTALL_DATA} ${WRKSRC}/composer/e-msg*.h ${PREFIX}/include/evolution-${EVO_VERSION}/composer ${INSTALL_DATA} ${WRKSRC}/composer/Editor.h ${PREFIX}/include/evolution-${EVO_VERSION}/composer - @${LN} -sf ${PREFIX}/bin/evolution-${EVO_VERSION} \ - ${PREFIX}/bin/evolution +# @${LN} -s ${PREFIX}/bin/evolution-${EVO_VERSION} \ +# ${PREFIX}/bin/evolution -@update-desktop-database .include <bsd.port.post.mk> |