diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2000-04-11 14:15:53 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2000-04-11 14:15:53 +0000 |
commit | edcf8b3594b5df6440713253552b675fb0234474 (patch) | |
tree | cb86ff29b6c34e6d077c56ce53ca461f9623f343 /japanese/jed | |
parent | Fix wrong PORTNAME/PORTVERSION and use PKGNAMESUFFIX. (diff) |
Update with the new PORT{NAME,VERSION}/PKGNAME{PRE,SUF}FIX variables.
Now try to use those variables everywhere around DIST* and PATCH*
definitions as far as possible, for ease of the future updates and the
neatness.
Okay, 60% of `japanese' ports have been done. :)
Notes
Notes:
svn path=/head/; revision=27449
Diffstat (limited to 'japanese/jed')
-rw-r--r-- | japanese/jed/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/japanese/jed/Makefile b/japanese/jed/Makefile index eda3aafdf08b..7cbd4bae266a 100644 --- a/japanese/jed/Makefile +++ b/japanese/jed/Makefile @@ -1,24 +1,27 @@ # New ports collection makefile for: Jed text editor w/ Japanese support -# Version required: 0.99.8.j067 # Date created: 2 Feb 2000 # Whom: Akinori MUSHA aka knu <knu@idaemons.org> # # $FreeBSD$ # -DISTNAME= jed-B0.99-8__J067 -PKGNAME= ja-jed-0.99.8.j067 +PORTNAME= jed +PORTVERSION= ${VERSION}.j${JP_VERSION} CATEGORIES= japanese editors MASTER_SITES= http://people.FreeBSD.org/~knu/ports/distfiles/ \ http://kondara.sdri.co.jp/~kikutani/slang/ +DISTNAME= ${PORTNAME}-B${VERSION:R}-${VERSION:E}__J${JP_VERSION} DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ - jed-extralibs-0.99.8${EXTRACT_SUFX} + ${PORTNAME}-extralibs-${VERSION}.tar.gz MAINTAINER= knu@idaemons.org LIB_DEPENDS= slang.2:${PORTSDIR}/japanese/libslang \ ${LIBDEP_CANNA} +VERSION= 0.99.8 +JP_VERSION= 067 + DIST_SUBDIR= jed GNU_CONFIGURE= yes CONFIGURE_ENV= JED_ROOT="${JED_ROOT}" X_EXTRA_LIBS="-lxpg4 -lcurses" |