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.
67 lines
1.7 KiB
Makefile
67 lines
1.7 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: ickle
|
|
# Date created: Nov 21, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ickle
|
|
PORTVERSION= 0.3.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-im devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= ICQ2000 protocol implementation
|
|
|
|
LIB_DEPENDS= gtkmm:${PORTSDIR}/x11-toolkits/gtk-- \
|
|
icq2000.5:${PORTSDIR}/net-im/libicq2000
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gtk12
|
|
WANT_GNOME= yes
|
|
USE_ICONV= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-sigc-prefix=${LOCALBASE} \
|
|
--with-gtkmm-prefix=${X11BASE}
|
|
CONFIGURE_ENV= CPPFLAGS="`${LOCALBASE}/bin/sigc-config --cflags`"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E -e 's|(gtkmm_config_args[[:space:]]*=).+$$|\1|' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${HAVE_GNOME:Mlibcapplet}!="" || defined(WITH_GNOME)
|
|
USE_GNOME+= libcapplet
|
|
PKGNAMESUFFIX= -gnome
|
|
PLIST_SUB+= ICKLEDATADIR="share/gnome/" GNOME="" NOGNOME="@comment "
|
|
.else
|
|
CONFIGURE_ARGS+= --with-gnome=no
|
|
|
|
PLIST_SUB+= ICKLEDATADIR="share/" GNOME="@comment " NOGNOME=""
|
|
.endif
|
|
|
|
.if defined(WITH_ICKLE_CONTROL)
|
|
PLIST_SUB+= ICKLECONTROL=""
|
|
.else
|
|
CONFIGURE_ARGS+= --without-ickle-control
|
|
|
|
PLIST_SUB+= ICKLECONTROL="@comment "
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if ${HAVE_GNOME:Mlibcapplet}=="" && !defined(WITH_GNOME)
|
|
@${ECHO_MSG} "===> Define WITH_GNOME to enable GNOME support"
|
|
.endif
|
|
.if !defined(WITH_ICKLE_CONTROL)
|
|
@${ECHO_MSG} "===> Define WITH_ICKLE_CONTROL to enable external command-line"
|
|
@${ECHO_MSG} "===> control for the ickle client"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|