freebsd-ports/devel/liboil/Makefile
Martin Matuska f27f7d0922 - Update to 0.3.17
- Take maintainership

- liboil stopped development and remains in maintenance mode only
- project outdated and replaced with ORC (The Oil Runtime Compiler)
http://code.entropywave.com/projects/orc/
2010-03-09 09:56:23 +00:00

50 lines
1.3 KiB
Makefile

# New ports collection makefile for: liboil
# Date created: Nov 24, 2004
# Whom: ijliao
#
# $FreeBSD$
# $MCom: ports/devel/liboil/Makefile,v 1.7 2008/03/23 06:57:57 marcus Exp $
# $Id: Makefile 23 2006-10-25 14:24:32Z buhnux $
PORTNAME= liboil
PORTVERSION= 0.3.17
CATEGORIES= devel
MASTER_SITES= http://liboil.freedesktop.org/download/
MAINTAINER= mm@FreeBSD.org
COMMENT= Library of optimized inner loops
USE_GNOME= pkgconfig gnomehack gnometarget ltverhack
USE_AUTOTOOLS= libtool:22
USE_LDCONFIG= yes
CONFIGURE_ARGS= --disable-gtk-doc \
--disable-glib
CFLAGS:= ${CFLAGS:N-O*} -O2
.include <bsd.port.pre.mk>
.if defined(WITH_3DNOW_GCC40) && ${OSVERSION} < 700042
USE_GCC= 4.2+
RUN_DEPENDS+= ${BUILD_DEPENDS}
.endif
pre-everything::
.if ${MACHINE_CPU:M3dnow}!="" && ${OSVERSION} < 700042
.if !defined(WITH_3DNOW_GCC40)
@${ECHO_MSG} "You can enable 3dnow extensions by defining"
@${ECHO_MSG} "WITH_3DNOW_GCC40=yes"
.endif
@${ECHO_MSG} ""
@${ECHO_MSG} "Note: ${PORTNAME} will depend on gcc4.0+ with WITH_3DNOW_GCC40"
@${ECHO_MSG} "defined."
.endif
post-patch:
@${REINPLACE_CMD} -e 's|\\$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|' \
${WRKSRC}/configure
@${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>