8515c22920
API reference for KDE 3.1 Note that the port is installed in ports/x11 and not in ports/devel to keep it closer to the kde3 libraries which are installed in ports/x11. Changed the name to match the gtk##-apireference for concistensy[sp]. PR: ports/60990 Submitted by: Heiner Eichmann <h.eichmann@gmx.de>
31 lines
880 B
Makefile
31 lines
880 B
Makefile
# New ports collection makefile for: kde_api_reference_31
|
|
# Date created: 2004/01/02
|
|
# Whom: Heiner <h.eichmann@gmx.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= kde31-apireference
|
|
PORTVERSION= 3.1
|
|
CATEGORIES= x11 kde
|
|
MASTER_SITES= http://developer.kde.org/documentation/library/3.1-api/
|
|
DISTNAME= 3.1-api
|
|
|
|
MAINTAINER= h.eichmann@gmx.de
|
|
COMMENT= API reference for KDE 3.1
|
|
|
|
IGNOREFILES= ${ALLFILES}
|
|
USE_BZIP2= yes
|
|
|
|
PLIST= ${WRKDIR}/plist
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} ; ${FIND} * -type f | ${SED} -e "s#^#share/doc/kdeapi31/#" > ${WRKDIR}/plist
|
|
@cd ${WRKSRC} ; ${FIND} * -type d | sort -r | ${SED} -e "s#^#@dirrm share/doc/kdeapi31/#" >> ${WRKDIR}/plist
|
|
@${ECHO} "@dirrm share/doc/kdeapi31" >> ${WRKDIR}/plist
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/doc/kdeapi31
|
|
@${CP} -r ${WRKSRC}/* ${PREFIX}/share/doc/kdeapi31
|
|
|
|
.include <bsd.port.mk>
|