382d276052
affordable and high-quality voice communications to people all over the world. This port needs linux_base-8, the default linux_base is v7.1. You should first replace the default linux_base with v8 with portupgrade: portupgrade -o emulators/linux_base-8 emulators/linux_base Then edit /usr/local/etc/pkgtools.conf, add the line emulators/linux_base' => 'emulators/linux_base-8', into "ALT_PKGDEP". This tells portupgrade to depend upon linux_base-8 instead upon linux_base-7.1 (where appropriate). This replacement shouldn't do any harm, I tested icc and the linux version of netscape navigator 4.8 with the new linux_base, and I haven't noticed bad behavior.
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# New ports collection makefile for: skype
|
|
# Date created: Jun 21. 2004
|
|
# Whom: netchild@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= skype
|
|
PORTVERSION= 0.90.0.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://download.skype.com/linux/
|
|
DISTNAME= skype_ver-0_90_0_3-staticQT
|
|
|
|
MAINTAINER= netchild@FreeBSD.org
|
|
COMMENT= P2P VoIP software
|
|
|
|
RUN_DEPENDS=${LINUXBASE}/lib/libc-2.3.2.so:${PORTSDIR}/emulators/linux_base-8 \
|
|
${LINUXBASE}/usr/lib/libfreetype.so.6:${PORTSDIR}/x11-fonts/linux-fontconfig \
|
|
${LINUXBASE}/usr/lib/libexpat.so.0:${PORTSDIR}/textproc/linux-expat \
|
|
${LINUXBASE}/usr/X11R6/lib/libXrender.so.1:${PORTSDIR}/x11/linux-XFree86-libs
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
WANT_GNOME= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${HAVE_GNOME:Mgnomehier} != ""
|
|
PLIST_SUB+= GNOME=""
|
|
.else
|
|
PLIST_SUB+= GNOME="@comment "
|
|
.endif
|
|
|
|
do-build:
|
|
${BRANDELF} -t Linux ${WRKSRC}/skype
|
|
|
|
do-install:
|
|
${INSTALL} ${WRKSRC}/skype ${PREFIX}/bin/
|
|
.if ${HAVE_GNOME:Mgnomehier} != ""
|
|
${INSTALL_DATA} ${WRKSRC}/skype.desktop ${PREFIX}/share/gnome/applications/
|
|
.endif
|
|
${MKDIR} ${DATADIR}/icons
|
|
${INSTALL_DATA} ${WRKSRC}/icons/* ${DATADIR}/icons/
|
|
${INSTALL_DATA} ${WRKSRC}/call_in.wav ${DATADIR}/
|
|
|
|
.include <bsd.port.post.mk>
|