1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Take maintainership from ports@.

Chase BSD.local.dist location: it now lives in ports/Templates and
is no longer installed in /etc/mtree.

Feature safe:	yes
This commit is contained in:
Jimmy Olgeni 2011-11-29 13:48:50 +00:00
parent e7af613d96
commit c462b1dfb3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=286632
3 changed files with 30 additions and 2 deletions

View File

@ -6,11 +6,11 @@
PORTNAME= pkg_trackinst
PORTVERSION= 1.2.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= ports-mgmt
MASTER_SITES= http://people.freebsd.org/~perky/distfiles/
MAINTAINER= ports@FreeBSD.org
MAINTAINER= olgeni@FreeBSD.org
COMMENT= PkgDB/pkg-plist generator by tracking installation
USE_PYTHON= 2.5+

View File

@ -0,0 +1,14 @@
$FreeBSD$
--- PkgTrackInst/PkgDbWriter.py.orig
+++ PkgTrackInst/PkgDbWriter.py
@@ -74,7 +74,7 @@
print >> self.pkgfile('+COMMENT'), self.pkginfo['comment']
print >> self.pkgfile('+DESC'), self.pkginfo['description'].strip()
- mtree = open('/etc/mtree/BSD.local.dist').read()
+ mtree = open('/usr/ports/Templates/BSD.local.dist').read()
self.pkgfile('+MTREE_DIRS').write(mtree)
def write_scripts(self):

View File

@ -0,0 +1,14 @@
$FreeBSD$
--- PkgTrackInst/cmd_support.py.orig
+++ PkgTrackInst/cmd_support.py
@@ -24,7 +24,7 @@
INSTHOOK_PATH = '/usr/local/lib/insthook.so'
IGNORE_PATHS = ['/dev', '/tmp', '/var']
-MTREE_LOCAL = '/etc/mtree/BSD.local.dist'
+MTREE_LOCAL = '/usr/ports/Templates/BSD.local.dist'
def errx(msg):
echo_msg(msg, sys.stderr)