blob: 9b45a4b43951986c940201515d0cf64de91fee06 (
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
30
31
|
# New ports collection makefile for: kdehier
# Date created: 4 May 2003
# Whom: Frerich Raabe <frerich.raabe@gmx.de>
#
# $FreeBSD$
#
PORTNAME= kdehier
PORTVERSION= 1.0
PORTREVISION= 9
CATEGORIES= misc kde
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= kde@FreeBSD.org
COMMENT= Utility port which installs a hierarchy of shared KDE directories
NO_BUILD= yes
NO_WRKSUBDIR= yes
do-fetch:
@${DO_NADA}
do-install:
@for dir in `${GREP} -v "^@comment" ${FILESDIR}/dirlist`; \
do \
${MKDIR} ${PREFIX}/$${dir}; \
${TOUCH} ${PREFIX}/$${dir}/.keep_me; \
done
.include <bsd.port.mk>
|