1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/japanese/mh/Makefile
Satoshi Asami d530b271d9 Add
post-install:
	pkg_add -m ${PREFIX}/lib

to Makefiles and

@exec ldconfig -m %D

to packing lists of ports that install shared libraries.

This should get rid of a huge chunk of confusion for novice users!
All hail Paul Kranenburg! :)
1995-06-24 11:42:32 +00:00

42 lines
1.1 KiB
Makefile

# New ports collection makefile for: mh (Japanese)
# Version required: 6.8.3-JP.2c
# Date created: 28 March 1995
# Whom: Akito FUJITA <fujita@zoo.ncl.omron.co.jp>
#
# $Id: Makefile,v 1.2 1995/04/01 12:46:28 jkh Exp $
#
DISTNAME= mh-6.8.3
PKGNAME= jp-mh-6.8.3
MASTER_SITES= ftp://omrongw.wg.omron.co.jp/pub/net/mail/
CATEGORIES+= japanese mail
DISTFILES= mh-6.8.3-JP.2c.tar.gz
MAINTAINER= asami@FreeBSD.ORG
IS_INTERACTIVE= yes
pre-install:
@echo "***********************************************************"
@echo "* W a r n i n g *"
@echo "* This port will overwrite the mh installation on your *"
@echo "* system if you already have the original one. *"
@echo "***********************************************************"
@echo -n "Is this ok? (y/n) ==> "
@(read ans; \
case x"$$ans" in \
xy*|xY*) \
return 0; \
;; \
*) \
echo "Okay, I won't install it then...."; \
echo "(Don't worry about the following \"*** Error code 1\"s)"; \
return 1; \
;; \
esac)
post-install:
ldconfig -m ${PREFIX}/lib
.include <bsd.port.mk>