Portlint.

Submitted by:	"The Anarcat" <anarcat@anarcat.ath.cx>
Reviewed by:	maintainer
This commit is contained in:
Sheldon Hearn 2002-06-26 23:52:35 +00:00
parent b8fb9cbef3
commit 6147dee922
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=62061
3 changed files with 16 additions and 40 deletions

View file

@ -10,7 +10,7 @@ PORTVERSION= 3.113.1
PORTREVISION= 6 PORTREVISION= 6
CATEGORIES= databases elisp CATEGORIES= databases elisp
MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= gnats MASTER_SITE_SUBDIR= gnats
MAINTAINER= des@FreeBSD.org MAINTAINER= des@FreeBSD.org
@ -46,11 +46,11 @@ pre-install:
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install: post-install:
(cd ${DATADIR} && mv gnats-db gnats-db.dist) (cd ${DATADIR} && ${MV} gnats-db gnats-db.dist)
.if defined(WANT_FREEFALL_CFG) .if defined(WANT_FREEFALL_CFG)
(cd ${DATADIR} && ln -s /home/gnats gnats-db) (cd ${DATADIR} && ${LN} -s /home/gnats gnats-db)
.else .else
(cd ${DATADIR} && ln -s gnats-db.dist gnats-db) (cd ${DATADIR} && ${LN} -s gnats-db.dist gnats-db)
.endif .endif
(cd ${WRKSRC}/gnats; ${MAKE} install-info) (cd ${WRKSRC}/gnats; ${MAKE} install-info)
(cd ${WRKSRC}/send-pr; ${MAKE} install-info) (cd ${WRKSRC}/send-pr; ${MAKE} install-info)

View file

@ -1,36 +1,7 @@
GNATS - GNU Problem Report Management System GNATS is a problem tracking system written to help report on, and
track, problem reports or bugs. GNATS is currently in use at Cygnus to
This directory contains GNATS, a problem tracking system written to help track all incoming bug reports. There are many concepts or
help report on, and track, problem reports or bugs. GNATS is currently approaches to GNATS which are only useful to organizations which track
in use at Cygnus to help track all incoming bug reports. There are bugs related by customers as well as by bug type.
many concepts or approaches to GNATS which are only useful to
organizations which track bugs related by customers as well as by bug
type.
The file gnats.texi contains a Texinfo version of the main
documentation for GNATS, including installation notes and configuration
strategies. gnats.info is a version of the same text as gnats.texi in a
form readable by GNU Info.
The file INSTALL contains a brief discussion of the installation
process; refer to gnats.texi for details on configuration, installation,
and usage.
Please report all GNATS bugs to bug-gnats@prep.ai.mit.edu.
Copyright (c) 1993, Free Software Foundation, Inc.
See the file COPYING for copyright information concerning this
distribution and all its components.
*** FreeBSD note:
*** You will want to add a user entry to your /etc/passwd file for the
*** user-id that owns gnats-related databases on your server.
*** Something of the form:
*** "gnats:*:61:61:GNATS database owner:/usr/local/share/gnats/gnats-db:"
*** should do just fine (put it in your ftpusers file!).
***
*** Don't forget to run /usr/local/libexec/gnats/mkcat as gnats.
WWW: http://sourceware.cygnus.com/gnats/ WWW: http://sourceware.cygnus.com/gnats/

View file

@ -1,2 +1,7 @@
See http://sourceware.cygnus.com/gnats/ for the official web page You will want to add a user entry to your /etc/passwd file for the
and don't forget to run /usr/local/libexec/gnats/mkcat as gnats. user-id that owns gnats-related databases on your server.
Something of the form:
"gnats:*:61:61:GNATS database owner:${PREFIX}/share/gnats/gnats-db:"
should do just fine (put it in your ftpusers file!).
Don't forget to run ${PREFIX}/libexec/gnats/mkcat as gnats.