freebsd-ports/net/jwhois/Makefile
Makoto Matsushita 0c035503c7 Cleanup.
- Fix pkg-plist, add missing files to the list (gimme a pointy hat to me...)
- Introduce INFO variable.
- Don't touch share/locale/ directory.
- Employ WITHOUT_NLS macro as other ports did.

Since pkg-plist is changed, bump PORTREVISION.

Submitted by:	sf
2004-04-15 13:21:02 +00:00

46 lines
1.1 KiB
Makefile

# New ports collection makefile for: jwhois
# Date created: 15 Jul 2000
# Whom: matusita@jp.FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= jwhois
PORTVERSION= 3.2.2
PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= jwhois
MAINTAINER= matusita@FreeBSD.org
COMMENT=An improved WHOIS client capable of selecting server to query
GNU_CONFIGURE= yes
USE_GETTEXT= yes
USE_GMAKE= yes
CONFIGURE_ENV= CPPFLAGS="-I${PREFIX}/include" LDFLAGS="-L${PREFIX}/lib"
CONFIGURE_ARGS= --localstatedir=${PREFIX}/var/jwhois
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB= NLS="@comment "
.else
PLIST_SUB= NLS=""
.endif
INSTALL_TARGET= install-strip
MANLANG= "" sv
MAN1= jwhois.1
INFO= jwhois
post-install:
${MKDIR} ${PREFIX}/var/jwhois
${CHOWN} :nogroup ${PREFIX}/var/jwhois
${CHMOD} g+w ${PREFIX}/var/jwhois
${CHOWN} :nogroup ${PREFIX}/bin/jwhois
${CHMOD} g+s ${PREFIX}/bin/jwhois
${INSTALL_DATA} ${WRKSRC}/example/jwhois.conf ${PREFIX}/etc/jwhois.conf.sample
if [ ! -f ${PREFIX}/etc/jwhois.conf ]; then ${INSTALL_DATA} ${PREFIX}/etc/jwhois.conf.sample ${PREFIX}/etc/jwhois.conf; fi
.include <bsd.port.mk>