Sat Jun 14 08:32:33 2008 UTC ()
Set MAINTAINER to OWNER if the latter is set.
Somehow this got lost from the original OWNER support commit.


(dillo)
diff -r1.1948 -r1.1949 pkgsrc/mk/bsd.pkg.mk

cvs diff -r1.1948 -r1.1949 pkgsrc/mk/bsd.pkg.mk (expand / switch to unified diff)

--- pkgsrc/mk/bsd.pkg.mk 2008/06/12 01:09:01 1.1948
+++ pkgsrc/mk/bsd.pkg.mk 2008/06/14 08:32:33 1.1949
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: bsd.pkg.mk,v 1.1948 2008/06/12 01:09:01 joerg Exp $ 1# $NetBSD: bsd.pkg.mk,v 1.1949 2008/06/14 08:32:33 dillo Exp $
2# 2#
3# This file is in the public domain. 3# This file is in the public domain.
4# 4#
5# Please see the pkgsrc/doc/guide manual for details on the 5# Please see the pkgsrc/doc/guide manual for details on the
6# variables used in this make file template. 6# variables used in this make file template.
7# 7#
8# Default sequence for "all" is: 8# Default sequence for "all" is:
9# 9#
10# bootstrap-depends 10# bootstrap-depends
11# fetch 11# fetch
12# checksum 12# checksum
13# depends 13# depends
14# tools 14# tools
@@ -84,27 +84,31 @@ MKCRYPTO?= YES # build crypto packages  @@ -84,27 +84,31 @@ MKCRYPTO?= YES # build crypto packages
84LICENSE= ${LICENCE} 84LICENSE= ${LICENCE}
85.endif 85.endif
86.if defined(ACCEPTABLE_LICENCES) && !defined(ACCEPTABLE_LICENSES) 86.if defined(ACCEPTABLE_LICENCES) && !defined(ACCEPTABLE_LICENSES)
87ACCEPTABLE_LICENSES= ${ACCEPTABLE_LICENCES} 87ACCEPTABLE_LICENSES= ${ACCEPTABLE_LICENCES}
88.endif 88.endif
89 89
90##### Others 90##### Others
91 91
92BUILD_DEPENDS?= # empty 92BUILD_DEPENDS?= # empty
93COMMENT?= (no description) 93COMMENT?= (no description)
94DEPENDS?= # empty 94DEPENDS?= # empty
95DESCR_SRC?= ${PKGDIR}/DESCR 95DESCR_SRC?= ${PKGDIR}/DESCR
96INTERACTIVE_STAGE?= none 96INTERACTIVE_STAGE?= none
 97.if defined(OWNER)
 98MAINTAINER=${OWNER}
 99.else
97MAINTAINER?= pkgsrc-users@NetBSD.org 100MAINTAINER?= pkgsrc-users@NetBSD.org
 101.endif
98PKGWILDCARD?= ${PKGBASE}-[0-9]* 102PKGWILDCARD?= ${PKGBASE}-[0-9]*
99SVR4_PKGNAME?= ${PKGNAME} 103SVR4_PKGNAME?= ${PKGNAME}
100WRKSRC?= ${WRKDIR}/${DISTNAME} 104WRKSRC?= ${WRKDIR}/${DISTNAME}
101 105
102# Override for SU_CMD user check 106# Override for SU_CMD user check
103_SU_ROOT_USER?= ${ROOT_USER} 107_SU_ROOT_USER?= ${ROOT_USER}
104REAL_ROOT_USER?= ${ROOT_USER} 108REAL_ROOT_USER?= ${ROOT_USER}
105REAL_ROOT_GROUP?= ${ROOT_GROUP} 109REAL_ROOT_GROUP?= ${ROOT_GROUP}
106 110
107.if (defined(INSTALL_UNSTRIPPED) && !empty(INSTALL_UNSTRIPPED:M[yY][eE][sS])) || defined(DEBUG_FLAGS) 111.if (defined(INSTALL_UNSTRIPPED) && !empty(INSTALL_UNSTRIPPED:M[yY][eE][sS])) || defined(DEBUG_FLAGS)
108_INSTALL_UNSTRIPPED= # set (flag used by platform/*.mk) 112_INSTALL_UNSTRIPPED= # set (flag used by platform/*.mk)
109.endif 113.endif
110 114