diff options
author | max <max@FreeBSD.org> | 1996-11-11 16:26:44 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1996-11-11 16:26:44 +0800 |
commit | 7e32bcca2561b794cdcd97b1a7ef59ec671d84e9 (patch) | |
tree | 4c081b9571dcb31bb286797ad1e345d38cdf7b8a /japanese/Canna | |
parent | 861068926342948efc7fbde98c3705d5ae728b0e (diff) | |
download | freebsd-ports-gnome-7e32bcca2561b794cdcd97b1a7ef59ec671d84e9.tar.gz freebsd-ports-gnome-7e32bcca2561b794cdcd97b1a7ef59ec671d84e9.tar.zst freebsd-ports-gnome-7e32bcca2561b794cdcd97b1a7ef59ec671d84e9.zip |
CATEGORIES+= -> CATEGORIES=
Instead of writing several shell commands in post-install target, simply call
pkg/INSTALL.
Diffstat (limited to 'japanese/Canna')
-rw-r--r-- | japanese/Canna/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/japanese/Canna/Makefile b/japanese/Canna/Makefile index 556a0f8d2551..ee41041c3e8f 100644 --- a/japanese/Canna/Makefile +++ b/japanese/Canna/Makefile @@ -4,12 +4,12 @@ # Whom: Nobuhiro Yasutomi <nobu@psrc.isac.co.jp> # NIIMI Satoshi <sa2c@and.or.jp> # -# $Id: Makefile,v 1.11 1996/09/18 12:20:22 max Exp $ +# $Id: Makefile,v 1.12 1996/11/05 04:14:25 max Exp $ # DISTNAME= Canna32p2 PKGNAME= jp-Canna-3.2.2 -CATEGORIES+= japanese +CATEGORIES= japanese MASTER_SITES= ftp://ftp.nec.co.jp/pub/packages/Canna32/ \ ftp://ftp.cdrom.com/pub/japanese/titech/Canna32/ @@ -53,10 +53,6 @@ post-install: chmod 755 ${STARTUP_SCRIPT} ; \ chown bin.bin ${STARTUP_SCRIPT}; \ fi - @(grep -v ^# /etc/services | grep canna >/dev/null) || \ - (echo "Now, you need to add following entry to your /etc/services:" ;\ - echo ;\ - echo " canna 5680/tcp" ;\ - echo ) + @/bin/sh ${PKGDIR}/INSTALL ${PKGNAME} POST-INSTALL .include <bsd.port.mk> |