mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +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.
30 lines
679 B
Makefile
30 lines
679 B
Makefile
# New ports collection makefile for: libtorrent
|
|
# Date created: Jan 07 2005
|
|
# Whom: Florent Thoumie <flz@xbsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libtorrent
|
|
PORTVERSION= 0.7.6
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://libtorrent.rakshasa.no/downloads/
|
|
|
|
MAINTAINER= flz@FreeBSD.org
|
|
COMMENT= BitTorrent Library written in C++
|
|
|
|
LIB_DEPENDS= sigc-2.0.0:${PORTSDIR}/devel/libsigc++20
|
|
|
|
USE_GCC= 3.4
|
|
USE_GNOME= pkgconfig gnomehack
|
|
USE_REINPLACE= yes
|
|
INSTALLS_SHLIB= yes
|
|
USE_AUTOTOOLS= libtool:13:inc
|
|
CONFIGURE_ARGS= --disable-debug
|
|
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/-O3/${CFLAGS}/' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|