mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
50570fd841
- bump PORTREVISION Prompted by: QA Tindy run
42 lines
922 B
Makefile
42 lines
922 B
Makefile
# New ports collection makefile for: libdict
|
|
# Date created: Apr 19 2003
|
|
# Whom: Alex Semenyaka <alex@rinet.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libdict
|
|
PORTVERSION= 0.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:source treap_insert.pdf:doc \
|
|
avl_insert.pdf:doc empty.pdf:doc
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library providing access to ``dictionary'' data structures
|
|
|
|
USE_GMAKE= yes
|
|
MAKEFILE= GNUmakefile
|
|
USE_LDCONFIG= yes
|
|
|
|
post-extract:
|
|
. for ___f in avl_insert.pdf empty.pdf treap_insert.pdf
|
|
@${CP} ${DISTDIR}/${___f} ${WRKSRC}/
|
|
. endfor
|
|
|
|
pre-install:
|
|
-@${MKDIR} ${PREFIX}/include/
|
|
-@${MKDIR} ${PREFIX}/lib/
|
|
.ifndef(NOPORTDOCS)
|
|
-@${MKDIR} ${DOCSDIR}
|
|
|
|
post-install:
|
|
. for ___f in avl_insert.pdf empty.pdf treap_insert.pdf
|
|
@${CP} ${WRKSRC}/${___f} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|