mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
24d327b54c
- CPPFLAGS is now added to CONFIGURE_ENV by Mk/bsd.port.Mk - Use PLIST_FILES and PORTDOCS instead of PLIST - Remove obsolete MD5 checksum Changes: http://sourceforge.net/projects/dict/files/libmaa/libmaa-1.3.0/README/view
42 lines
914 B
Makefile
42 lines
914 B
Makefile
# Ports collection makefile for: libmaa
|
|
# Date created: 2008/01/26
|
|
# Whom: chinsan
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libmaa
|
|
PORTVERSION= 1.3.0
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/dict/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Provides a few data structures and helpful functions
|
|
|
|
ALL_TARGET= lib
|
|
CONFIGURE_ARGS= --without-local-zlib --with-cflags="${CFLAGS}" \
|
|
--with-etcdir=${PREFIX}/etc
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib"
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= libtool
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
DOCS= COPYING.LIB README doc/libmaa.600dpi.ps
|
|
PLIST_FILES= include/maa.h \
|
|
lib/libmaa.la \
|
|
lib/libmaa.so.3 \
|
|
lib/libmaa.so \
|
|
lib/libmaa.a
|
|
PORTDOCS= ${DOCS:T}
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}/
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|