mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
877dce2447
Approved by: bapt@ (co-mentor)
36 lines
681 B
Makefile
36 lines
681 B
Makefile
# Created by: Jeremy Norris <ishmael27@home.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libast
|
|
PORTVERSION= 0.7
|
|
PORTREVISION= 11
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.eterm.org/download/ \
|
|
CRITICAL
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Library of assorted spiffy things
|
|
|
|
LICENSE= BSD
|
|
|
|
LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
USE_EFL= imlib2
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_LDCONFIG= yes
|
|
USES= pathfix
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_MMX) && (${ARCH} == "i386")
|
|
CONFIGURE_ARGS= --enable-mmx
|
|
.endif
|
|
|
|
post-build:
|
|
@${STRIP_CMD} ${WRKSRC}/src/.libs/libast.so.2
|
|
|
|
.include <bsd.port.post.mk>
|