blob: 4be26fd680c04ff85e8b4abc5e2a88895c5cfa63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# 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
LIBS+= -L${LOCALBASE}/lib
USE_LDCONFIG= yes
USES= gmake libtool:build
DOCS= README doc/libmaa.600dpi.ps
PLIST_FILES= include/maa.h \
lib/libmaa.a \
lib/libmaa.so \
lib/libmaa.so.3
PORTDOCS= ${DOCS:T}
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}/
cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}/
.include <bsd.port.mk>
|