312327857a
- Fix packing list. - Fetch distfile only if it doesn't already exist. PR: ports/104825 Submitted by: Frank W. Josellis <frank@dynamical-systems.org>
85 lines
3.1 KiB
Makefile
85 lines
3.1 KiB
Makefile
# New ports collection makefile for: google-earth
|
|
# Date created: Jun 13 2006
|
|
# Whom: Florent Thoumie <flz@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= google-earth
|
|
PORTVERSION= 4.0.2414
|
|
CATEGORIES= astro deskutils
|
|
MASTER_SITES= http://dl.google.com/earth/GE${PORTVERSION:C/\..*//g}/
|
|
DISTFILES= ${TARGET_DISTFILE}
|
|
EXTRACT_ONLY= # none
|
|
|
|
MAINTAINER= flz@FreeBSD.org
|
|
COMMENT= Explore, Search and Discover
|
|
|
|
BUILD_DEPENDS= unmakeself:${PORTSDIR}/archivers/unmakeself
|
|
RUN_DEPENDS= update-mime-database:${PORTSDIR}/misc/shared-mime-info
|
|
|
|
# Current version of Google Earth might not be vulnerable anymore.
|
|
# Use NO_IGNORE=yes and DISABLE_VULNERABILITIES=yes if you're using portaudit
|
|
# to bypass the security checks.
|
|
FORBIDDEN= Buffer-overflow vulnerability: http://vuxml.FreeBSD.org/5c9a2769-5ade-11db-a5ae-00508d6a62df.html
|
|
|
|
RESTRICTED= Not sure about redistribution rights
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/\..*//g}/
|
|
|
|
USE_LINUX= yes
|
|
USE_GNOME= desktopfileutils
|
|
|
|
REAL_DISTFILE= GoogleEarthLinux.bin
|
|
TARGET_DISTFILE= GoogleEarthLinux-${PORTVERSION}.bin
|
|
|
|
FETCH_CMD= /usr/bin/fetch -ARm
|
|
FETCH_BEFORE_ARGS= -o ${TARGET_DISTFILE}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
UNMAKESELF= ${LOCALBASE}/bin/unmakeself
|
|
|
|
.if ${X_WINDOW_SYSTEM:L} != xfree86-3
|
|
.if defined(WITH_NVIDIA_GL)
|
|
RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver
|
|
.else
|
|
RUN_DEPENDS+= ${LINUXBASE}/usr/X11R6/lib/libGL.so.1:${PORTSDIR}/graphics/linux_dri
|
|
.endif
|
|
.else
|
|
RUN_DEPENDS+= ${LINUXBASE}/lib/libGL.so.1:${PORTSDIR}/graphics/linux_glx
|
|
.endif
|
|
|
|
do-fetch:
|
|
@if [ ! -f ${DISTDIR}/${TARGET_DISTFILE} ]; then \
|
|
cd ${DISTDIR}; \
|
|
${FETCH_CMD} ${FETCH_BEFORE_ARGS} -1 ${MASTER_SITES:S|$|${REAL_DISTFILE}|g} ${FETCH_AFTER_ARGS}; \
|
|
fi
|
|
|
|
do-build:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
|
|
@cd ${WRKSRC} && ${UNMAKESELF} ${DISTFILES} && ${RM} -f ${DISTFILES}
|
|
@cd ${WRKSRC} && ${TAR} xf googleearth-data.tar && ${RM} -f googleearth-data.tar
|
|
@cd ${WRKSRC} && ${TAR} xf googleearth-linux-x86.tar && ${RM} -f googleearth-linux-x86.tar
|
|
@${REINPLACE_CMD} -i "" -e 's|^# Set the home.*|GOOGLEEARTH_DATA_PATH=${DATADIR}|' ${WRKSRC}/bin/googleearth
|
|
@${REINPLACE_CMD} -i "" -e "s|^# Let's boogie.*|rm -f \$${HOME}/.googleearth/instance-running-lock|" ${WRKSRC}/bin/googleearth
|
|
@${REINPLACE_CMD} -i "" -e 's/^TMPPATH.*/exit 0/' ${WRKSRC}/postinstall.sh
|
|
@${REINPLACE_CMD} -i "" -e 's|\"\$$SETUP_INSTALLPATH/|\"${WRKSRC}/|' ${WRKSRC}/postinstall.sh
|
|
@${REINPLACE_CMD} -i "" -e 's|\$$SETUP_INSTALLPATH/googleearth |${PREFIX}/bin/googleearth |' ${WRKSRC}/postinstall.sh
|
|
@${SETENV} SETUP_INSTALLPATH=${DATADIR} ${WRKSRC}/postinstall.sh
|
|
@cd ${WRKSRC} && ${RM} -rf setup.* preuninstall.sh postinstall.sh
|
|
@${CHOWN} -R ${SHAREDOWN}:${SHAREDGRP} ${WRKSRC}
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/googleearth-mimetypes.xml ${PREFIX}/share/mime/packages/
|
|
${INSTALL_DATA} ${WRKSRC}/googleearth.desktop ${PREFIX}/share/applications/
|
|
${CP} -r ${WRKSRC}/* ${DATADIR}
|
|
@${RM} -f ${DATADIR}/googleearth-mimetypes.xml
|
|
@${RM} -f ${DATADIR}/googleearth.desktop
|
|
${LN} -sf ${DATADIR}/bin/googleearth ${PREFIX}/bin/
|
|
-@update-mime-database ${PREFIX}/share/mime
|
|
-@update-desktop-database
|
|
|
|
.include <bsd.port.post.mk>
|