mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
74 lines
1.9 KiB
Makefile
74 lines
1.9 KiB
Makefile
# New ports collection makefile for: kvirc
|
|
# Date created: 05 January 2004
|
|
# Whom: Michael Ranner
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kvirc
|
|
PORTVERSION= 3.2.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= irc kde
|
|
MASTER_SITES= ftp://ftp.kvirc.net/pub/%SUBDIR%/ \
|
|
ftp://ftp.kvirc.de/pub/%SUBDIR%/ \
|
|
ftp://mirror.dudcore.net/pub/%SUBDIR%/ \
|
|
ftp://ftp.kvirc.pragmaware.net/pub/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}/source
|
|
|
|
MAINTAINER= mranner@inode.at
|
|
COMMENT= IRC client for QT and KDE
|
|
|
|
USE_AUTOTOOLS= libtool:15
|
|
INSTALLS_SHLIB= yes
|
|
USE_BZIP2= yes
|
|
USE_KDELIBS_VER=3
|
|
USE_GMAKE= yes
|
|
CONFIGURE_TARGET=
|
|
PLIST_SUB= VER=${PORTVERSION}
|
|
|
|
MAN1= kvirc.1
|
|
|
|
OPTIONS= ARTS "Compile with arts support" on \
|
|
AUDIOFILE "Compile with libaudiofile support" on \
|
|
ESOUND "Compile with esound support" off \
|
|
GSM "Compile with gsm support" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_ARTS)
|
|
LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts
|
|
.else
|
|
CONFIGURE_ARGS+= --without-arts-support
|
|
.endif
|
|
|
|
.if defined(WITH_AUDIOFILE)
|
|
LIB_DEPENDS+= audiofile.0:${PORTSDIR}/audio/libaudiofile
|
|
.else
|
|
CONFIGURE_ARGS+= --without-af-support
|
|
.endif
|
|
|
|
.if defined(WITH_ESOUND)
|
|
LIB_DEPENDS+= esd.2:${PORTSDIR}/audio/esound
|
|
.else
|
|
CONFIGURE_ARGS+= --without-esd-support
|
|
.endif
|
|
|
|
.if defined(WITH_GSM)
|
|
LIB_DEPENDS+= gsm.1:${PORTSDIR}/audio/gsm
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gsm
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s,-lpthread,${PTHREAD_LIBS},g" \
|
|
-e "s,.SS_KDE_GENERAL_DIR/share/icons,${PREFIX}/share/icons," \
|
|
-e "s,.SS_KDE_GENERAL_DIR/share/applnk,${PREFIX}/share/applnk," \
|
|
-e "s,.SS_KDE_GENERAL_DIR/share/mimelnk,${PREFIX}/share/mimelnk," \
|
|
-e "s,kdeservicesdir=\".SS_KDE_SERVICESDIR\",kdeservicesdir=\"${PREFIX}/share/services\"," \
|
|
${WRKSRC}/configure
|
|
post-configure:
|
|
@${MV} ${WRKSRC}/data/protocols/irc.protocol ${WRKSRC}/data/protocols/kvirc.protocol
|
|
@${MV} ${WRKSRC}/data/protocols/irc6.protocol ${WRKSRC}/data/protocols/kvirc6.protocol
|
|
|
|
.include <bsd.port.post.mk>
|