freebsd-ports/audio/teamspeak_client/Makefile
Boris Samorodov 0263b9d868 Welcome to the new linux ports infrastructure which allows using
both current (fc4) and future linux (f8) distributions at one
ports tree.

The patch contains full changes to ports/Mk files and all ports involved.
But only infrastructure is changed. The resulting packages are the same as
before. Hence no need to bump PORTREVISIONs.

The idea was taken from bsd.gnome.mk and others.

More than 130 ports are switched to follow a new linux infrastructure
introduced by changes to bsd.port.mk, bsd.linux-rpm.mk and a new
bsd.linux-apps.mk.

Thanks for all who was involved and helped me with this work.
And help from Alexander Leidinger was incredible.

Other changes are coming. Stay tuned!

PR:		ports/132510
Submitted by:	bsam (me)
Exp-run by:	portmgr (pav)
2009-03-19 17:28:51 +00:00

74 lines
1.9 KiB
Makefile

# New ports collection makefile for: teamspeak
# Date created: 22 January 2003
# Whom: Daniel O'Connor
#
# $FreeBSD$
#
PORTNAME= teamspeak_client
PORTVERSION= 2.0.32
PORTREVISION= 2
CATEGORIES= audio
MASTER_SITES= ftp://ftp.freenet.de/pub/4players/teamspeak.org/releases/:main \
http://www.gsoft.com.au/~doconnor/:misc
DISTNAME= ts2_client_rc2_2032
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:main setduplexfake.so.gz:misc
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= ports@FreeBSD.org
COMMENT= Client side of a group voice chat system
ONLY_FOR_ARCHS= i386 amd64
USE_BZIP2= yes
USE_LINUX= yes
USE_LINUX_APPS= jpeg xorglibs
NO_BUILD= yes
TSIMG= ${WRKSRC}/setup.data/image
TSHOME= ${PREFIX}/lib/teamspeak_client
SUB_FILES= TeamSpeak
SUB_LIST= TSHOME="${TSHOME}"
PORTDOCS= *
DESKTOP_ENTRIES="TeamSpeak" \
"Voice-chat with people" \
"${TSHOME}/icon.xpm" \
"TeamSpeak" \
"Application;Audio;Network;" \
false
post-extract:
@${MKDIR} ${WRKDIR}/programs
@${GZIP_CMD} -dc ${DISTDIR}/setduplexfake.so.gz >${WRKDIR}/programs/setduplexfake.so
post-patch:
@${RM} -f ${TSIMG}/TeamSpeak
@${MKDIR} ${WRKDIR}/doc
.for f in Readme.txt clicense.txt manual
@${MV} -f ${TSIMG}/${f} ${WRKDIR}/doc
.endfor
.for f in TeamSpeak.bin lib*
@${MV} ${TSIMG}/${f} ${WRKDIR}/programs
.endfor
@${MKDIR} ${WRKDIR}/programs/client_sdk
.for f in lib* tsControl
@${MV} ${TSIMG}/client_sdk/${f} ${WRKDIR}/programs/client_sdk
.endfor
do-install:
cd ${TSIMG} && \
${FIND} * -type d -exec ${MKDIR} "${TSHOME}/{}" \; && \
${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${TSHOME}/{}" \;
cd ${WRKDIR}/programs && \
${FIND} * -type d -exec ${MKDIR} "${TSHOME}/{}" \; && \
${FIND} * -type f -exec ${INSTALL_PROGRAM} "{}" "${TSHOME}/{}" \;
${INSTALL_SCRIPT} ${WRKDIR}/TeamSpeak ${PREFIX}/bin
.if !defined(NOPORTDOCS)
cd ${WRKDIR}/doc && \
${FIND} * -type d -exec ${MKDIR} "${DOCSDIR}/{}" \; && \
${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DOCSDIR}/{}" \;
.endif
.include <bsd.port.mk>