freebsd-ports/net/silc-client/Makefile
Rong-En Fan 741aa71483 Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
2008-08-21 06:18:49 +00:00

95 lines
3.1 KiB
Makefile

# New ports collection makefile for: silc client
# Date created: Thu Nov 8 01:50:05 BRST 2001
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= silc
PORTVERSION= 1.1.4
CATEGORIES= net ipv6 security
MASTER_SITES= http://www.silcnet.org/download/%SUBDIR%/ \
http://ftp.silcnet.org/%SUBDIR%/ \
http://www.nic.funet.fi/pub/mirrors/ftp.silcnet.org/silc/%SUBDIR%/ \
http://www.fi.silcnet.org/download/%SUBDIR%/ \
http://munitions.vipul.net/software/mirrors/silc/%SUBDIR%/ \
http://www.pl.silcnet.org/download/%SUBDIR%/ \
http://ftp.sunet.se/pub/network/silc/%SUBDIR%/ \
ftp://ftp.silcnet.org/silc/%SUBDIR%/ \
ftp://ftp.au.silcnet.org/pub/silcnet/%SUBDIR%/ \
ftp://ftp.funet.fi/pub/mirrors/ftp.silcnet.org/silc/%SUBDIR%/ \
ftp://ftp.pl.silcnet.org/pub/silc/%SUBDIR%/ \
ftp://ftp.sunet.se/pub/network/silc/%SUBDIR%/
MASTER_SITE_SUBDIR= client/sources
PKGNAMESUFFIX= ${IRSSI_PLUGIN}-client
DISTNAME= ${PORTNAME}-client-${PORTVERSION}
MAINTAINER?= wxs@FreeBSD.org
COMMENT= Secure Internet Live Conferencing (SILC) network client
USE_BZIP2= yes
GNU_CONFIGURE= yes
USE_GNOME= glib12
USE_GMAKE= yes
CONFIGURE_ARGS= --docdir=${DOCSDIR} \
--with-perl=no \
--without-libtoolfix
OPTIONS= PTHREADS "Enable pthreads support" off \
IPV6 "Enable IPv6 support" on \
OPTIMIZED_ASM "Use assembler optimizations (i386 only)" on
.ifdef(IRSSI_PLUGIN)
CONFIGURE_ARGS+= --with-silc-plugin=${PREFIX}/lib/irssi \
--without-silc-includes
CFLAGS+= -fPIC
RUN_DEPENDS= irssi:${PORTSDIR}/irc/irssi
# We don't want to install the man page and configuration file for this case
# Also, the port makes an extra symlink which causes IRSSI to load the plugin
# twice. This causes weird behavior such as /me output showing up twice.
EXTRA_PATCHES= ${FILESDIR}/extra-patch-apps__irssi__Makefile.in \
${FILESDIR}/extra-patch-apps__irssi__src__fe-common__Makefile.in
.else
MAN1= silc.1
.endif
post-patch:
# install neither documentation nor silc server, we have ports for those
@${REINPLACE_CMD} -e 's/-D_THREAD_SAFE//' ${WRKSRC}/${CONFIGURE_SCRIPT}
@${REINPLACE_CMD} -e 's/docdir/DOCDIR/' ${WRKSRC}/doc/Makefile.in
@${REINPLACE_CMD} -e 's/^install-data-am: install-docDATA$$/install-data-am:/' \
${WRKSRC}/apps/irssi/docs/Makefile.in
@${REINPLACE_CMD} -e 's/^install-data-am: install-moduleLTLIBRARIES$$/install-data-am:/' \
${WRKSRC}/apps/irssi/src/perl/Makefile.in
@${REINPLACE_CMD} -e 's/--libtool-enable-shared//' \
${WRKSRC}/lib/silccrypt/Makefile.in
@${REINPLACE_CMD} -e 's/^MODULESDIR="$$silc_prefix/MODULESDIR="$$silc_prefix\/share\/silc/' ${WRKSRC}/configure
post-install:
.ifndef(IRSSI_PLUGIN)
@if [ ! -f ${PREFIX}/etc/silc.conf ]; then \
${CP} -p ${PREFIX}/etc/silc.conf.sample ${PREFIX}/etc/silc.conf ; \
fi
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
WITHOUT_OPTIMIZED_ASM= yes
.endif
.if defined(WITHOUT_IPV6)
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if defined(WITHOUT_OPTIMIZED_ASM)
CONFIGURE_ARGS+= --disable-asm
.endif
.if defined(WITH_PTHREADS)
CONFIGURE_ENV+= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS}"
.else
CONFIGURE_ARGS+= --without-pthreads
.endif
.include <bsd.port.post.mk>