diff --git a/devel/terminality/Makefile b/devel/terminality/Makefile index 50a6bd8e3c9a..0c610a1d65cf 100644 --- a/devel/terminality/Makefile +++ b/devel/terminality/Makefile @@ -1,28 +1,28 @@ # ex:ts=8 # New ports collection makefile for: terminality # Date created: Apr 28, 2001 # Whom: ijliao # # $FreeBSD$ # PORTNAME= terminality PORTVERSION= 2.1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= gabor DISTNAME= tn-${PORTVERSION} -MAINTAINER= sahil@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= A cross-platform terminal manipulation library do-install: @${MKDIR} ${PREFIX}/include/tn ${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/tn ${INSTALL_DATA} ${WRKSRC}/libtn.a ${PREFIX}/lib .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR}/screenshot ${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} .endif .include diff --git a/editors/sted/Makefile b/editors/sted/Makefile index 12c7a95fd3f8..7c94378cacab 100644 --- a/editors/sted/Makefile +++ b/editors/sted/Makefile @@ -1,40 +1,40 @@ # ex:ts=8 # New ports collection makefile for: sted # Date created: 19 May 1998 # Whom: Andrey Zakhvatov # # $FreeBSD$ # PORTNAME= sted PORTVERSION= 0.2.2 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= gabor -MAINTAINER= sahil@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Simple/Small/Stupid Text Editor WRKSRC= ${WRKDIR}/sted MAN1= sted.1 PORTDOCS= CHANGES COPYING README PLIST_FILES= bin/sted post-patch: @${REINPLACE_CMD} -e "s|CC = gcc|CC ?= gcc|" \ -e "s|C_OPTS = -Wall -O2|C_OPTS = ${CFLAGS}|" \ ${WRKSRC}/Makefile @${REINPLACE_CMD} "s|||" ${WRKSRC}/sted.c do-install: @ ${INSTALL_PROGRAM} ${WRKSRC}/sted ${PREFIX}/bin @ ${INSTALL_MAN} ${WRKSRC}/sted.1 ${PREFIX}/man/man1 .if !defined(NOPORTDOCS) @ ${MKDIR} ${DOCSDIR} .for file in ${PORTDOCS} @ ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} .endfor .endif .include diff --git a/mail/clamfilter/Makefile b/mail/clamfilter/Makefile index aafa9e3cd6b8..fe94326502c8 100644 --- a/mail/clamfilter/Makefile +++ b/mail/clamfilter/Makefile @@ -1,35 +1,35 @@ # New ports collection makefile for: clamfilter # Date created: 11 Feb 2005 # Whom: SeaD # # $FreeBSD$ # # Anyone upgrading this port is advised to check all changes since the # previous tarball; I have updated MASTER_SITES to an alternative # location, but I have no idea if this is an official mirror or not. # # The old site was: http://www.ensita.net/products/clamfilter/ PORTNAME= clamfilter PORTVERSION= 0.5 PORTREVISION= 4 CATEGORIES= mail MASTER_SITES= http://www.wyae.de/software/Retired/ensita-clamfilter/ -MAINTAINER= sahil@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= A small, efficient clamav content filter for Postfix .if defined(WITH_CLAMAV_DEVEL) RUN_DEPENDS= ${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav-devel .else RUN_DEPENDS= ${LOCALBASE}/bin/clamdscan:${PORTSDIR}/security/clamav .endif SUB_FILES= pkg-message PLIST_FILES= bin/clamfilter post-install: @${CAT} ${PKGMESSAGE} .include diff --git a/mail/gld/Makefile b/mail/gld/Makefile index 8913be8fed86..dc2592dc9dc5 100644 --- a/mail/gld/Makefile +++ b/mail/gld/Makefile @@ -1,79 +1,79 @@ # New ports collection makefile for: gld # Date created: 15 Jul 2004 # Whom: Blaz Zupan # # $FreeBSD$ # PORTNAME= gld PORTVERSION= 1.8 PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.gasmi.net/down/ EXTRACT_SUFX= .tgz -MAINTAINER= sahil@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Greylisting daemon for Postfix USE_RC_SUBR= gld HAS_CONFIGURE= yes SUB_FILES= pkg-message OPTIONS= MYSQL "MySQL support" on \ PGSQL "PgSQL support" off \ LOCAL_DB_SERVER "RUN_DEPEND also on selected DB server" off .include .if defined(WITH_MYSQL) && defined(WITH_PGSQL) BROKEN= Cannot compile with both MySQL and PgSQL support .endif .if defined(WITH_MYSQL) CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} USE_MYSQL= yes . if defined(WITH_LOCAL_DB_SERVER) RUN_DEPENDS+= mysql-server>=0:${PORTSDIR}/databases/mysql${MYSQL_VER}-server SUB_LIST+= MYSQL=mysql SUB_LIST+= PGSQL= . else SUB_LIST+= MYSQL= . endif .endif .if defined(WITH_PGSQL) CONFIGURE_ARGS+= --with-pgsql=${LOCALBASE} USE_PGSQL= yes . if defined(WITH_LOCAL_DB_SERVER) RUN_DEPENDS+= postgresql-server>=0:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server SUB_LIST+= PGSQL=postgresql SUB_LIST+= MYSQL= . else SUB_LIST+= PGSQL= . endif .endif post-patch: ${REINPLACE_CMD} -e 's|\(@CC@\ \)-O2|\1${CFLAGS}|' \ ${WRKSRC}/Makefile.in pre-build: ${REINPLACE_CMD} -e 's,"/etc/gld.conf","${PREFIX}/etc/gld.conf",' ${WRKSRC}/gld.h do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gld ${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/gld.conf ${PREFIX}/etc/gld.conf-dist .if !exists(${PREFIX}/etc/gld.conf) ${INSTALL_DATA} ${WRKSRC}/gld.conf ${PREFIX}/etc/gld.conf .endif .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for FILE in HISTORY LICENCE README table-whitelist.sql tables.mysql tables.pgsql ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} .endfor .endif post-install: @${CAT} ${PKGMESSAGE} .include