mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +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.
34 lines
680 B
Makefile
34 lines
680 B
Makefile
# New ports collection makefile for: liboil
|
|
# Date created: Nov 24, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= liboil
|
|
PORTVERSION= 0.3.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://liboil.freedesktop.org/download/
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= Library of optimized inner loops
|
|
|
|
USE_GNOME= glib20
|
|
USE_REINPLACE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_GCC= 3.4
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --disable-gtk-doc
|
|
|
|
PLIST_SUB= VERSION=${PORTVERSION:R}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|stdint\.h|inttypes.h|g' \
|
|
${WRKSRC}/liboil/liboiltypes.h \
|
|
${WRKSRC}/liboil/liboilprofile.h \
|
|
${WRKSRC}/liboil/liboil.h
|
|
|
|
.include <bsd.port.post.mk>
|