diff options
author | hubertf <hubertf> | 2001-11-29 01:12:24 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2001-11-29 01:12:24 +0000 |
commit | dfbf38a3ef25dda3800d125bfd25148ae1c64431 (patch) | |
tree | 57da34d13a725a0c61343ca8eabdee3d27dfbd9a /print | |
parent | 860d7f9af53233c444d6a575ba4ac0748bc4dc74 (diff) | |
download | pkgsrc-dfbf38a3ef25dda3800d125bfd25148ae1c64431.tar.gz |
Get rid of manually adding "nbX" to PKGNAME when a pkg was changed in
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.
Diffstat (limited to 'print')
-rw-r--r-- | print/teTeX-bin/Makefile | 5 | ||||
-rw-r--r-- | print/teTeX-share/Makefile | 5 | ||||
-rw-r--r-- | print/teTeX-sharesrc/Makefile | 5 | ||||
-rw-r--r-- | print/tex-jadetex/Makefile | 5 |
4 files changed, 12 insertions, 8 deletions
diff --git a/print/teTeX-bin/Makefile b/print/teTeX-bin/Makefile index 87d7513151f..3dac493d2dc 100644 --- a/print/teTeX-bin/Makefile +++ b/print/teTeX-bin/Makefile @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.31 2001/10/25 04:13:43 fredb Exp $ +# $NetBSD: Makefile,v 1.32 2001/11/29 01:12:45 hubertf Exp $ # FreeBSD Id: Makefile,v 1.20 1997/08/05 06:56:41 tg Exp # DISTNAME= teTeX-src-1.0.7 -PKGNAME= teTeX-bin-1.0.7nb1 +PKGNAME= teTeX-bin-1.0.7 +PKGREVISION= 1 WRKSRC= ${WRKDIR}/teTeX-1.0 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=systems/unix/teTeX/1.0/distrib/sources/} diff --git a/print/teTeX-share/Makefile b/print/teTeX-share/Makefile index 28fc56591d1..13ce4354491 100644 --- a/print/teTeX-share/Makefile +++ b/print/teTeX-share/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.9 2001/10/24 00:28:48 kei Exp $ +# $NetBSD: Makefile,v 1.10 2001/11/29 01:12:45 hubertf Exp $ # DISTNAME= teTeX-texmf-1.0.2 -PKGNAME= teTeX-share-1.0.2nb1 +PKGNAME= teTeX-share-1.0.2 +PKGREVISION= 1 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=systems/unix/teTeX/1.0/distrib/sources/} diff --git a/print/teTeX-sharesrc/Makefile b/print/teTeX-sharesrc/Makefile index a4d15b65587..77a4af9501a 100644 --- a/print/teTeX-sharesrc/Makefile +++ b/print/teTeX-sharesrc/Makefile @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.9 2001/10/24 00:28:49 kei Exp $ +# $NetBSD: Makefile,v 1.10 2001/11/29 01:12:45 hubertf Exp $ # FreeBSD Id: Makefile,v 1.20 1997/08/05 06:56:41 tg Exp # DISTNAME= teTeX-texmfsrc-1.0.1 -PKGNAME= teTeX-sharesrc-1.0.1nb1 +PKGNAME= teTeX-sharesrc-1.0.1 +PKGREVISION= 1 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_TEX_CTAN:=systems/unix/teTeX/1.0/distrib/sources/} diff --git a/print/tex-jadetex/Makefile b/print/tex-jadetex/Makefile index 033a251a7ae..648484d0a1c 100644 --- a/print/tex-jadetex/Makefile +++ b/print/tex-jadetex/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/10/04 18:47:06 hubertf Exp $ +# $NetBSD: Makefile,v 1.2 2001/11/29 01:12:46 hubertf Exp $ # DISTNAME= jadetex-2.20 -PKGNAME= tex-${DISTNAME}nb1 +PKGNAME= tex-${DISTNAME} +PKGREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.tug.org/applications/jadetex/ EXTRACT_SUFX= .zip |