forked from Lainports/freebsd-ports
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.
28 lines
614 B
Makefile
28 lines
614 B
Makefile
# New ports collection makefile for: libmms
|
|
# Date created: 25 Dec 2004
|
|
# Whom: Koop Mast <kwm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libmms
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= Library for parsing mms:// and mmsh:// type network streams
|
|
|
|
USE_REINPLACE= yes
|
|
USE_GNOME= gnomehack gnometarget pkgconfig glib20
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
INSTALLS_SHLIB= yes
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} -e 's|malloc\.h|stdlib.h|' \
|
|
${WRKSRC}/src/uri.c
|
|
|
|
.include <bsd.port.mk>
|