c18acd1737
for embedded developers. PR: ports/101434 Submitted by: Stanislav Sedov <ssedov at mbsd.msk.ru>
35 lines
798 B
Makefile
35 lines
798 B
Makefile
# New ports collection makefile for: include
|
|
# Date created: 2006-08-05
|
|
# Whom: Stanislav Sedov <ssedov@mbsd.msk.ru>
|
|
#
|
|
# $MBSDlabs$
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= include
|
|
PORTVERSION= 0.4.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR=openwince
|
|
PKGNAMEPREFIX= openwince-
|
|
|
|
MAINTAINER= ssedov@mbsd.msk.ru
|
|
COMMENT= A collection of the useful include files for embedded developers
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
PLIST_FILES= include/stdint.h
|
|
.endif
|
|
|
|
post-install:
|
|
@${FIND} -d ${PREFIX}/include/openwince/ -type f | \
|
|
${SED} -e 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
|
@${FIND} -d ${PREFIX}/include/openwince/ -type d | \
|
|
${SED} -e 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.post.mk>
|