blob: cc3c6009a292378bace49772588a33335ed839e4 (
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
|
# 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= stas@FreeBSD.org
COMMENT= A collection of the useful include files for embedded developers
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
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.mk>
|