mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
# Ports collection Makefile for: GnomeICU
|
|
# Date created: 03/16/1999
|
|
# Whom: nectar@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnomeicu2
|
|
PORTVERSION= 0.99.5
|
|
PORTREVISION= 4
|
|
CATEGORIES= net-im gnome
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= gnomeicu
|
|
DISTNAME= gnomeicu-${PORTVERSION}
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME2 ICQ client
|
|
|
|
LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
INSTALLS_OMF= yes
|
|
USE_GNOME= gnomeprefix gnomehack libglade2 gnomepanel lthack libxml2
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= libtool:13
|
|
USE_REINPLACE= yes
|
|
|
|
GCONF_SCHEMAS= gnomeicu.schemas
|
|
|
|
.if defined(WITH_DANTE)
|
|
LIB_DEPENDS+= socks.1:${PORTSDIR}/net/dante
|
|
SOCKSFLAGS= -Dconnect=Rconnect -Dbind=Rbind -Dgetsockname=Rgetsockname \
|
|
-Dgetpeername=Rgetpeername -Daccept=Raccept \
|
|
-Drresvport=Rrresvport -Dbindresvport=Rbindresvport \
|
|
-Dgethostbyname=Rgethostbyname \
|
|
-Dgethostbyname2=Rgethostbyname2 -Dsendto=Rsendto \
|
|
-Drecvfrom=Rrecvfrom -Drecvfrom=Rrecvfrom -Dwrite=Rwrite \
|
|
-Dwritev=Rwritev -Dsend=Rsend -Dsendmsg=Rsendmsg \
|
|
-Dread=Rread -Dreadv=Rreadv -Drecv=Rrecv -Drecvmsg=Rrecvmsg
|
|
SOCKSLIBS= -lsocks
|
|
.elif defined(WITH_SOCKS5)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
|
|
SOCKSFLAGS= -DSOCKS -include ${LOCALBASE}/include/socks.h
|
|
SOCKSLIBS= -lsocks5
|
|
.endif
|
|
|
|
CONFIGURE_ARGS= --with-statusmenu
|
|
CONFIGURE_ENV= CPPFLAGS="${SOCKSFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" LIBS="-liconv ${SOCKSLIBS} -lintl" \
|
|
CFLAGS="${CFLAGS}"
|
|
|
|
.ifndef(WITHOUT_GTKSPELL)
|
|
LIB_DEPENDS+= gtkspell.0:${PORTSDIR}/textproc/gtkspell2
|
|
CONFIGURE_ARGS+=--enable-gtkspell
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-gtkspell
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|GNOME_PARAM_GNOME_DATADIR|GNOME_PARAM_APP_DATADIR|g' \
|
|
${WRKSRC}/src/gnomeicu.c
|
|
|
|
.include <bsd.port.mk>
|