aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/man/Makefile
blob: dec1dce52ee911af0495260a10dd742c94155fb2 (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
58
59
60
61
62
63
64
# New ports collection makefile for:    jman - japanese man with EUC
# Version required: 1.1
# Date created:     4 December 1996
# Whom:         Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
#
# $Id: Makefile,v 1.7 1997/03/30 12:40:11 asami Exp $
#

DISTNAME=   jp-man-1.1
CATEGORIES= japanese
MASTER_SITES=   ftp://jaz.jp.freebsd.org/pub/FreeBSD-jp/man-jp/ \
        ftp://ports.jp.freebsd.org/pub/FreeBSD-jp/ports-jp/LOCAL_PORTS/

MAINTAINER= kiri@kiri.toba-cmt.ac.jp

#do not run-depend on mule because dependency will be pulled in to package
#and we don't know which one the user wants
RUN_DEPENDS=    ${PREFIX}/bin/groff:${PORTSDIR}/japanese/groff \
        jless:${PORTSDIR}/japanese/less

JMANELDIR=  ${PREFIX}/lib/mule/site-lisp/jman

# XPG4LIBPATH specifies the path name of the xpg4 library.
# The xpg4 library include setlocale() function and etc. for I18N,
# when using EUC code(e.g. ja_JP.EUC). At version 2.1.5 of FreeBSD or older,
# there isn't the xpg4 library in system, because include C library.
# But 2.2.0 or newer, the set of code for xpg4 was removed from C library,
# and included in new created xpg4 libray(/usr/lib/libxpg4*) .
# If your system have xpg4 library(libxpg4*) in /usr/lib, this patch 
# automatically apply to srource file. If your system have xpg4 library 
# in other directory, you must define XPG4LIBPATH. And if you don't want to
# use xpg4 library, you must define NOUSE_XPG4LIB. At default, you don't 
# have to define XPG4LIBPATH and NOUSE_XPG4LIB.
# See a make rule of target pre-patch for details.
# 
XPG4LIBPATH?=       /usr/lib

pre-patch:
    @${MKDIR} ${PATCHDIR}
    @${RM} -f ${PATCHDIR}/patch-aa
.if !defined(NOUSE_XPG4LIB)
    @${SED} -e "s,%XPG4LIBPATH%,${XPG4LIBPATH},g" \
        < ${FILESDIR}/patch-xpg4.tmpl > ${FILESDIR}/patch-xpg4
    @(for libfile in ${XPG4LIBPATH}/libxpg4*; do \
        if [ ! "$$libfile" = "" ]; then \
            ln -sf ${FILESDIR}/patch-xpg4 \
                ${PATCHDIR}/patch-aa; \
            break 1; \
        fi; \
    done)
.else
    @ln -sf ${FILESDIR}/patch-noxpg4 ${PATCHDIR}/patch-aa
.endif

post-install:
    @${MKDIR} ${JMANELDIR}
    @${INSTALL_DATA} ${FILESDIR}/jman.el ${JMANELDIR}
    @${SETENV} CP=${CP} PKG_PREFIX=${PREFIX} \
        /bin/sh ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL

pre-clean:
    @${RM} -f ${PATCHDIR}/patch-aa ${FILESDIR}/patch-xpg4

.include <bsd.port.mk>