diff options
author | knu <knu@FreeBSD.org> | 2000-04-11 14:15:53 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2000-04-11 14:15:53 +0000 |
commit | eb17e2576779f2d3cec7d048b850a15abdbcbd54 (patch) | |
tree | b353963f3ab4d98c9dfa05a226f9e4b7fe663bf5 /japanese/jed | |
parent | 9271784a158a2e9d281abacf9a42a90705450f73 (diff) | |
download | FreeBSD-ports-eb17e2576779f2d3cec7d048b850a15abdbcbd54.zip FreeBSD-ports-eb17e2576779f2d3cec7d048b850a15abdbcbd54.tar.gz |
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. :)
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 eda3aaf..7cbd4ba 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" |