mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
63a831ca89
Approved by: portmgr blanket
43 lines
882 B
Makefile
43 lines
882 B
Makefile
# Created by: chinsan
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libmaa
|
|
PORTVERSION= 1.3.2
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/dict/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Provides a few data structures and helpful functions
|
|
|
|
# The software was licensed as GPLv2. LGPL20 is for the library.
|
|
LICENSE= LGPL20
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
ALL_TARGET= lib
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
GNU_CONFIGURE= yes
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USE_AUTOTOOLS= libtoolize
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool
|
|
|
|
DOCS= README doc/libmaa.600dpi.ps
|
|
PLIST_FILES= include/maa.h \
|
|
lib/libmaa.a \
|
|
lib/libmaa.so \
|
|
lib/libmaa.so.3
|
|
PORTDOCS= ${DOCS:T}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|