aboutsummaryrefslogtreecommitdiff
path: root/sysutils/cd9660_unicode/Makefile
blob: 1427f26fd869d69a41a71e3fb6bea8dec3a054c6 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Ports collection makefile for:	cd9660_unicode
# Date created:				13 February 2001
# Whom:					Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	cd9660_unicode
PORTVERSION=	1.0
CATEGORIES=	sysutils
MASTER_SITES=	${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR=	sobomax

MAINTAINER=	ports@FreeBSD.org
COMMENT=	A kernel driver for reading CD disks with non-English filenames

NO_PACKAGE=	Should be in sync with the kernel to work correctly

SRCPREFIX?=	/usr/src
PKGMESSAGE=	${WRKDIR}/.MESSAGE
ENCODINGS=	cd ${WRKSRC}/templates && ${ECHO_CMD} [^C]* | \
			${SED} 's|\.txt|,|g'
FMT=		/usr/bin/fmt
FLAG!=		/usr/bin/grep -e cd9660_wchar2char \
			${SRCPREFIX}/sys/isofs/cd9660/cd9660_util.c 2>/dev/null || \
			/usr/bin/true

.if (${FLAG} == "")
BROKEN=		"your FreeBSD version is not supported. Please update to the latest version and try again"
.endif

pre-fetch:
	@if [ ! -d /sys -o ! -d ${SRCPREFIX}/sys ]; then \
		${ECHO} "****************************************" ; \
		${ECHO} " You need to extract kernel source tree" ; \
		${ECHO} " before you build this package..." ; \
		${ECHO} "****************************************" ; \
		${FALSE} ; \
	fi

pre-install:
	@ENCODINGS=`${ENCODINGS}` && \
		ENCODINGS=`${ECHO_CMD} $${ENCODINGS} | ${SED} 's|,$$||'` && \
		${SED} "s|%%PREFIX%%|${PREFIX}|g; s|%%ENCODINGS%%|$${ENCODINGS}|" \
			${PKGDIR}/pkg-message | ${FMT} > ${PKGMESSAGE}
	${MKDIR} ${PREFIX}/lib/cd9660_unicode

post-install:
	@${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>