summaryrefslogtreecommitdiff
path: root/sysutils/cd9660_unicode/Makefile
blob: eb85fe3807dcdb4d751e2e685d4bdb7c4f81d476 (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
52
53
54
55
56
57
# 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

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 501109
IGNORE=		is obsolete. See mount_cd9660(8)
.endif

pre-everything::
	@if [ ! -d /sys -o ! -d ${SRCPREFIX}/sys ]; then \
		${ECHO_MSG} "****************************************" ; \
		${ECHO_MSG} " You need to extract kernel source tree" ; \
		${ECHO_MSG} " before you build this package..." ; \
		${ECHO_MSG} "****************************************" ; \
		${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.post.mk>