5542206cba
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
19 lines
351 B
Makefile
19 lines
351 B
Makefile
# $NetBSD: Makefile,v 1.12 2001/11/29 01:12:31 hubertf Exp $
|
|
#
|
|
|
|
DISTNAME= joe2.8
|
|
PKGNAME= joe-2.8
|
|
PKGREVISION= 1
|
|
CATEGORIES= editors
|
|
MASTER_SITES= ftp://ftp.std.com/src/editors/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= explorer@netbsd.org
|
|
COMMENT= Joe's own editor
|
|
|
|
ALL_TARGET= joe
|
|
WRKSRC= ${WRKDIR}/joe
|
|
|
|
CFLAGS+= -DTERMINFO
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|