freebsd-ports/devel/silc-toolkit/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

93 lines
2.7 KiB
Makefile

# New ports collection makefile for: silc-toolkit
# Date created: 2003.12.15
# Whom: Evgueni V. Gavrilov <aquatique@rusunix.org>
#
# $FreeBSD$
#
PORTNAME= silc
PORTVERSION= 1.1.7
CATEGORIES= devel ipv6 net 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= toolkit/sources
PKGNAMESUFFIX= -toolkit
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
MAINTAINER= nevans@talkpoint.com
COMMENT= Secure Internet Live Conferencing (SILC) network toolkit
USE_AUTOTOOLS= libtool:15
USE_BZIP2= yes
USE_PERL5= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ARGS= --with-etcdir=${PREFIX}/etc/${PORTNAME}${PKGNAMESUFFIX} \
--with-simdir=${PREFIX}/lib/silcsim \
--with-helpdir=${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX}/help \
--includedir=${PREFIX}/include/silc \
--with-docdir=${DOCSDIR}${PKGNAMESUFFIX} \
--enable-shared --without-libtoolfix
CONFIGURE_ENV= CFLAGS+="${CFLAGS}" \
CPPFLAGS+="${CPPFLAGS}"
USE_LDCONFIG= yes
.if defined(NOPORTDOCS)
PLIST_SUB+= PORTDOCS="@comment "
.endif
.ifndef(WITH_PTHREADS)
CONFIGURE_ARGS+= --without-pthreads
.else
CONFIGURE_ENV+= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS}"
.endif
pre-everything::
.ifndef(WITHOUT_IPV6)
@${ECHO_MSG} '===> Define WITHOUT_IPV6 to disable IPv6 support'
.endif
.ifndef(WITHOUT_OPTIMIZED_ASM)
@${ECHO_MSG} '===> Define WITHOUT_OPTIMIZED_ASM to disable assembler optimizations'
.endif
.ifndef(WITH_PTHREADS)
@${ECHO_MSG} '===> Define WITH_PTHREADS to enable pthreads support'
.endif
@${ECHO_MSG}
.ifndef(WITH_OPTIMIZED_CFLAGS)
@${ECHO_MSG} '===> Define WITH_OPTIMIZED_CFLAGS to enable compilation optimizations'
@${ECHO_MSG} '===> which is known to break some platforms (e.g., alpha)'
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
WITHOUT_OPTIMIZED_ASM= yes
.endif
.if !defined(WITHOUT_IPV6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
.ifdef(WITHOUT_OPTIMIZED_ASM)
CONFIGURE_ARGS+= --disable-asm
.endif
post-patch:
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -E -e 's|^(install-data-hook:).*|\1|' \
${WRKSRC}/doc/Makefile.in ${WRKSRC}/lib/Makefile.in
.endif
@${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|g' \
${WRKSRC}/lib/Makefile.in
.include <bsd.port.post.mk>