25.10.2005 Skype for Linux version 1.2.0.18 * bugfix: fixed a bug in networking code that made Skype vulnerable to remotely induced crash (Skype Security Bulletin SKYPE-SB/2005-003) 22.09.2005 Skype for Linux version 1.2.0.17 * change: New multilingual EULA in Help.Licence * change: Call quality improvements * change: "Find in chat" engine rewritten * change: Refreshing icons on start tab * change: Cleaned up RPM packaging * bugfix: Menu items not disabled when going offline * bugfix: Crash when a new message was received * bugfix: Crash when password changed * bugfix: Crash when chat search string contained "+331234567" * bugfix: Crash when chat search string contained emoticon * bugfix: Auth requests from previous user being shown * bugfix: Crash while history was loading * bugfix: Find crash when searching for empty text * bugfix: Auth request remaining on event panel after authorization Only minimally startup tested as there is a font issue (seen in both old and new versions) on my NetBSD-3 xorg system...
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2005/11/02 20:11:47 abs Exp $
|
|
#
|
|
|
|
DISTNAME= skype_staticQT-1.2.0.18
|
|
PKGNAME= ${DISTNAME:S/_staticQT//}
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://download.skype.com/linux/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://www.skype.com/
|
|
COMMENT= P2P VoIP software
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} != "Linux"
|
|
DEPENDS+= suse_base>=9.1:../../emulators/suse91_base
|
|
DEPENDS+= suse_glx>=9.1:../../emulators/suse91_glx
|
|
DEPENDS+= suse_fontconfig>=9.1:../../emulators/suse91_fontconfig
|
|
DEPENDS+= suse_freetype2>=9.1:../../emulators/suse91_freetype2
|
|
DEPENDS+= suse_x11>=9.1:../../emulators/suse91_x11
|
|
.include "../../emulators/suse_linux/Makefile.application"
|
|
.else
|
|
.include "../../mk/x11.buildlink3.mk"
|
|
.endif
|
|
|
|
ONLY_FOR_PLATFORM= *-*-i386
|
|
|
|
NO_CONFIGURE= yes
|
|
CHECK_SHLIBS= no
|
|
USE_DIRS+= xdg-1.1
|
|
WRKSRC= ${WRKDIR}/${PKGNAME}
|
|
|
|
RESTRICTED= "Redistribution not allowed yet."
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
LICENSE= skype-license
|
|
|
|
DATADIR= ${PREFIX}/share/skype
|
|
DOCDIR= ${PREFIX}/share/doc/skype
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-build:
|
|
@${ECHO} "#!${SH}" > ${WRKSRC}/skype.sh
|
|
@${ECHO} 'cd ${DATADIR} && exec ./skype $$@' >> ${WRKSRC}/skype.sh
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/skype.sh ${PREFIX}/bin/skype
|
|
${INSTALL_DATA} ${WRKSRC}/skype.desktop ${PREFIX}/share/applications
|
|
${INSTALL_DATA_DIR} ${DATADIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/skype ${DATADIR}
|
|
cd ${WRKSRC} && ${PAX} -rwppm icons lang sound ${DATADIR}
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|