diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
commit | 1b3327761c8bcb98d89b529daeae9600844b4361 (patch) | |
tree | 0be1cd4eb5fec6661da4798906b0d9bd522e794f /www/firefox-remote/Makefile | |
parent | a65aedbb59fd9dfb33a4633611777da99ec4dcd5 (diff) | |
download | marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.gz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.bz2 marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.lz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.xz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.zst marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.zip |
Clean out MarcusCom after the big import into ports.
Next stop, GNOME 2.17.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7799 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/firefox-remote/Makefile')
-rw-r--r-- | www/firefox-remote/Makefile | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/www/firefox-remote/Makefile b/www/firefox-remote/Makefile deleted file mode 100644 index e580beba8..000000000 --- a/www/firefox-remote/Makefile +++ /dev/null @@ -1,77 +0,0 @@ -# New ports collection makefile for: firefox-remote -# Date created: 13 May 2004 -# Whom: Franz Klammer <klammer@webonaut.com> -# -# $FreeBSD$ -# - -PORTNAME= firefox -PORTVERSION= 20040803 -PORTREVISION= 1 -CATEGORIES= www -MASTER_SITES= http://www.webonaut.com/distfiles/${PORTNAME}${PKGNAMESUFFIX}/ -PKGNAMESUFFIX= -remote -DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} - -MAINTAINER= klammer@webonaut.com -COMMENT= Wrapper scripts for firefox web browser - -USE_BZIP2= yes - -UTF8_HACK= no -FIREFOX_REMOTE= ${PORTNAME}${PKGNAMESUFFIX} -THUNDERBIRD_REMOTE= thunderbird${PKGNAMESUFFIX} - -OPTIONS=UTF8_LOCALE "Use UTF8 locale (read Makefile for details)" off \ - MENU_FIREFOX "Add menu entry for firefox" off \ - MENU_THUNDERBIRD "Add menu entry for thunderbird" off - -.include <bsd.port.pre.mk> - -# firefox/thunderbird can't display unicode filenames with special -# characters like umlaute in german correctly if a ISO-locale is set. -# when enabled the remote scripts try to switch to the UTF8-locale if -# available (e.g. de_DE.UTF8 instead of de_DE.ISO8859-xx) -.if defined(WITH_UTF8_LOCALE) -UTF8_HACK= yes -.endif - -.if defined(WITH_MENU_FIREFOX) -PLIST_SUB+= MENU_FIREFOX="" -.else -PLIST_SUB+= MENU_FIREFOX="@comment " -.endif - -.if defined(WITH_MENU_THUNDERBIRD) -PLIST_SUB+= MENU_THUNDERBIRD="" -.else -PLIST_SUB+= MENU_THUNDERBIRD="@comment " -.endif - -do-build: - @${REINPLACE_CMD} -e 's|@X11BASE@|${PREFIX}|g' \ - ${WRKSRC}/${FIREFOX_REMOTE} - @${REINPLACE_CMD} -e 's|@UTF8@|${UTF8_HACK}|g' \ - ${WRKSRC}/${FIREFOX_REMOTE} - -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/${FIREFOX_REMOTE} \ - ${PREFIX}/bin/${FIREFOX_REMOTE} - ${RM} -f ${PREFIX}/bin/${THUNDERBIRD_REMOTE} - ${LN} -s ${PREFIX}/bin/${FIREFOX_REMOTE} \ - ${PREFIX}/bin/${THUNDERBIRD_REMOTE} -.if defined (WITH_MENU_FIREFOX) - ${INSTALL_DATA} ${WRKSRC}/mozilla_firefox.desktop \ - ${X11BASE}/share/applications/ - ${INSTALL_DATA} ${WRKSRC}/mozilla_firefox.png \ - ${X11BASE}/share/pixmaps/ -.endif -.if defined (WITH_MENU_THUNDERBIRD) - ${INSTALL_DATA} ${WRKSRC}/mozilla_thunderbird.desktop \ - ${X11BASE}/share/applications/ - ${INSTALL_DATA} ${WRKSRC}/mozilla_thunderbird.png \ - ${X11BASE}/share/pixmaps/ -.endif - ${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> |