freebsd-ports/net-p2p/amule-devel/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

139 lines
3.4 KiB
Makefile

# New ports collection makefile for: amule2
# Date created: Wed Nov 05 09:30:00 UTC 2003
# Whom: Ganael LAPLANCHE <ganael.laplanche@martymac.com>
#
# $FreeBSD$
#
PORTNAME= aMule
PORTVERSION= 2.1.3
PORTREVISION= 7
CATEGORIES= net-p2p
MASTER_SITES= SF/amule
PATCH_SITES= http://cvs.pld-linux.org/cgi-bin/cvsweb/SOURCES/
PATCHFILES= aMule-wx.patch?rev=1.2
PATCH_DIST_STRIP= -p1
MAINTAINER= boris@tagnet.ru
COMMENT= The all-platform eMule p2p client
LATEST_LINK= aMule2
CONFLICTS= aMule-1.* aMule-devel-[0-9]* ed2k-hash-*
USE_BZIP2= yes
USE_GNOME= gnomehier gnomehack gnomeprefix
USE_GMAKE= yes
USE_WX= 2.8
WX_CONF_ARGS= absolute
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-debug \
--without-included-gettext \
--with-libintl-prefix=${LOCALBASE} \
--with-libiconv-prefix=${LOCALBASE} \
--enable-embedded_crypto
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}"
OPTIONS= OPTIMIZE "Build with optimization" on \
ED2K "Compile aMule ed2k links handler" on \
AMULECMD "Compile aMule command line client" on \
AMULEWEBSRV "Compile aMule WebServer" on \
CAS "Compile C aMule Statistics (+GUI)" on \
ALC "Compile aMule Link Creator (+GUI)" on \
AMULEDAEMON "Compile aMule daemon version - EXPERIMENTAL" off \
WXUNICODE "Enable Unicode support" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
.else
CONFIGURE_ARGS+= --disable-nls
.endif
# Configure options
.if !defined(WITHOUT_OPTIMIZE)
CONFIGURE_ARGS+= --enable-optimize
.else
CONFIGURE_ARGS+= --disable-optimize
.endif
.if !defined(WITHOUT_ED2K)
CONFIGURE_ARGS+= --enable-ed2k
PLIST_SUB+= PL_ED2K=""
.else
CONFIGURE_ARGS+= --disable-ed2k
PLIST_SUB+= PL_ED2K="@comment "
.endif
.if !defined(WITHOUT_AMULECMD)
CONFIGURE_ARGS+= --enable-amulecmd
PLIST_SUB+= PL_AMULECMD=""
.else
CONFIGURE_ARGS+= --disable-amulecmd
PLIST_SUB+= PL_AMULECMD="@comment "
.endif
.if !defined(WITHOUT_AMULEWEBSRV)
CONFIGURE_ARGS+= --enable-webserver
PLIST_SUB+= PL_AMULEWEBSRV=""
.else
CONFIGURE_ARGS+= --disable-webserver
PLIST_SUB+= PL_AMULEWEBSRV="@comment "
.endif
.if !defined(WITHOUT_CAS)
CONFIGURE_ARGS+= --enable-cas --enable-wxcas
PLIST_SUB+= PL_CAS=""
.else
CONFIGURE_ARGS+= --disable-cas --disable-wxcas
PLIST_SUB+= PL_CAS="@comment "
.endif
.if !defined(WITHOUT_ALC)
CONFIGURE_ARGS+= --enable-alc --enable-alcc
PLIST_SUB+= PL_ALC=""
.else
CONFIGURE_ARGS+= --disable-alc --disable-alcc
PLIST_SUB+= PL_ALC="@comment "
.endif
.if defined(WITH_AMULEDAEMON)
CONFIGURE_ARGS+= --enable-amule-daemon --enable-amule-gui
PLIST_SUB+= PL_AMULEDAEMON=""
USE_RC_SUBR= amuled.sh
.else
CONFIGURE_ARGS+= --disable-amule-daemon --disable-amule-gui
PLIST_SUB+= PL_AMULEDAEMON="@comment "
.endif
.if !defined(WITHOUT_WXUNICODE)
WX_UNICODE=yes
.endif
# Man pages management
.include "Makefile.man"
post-install:
# fr manpages are still incomplete and can't be managed
# by MANLANG. Will be done when pages are complete.
.if defined(WITH_AMULECMD)
${GZIP_CMD} ${PREFIX}/man/fr/man1/amulecmd.1
.endif
.if defined(WITH_AMULEWEBSRV)
${GZIP_CMD} ${PREFIX}/man/fr/man1/amuleweb.1
.endif
${GZIP_CMD} ${PREFIX}/man/fr/man1/amule.1
.if defined(WITH_AMULEDAEMON)
${GZIP_CMD} ${PREFIX}/man/fr/man1/amuled.1
.endif
.if defined(WITH_ED2K)
${GZIP_CMD} ${PREFIX}/man/fr/man1/ed2k.1
.endif
.if defined(WITH_ALC)
${GZIP_CMD} ${PREFIX}/man/fr/man1/alcc.1
.endif
.include <bsd.port.post.mk>