mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# Created by: Andrew Turner <andrew+ports@fubar.geek.nz>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libaura
|
|
PORTVERSION= 3.1.20051222
|
|
CATEGORIES= devel
|
|
MASTER_SITES= LOCAL/philip
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Library of Assorted Useful Reusable Abstractions
|
|
|
|
USES= tar:bzip2
|
|
USE_LDCONFIG= yes
|
|
|
|
SONAME= ${SOLINK}.3
|
|
SOLINK= ${PORTNAME}3.so
|
|
|
|
PLIST_FILES= lib/${SONAME} \
|
|
lib/${SOLINK} \
|
|
include/aura3/buffer.h \
|
|
include/aura3/dict.h \
|
|
include/aura3/popen.h \
|
|
include/aura3/fspred.h \
|
|
include/aura3/mem.h
|
|
PORTDOCS= README
|
|
|
|
MAKE_ENV= SONAME=${SONAME} SOLINK=${SOLINK}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${SONAME} ${STAGEDIR}${PREFIX}/lib/${SONAME}
|
|
${LN} -s ${PREFIX}/lib/${SONAME} ${STAGEDIR}${PREFIX}/lib/${SOLINK}
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/include/aura3/
|
|
${INSTALL_DATA} ${WRKSRC}/buffer.h ${STAGEDIR}${PREFIX}/include/aura3/
|
|
${INSTALL_DATA} ${WRKSRC}/dict.h ${STAGEDIR}${PREFIX}/include/aura3/
|
|
${INSTALL_DATA} ${WRKSRC}/popen.h ${STAGEDIR}${PREFIX}/include/aura3/
|
|
${INSTALL_DATA} ${WRKSRC}/fspred.h ${STAGEDIR}${PREFIX}/include/aura3/
|
|
${INSTALL_DATA} ${WRKSRC}/mem.h ${STAGEDIR}${PREFIX}/include/aura3/
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|