1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-01 10:59:55 +00:00
freebsd-ports/mail/faces/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

113 lines
3.5 KiB
Makefile

# New ports collection makefile for: faces-1.6.1
# Date created: 09 December 96
# Whom: Lars Koeller <Lars_Koeller@odie.physik2.uni-rostock.de>
# Andreas Klemm <andreas@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= faces
PORTVERSION= 1.7.7
PORTREVISION= 9
CATEGORIES= mail
MASTER_SITES= SF
MAINTAINER= wahjava@gmail.com
COMMENT= Visual mail, user and print face server
OPTIONS= X11 "X11/GTK support" on \
NAS "NAS audio support" off \
RPLAY "rplay audio support" off \
SOX "Sox audio support" off
WANT_GNOME= yes
USE_LDCONFIG= yes
MAN1= compface.1
MAN3= compface.3
MLINKS= compface.1 uncompface.1 \
compface.3 uncompface.3
PORTDOCS= README
.include <bsd.port.pre.mk>
.if defined(WITHOUT_X11)
PLIST_SUB+= X11="@comment "
WITH_AUDIO= # none
.else # with X11
PLIST_SUB+= X11=""
USE_GNOME= gnomehack gtk12
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I../compface -I${LOCALBASE}/include" \
LDFLAGS="-L../compface -L${LOCALBASE}/lib"
CONFIGURE_ARGS= --enable-imap --enable-pop \
--enable-name-unknown --with-spooldir=/var/mail \
--with-facedir=${DATADIR}
MAN1+= faces.1
.endif
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
.endif
.ifdef WITH_NAS
CONFIGURE_ARGS+= --enable-audio --with-audio-cmd=${LOCALBASE}/bin/auplay
RUN_DEPENDS= auplay:${PORTSDIR}/audio/nas
.elifdef WITH_SOX
CONFIGURE_ARGS+= --enable-audio --with-audio-cmd=${LOCALBASE}/bin/play
RUN_DEPENDS= play:${PORTSDIR}/audio/sox
.elifdef WITH_RPLAY
CONFIGURE_ARGS+= --enable-audio --with-audio-cmd=${LOCALBASE}/bin/rplay
RUN_DEPENDS= rplay:${PORTSDIR}/audio/rplay
.endif
# I have no better idea up to now
# Install the working Makefile for compface from the old faces port
# This was much less complex an builds the shared libs, too
post-patch:
@${REINPLACE_CMD} -e "s%/usr/local/faces%${DATADIR}%g ; \
s%/var/spool/mail%/var/mail%g" ${WRKSRC}/faces/faces.man
@${LN} -sf ${WRKSRC}/faces/faces.man ${WRKSRC}/faces/faces.1
.ifdef WITH_NAS
@${REINPLACE_CMD} -e "s%rplay%auplay%" ${WRKSRC}/faces/Faces.ad
.elifdef WITH_SOX
@${REINPLACE_CMD} -e "s%rplay%play%" ${WRKSRC}/faces/Faces.ad
.elifdef WITH_RPLAY
# nada
.else
@${REINPLACE_CMD} -e "s%^faces.audioSupport.*%faces.audioSupport: false%" ${WRKSRC}/faces/Faces.ad
.endif
do-build:
cd ${WRKSRC}/compface && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
${FILESDIR}/Makefile.compface ${MAKE_ARGS} ${ALL_TARGET}
.if !defined(WITHOUT_X11)
cd ${WRKSRC}/faces && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/compface/compface ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/compface/uncompface ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/compface/compface.h ${PREFIX}/include
${INSTALL_DATA} ${WRKSRC}/compface/libcompface.a ${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/compface/libcompface.so.1 ${PREFIX}/lib
${LN} -sf libcompface.so.1 ${PREFIX}/lib/libcompface.so
${INSTALL_MAN} ${WRKSRC}/compface/compface.1 ${MANPREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/compface/compface.3 ${MANPREFIX}/man/man3
${INSTALL_SCRIPT} ${FILESDIR}/ikon2xbm ${PREFIX}/bin
${INSTALL_SCRIPT} ${FILESDIR}/xbm2ikon ${PREFIX}/bin
${INSTALL_SCRIPT} ${FILESDIR}/xbmcut48 ${PREFIX}/bin
${INSTALL_SCRIPT} ${FILESDIR}/xbmsize48 ${PREFIX}/bin
.if !defined(WITHOUT_X11)
${INSTALL_PROGRAM} ${WRKSRC}/faces/faces ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/faces/faces.1 ${MANPREFIX}/man/man1
${INSTALL_DATA} ${WRKSRC}/faces/Faces.ad ${LOCALBASE}/lib/X11/app-defaults/Faces
.endif
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.post.mk>