diff options
author | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 1999-09-10 06:54:16 +0000 |
---|---|---|
committer | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 1999-09-10 06:54:16 +0000 |
commit | eaffe762fa8dacbb6629684af14eb0f3aa10deb6 (patch) | |
tree | 5ca8a37c43c05d63167638cdf1947b3cbbea280d | |
parent | 2075fe9d76a2b05f1049600293111c04b4cbb074 (diff) | |
download | freebsd-ports-eaffe762fa8dacbb6629684af14eb0f3aa10deb6.zip |
- changed = to ?= or += in some of the variables
instead of assigning variables after the .include statement.
Suggested by: asami
Reviewed by: itojun
-rw-r--r-- | japanese/magicpoint/Makefile | 7 | ||||
-rw-r--r-- | misc/magicpoint/Makefile | 9 |
2 files changed, 7 insertions, 9 deletions
diff --git a/japanese/magicpoint/Makefile b/japanese/magicpoint/Makefile index 675ff0f03040..ae1e15ab7fea 100644 --- a/japanese/magicpoint/Makefile +++ b/japanese/magicpoint/Makefile @@ -12,13 +12,12 @@ COMMENT= ${.CURDIR}/pkg/COMMENT LIB_DEPENDS= VFlib2.24:${PORTSDIR}/japanese/vflib PKGNAME= ja-magicpoint-1.05a - -.include "${MASTERDIR}/Makefile" - -CATEGORIES= japanese misc +CATEGORIES= japanese MAINTAINER= itojun@itojun.org # dirty, but this is required for version independent-ness CONFIGURE_ARGS= --with-vfontcap=`${ECHO} ${LOCALBASE}/share/VFlib/*/vfontcap | tail -1` CONFIGURE_ARGS+= --enable-freetype-charset16 + +.include "${MASTERDIR}/Makefile" 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}) |