summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>1999-09-10 06:54:16 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>1999-09-10 06:54:16 +0000
commiteaffe762fa8dacbb6629684af14eb0f3aa10deb6 (patch)
tree5ca8a37c43c05d63167638cdf1947b3cbbea280d /misc
parentA more optimized way of building the GUI only w/in the nmap distfile (diff)
- changed = to ?= or += in some of the variables
instead of assigning variables after the .include statement. Suggested by: asami Reviewed by: itojun
Notes
Notes: svn path=/head/; revision=21545
Diffstat (limited to 'misc')
-rw-r--r--misc/magicpoint/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/misc/magicpoint/Makefile b/misc/magicpoint/Makefile
index 4c6d379eac16..8ff5d0fbec75 100644
--- a/misc/magicpoint/Makefile
+++ b/misc/magicpoint/Makefile
@@ -5,21 +5,20 @@
#
# $FreeBSD$
#
+# "?=" and "+=" are for localized (i.e. Japanese) version
DISTNAME= magicpoint-1.05a
-# question is for localized (i.e. Japanese) version
PKGNAME?= magicpoint-1.05a
-CATEGORIES= misc
+CATEGORIES+= misc
MASTER_SITES= ftp://ftp.mew.org/pub/MagicPoint/
-MAINTAINER= itojun@itojun.org
+MAINTAINER?= itojun@itojun.org
-# plus sign is for localized (i.e. Japanese) version
LIB_DEPENDS+= ttf.3:${PORTSDIR}/print/freetype
USE_IMAKE= yes
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --disable-vflib
+CONFIGURE_ARGS?=--disable-vflib
post-configure:
(cd ${WRKSRC}/contrib/xmindpath; ./configure --prefix=${PREFIX})