mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
b754d93edd
This version is basically a completely new program (modules, etc), and it fixes every issue I'd ever had with Licq (for instance). You'll find tons of new features here. Submitted by: Alexander N. Kabaev <kabaev@mail.ru>
59 lines
1.8 KiB
Makefile
59 lines
1.8 KiB
Makefile
# New ports collection makefile for: licq
|
|
# Version required: 0.75.3a
|
|
# Date created: 2 July 1998
|
|
# Whom: Brian Feldman
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= licq-0.75.3a
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.wibble.net/pub/licq/srcs/ \
|
|
ftp://licq.darkorb.net/srcs/ \
|
|
ftp://ftp.fanfic.org/pub/licq/srcs/ \
|
|
ftp://ftp.inter-i.uni-mainz.de/pub/licq/srcs/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DATAFILES}
|
|
|
|
MAINTAINER= green@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= aclocal:${PORTSDIR}/devel/automake
|
|
|
|
USE_QT2= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_AUTOCONF= yes
|
|
USE_NEWGCC= yes
|
|
USE_PERL5= yes
|
|
|
|
DATANAME= licq-data-1.5
|
|
DATAFILES= ${DATANAME}${EXTRACT_SUFX}
|
|
DATADIR= ${WRKDIR}/${DATANAME}
|
|
|
|
post-configure:
|
|
@(cd ${WRKSRC}/plugins/qt-gui; ./configure --prefix=${PREFIX})
|
|
|
|
post-build:
|
|
@(cd ${WRKSRC}/plugins/qt-gui;\
|
|
${SETENV} ${MAKE_ENV} \
|
|
${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
|
|
|
post-install:
|
|
strip ${PREFIX}/bin/licq
|
|
cd ${WRKSRC}/plugins/qt-gui;\
|
|
${SETENV} ${MAKE_ENV} \
|
|
${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}
|
|
strip ${PREFIX}/lib/licq/licq_qt-gui.so
|
|
${MKDIR} ${PREFIX}/share/licq/contrib
|
|
${INSTALL_SCRIPT} ${DATADIR}/contrib/licq.* ${PREFIX}/share/licq/contrib
|
|
${INSTALL_SCRIPT} ${DATADIR}/contrib/*.sh ${PREFIX}/share/licq/contrib
|
|
${MKDIR} ${PREFIX}/share/licq/sounds/icq
|
|
${INSTALL_DATA} ${DATADIR}/sounds/*.wav ${PREFIX}/share/licq/sounds
|
|
${INSTALL_DATA} ${DATADIR}/sounds/icq/*.wav ${PREFIX}/share/licq/sounds/icq
|
|
${MKDIR} ${PREFIX}/share/licq/translations
|
|
${INSTALL_DATA} ${DATADIR}/translations/* ${PREFIX}/share/licq/translations
|
|
${MKDIR} ${PREFIX}/share/licq/qt-gui
|
|
cd ${DATADIR}/qt-gui && ${TAR} -chf - * | \
|
|
${TAR} -xf - -C ${PREFIX}/share/licq/qt-gui
|
|
|
|
.include <bsd.port.mk>
|