From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 25 10:10:02 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D72E106566C for ; Tue, 25 Oct 2011 10:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 05CAE8FC15 for ; Tue, 25 Oct 2011 10:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PAA1XC045939 for ; Tue, 25 Oct 2011 10:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p9PAA1Qh045938; Tue, 25 Oct 2011 10:10:01 GMT (envelope-from gnats) Resent-Date: Tue, 25 Oct 2011 10:10:01 GMT Resent-Message-Id: <201110251010.p9PAA1Qh045938@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Ruslan Mahmatkhanov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B79A8106566C for ; Tue, 25 Oct 2011 10:01:49 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9DD108FC17 for ; Tue, 25 Oct 2011 10:01:49 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p9PA1nuj071356 for ; Tue, 25 Oct 2011 10:01:49 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p9PA1nMK071354; Tue, 25 Oct 2011 10:01:49 GMT (envelope-from nobody) Message-Id: <201110251001.p9PA1nMK071354@red.freebsd.org> Date: Tue, 25 Oct 2011 10:01:49 GMT From: Ruslan Mahmatkhanov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/161987: [PATCH] databases/postgresql91-server: cleanup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2011 10:10:02 -0000 >Number: 161987 >Category: ports >Synopsis: [PATCH] databases/postgresql91-server: cleanup >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 25 10:10:01 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Ruslan Mahmatkhanov >Release: 10.0-CURRENT >Organization: >Environment: 10.0-CURRENT i386 >Description: - do not conflict with postgresql 7.x (we don't have them in a tree anymore) - remove not-supported FreeBSD versions - whitespace fixes in pkg-descr - remove empty pkg-plist (portlint doesn't seems care) >How-To-Repeat: >Fix: Patch attached with submission follows: diff --git a/Makefile b/Makefile index 1ddce31..8d0e94d 100644 --- a/Makefile +++ b/Makefile @@ -16,9 +16,9 @@ PKGNAMESUFFIX?= -server MAINTAINER?= girgen@FreeBSD.org COMMENT?= The most advanced open-source database available anywhere -CONFLICTS?= ${PORTNAME}-client-[78]* \ +CONFLICTS?= ${PORTNAME}-client-8* \ ${PORTNAME}-client-9.[02-9]* \ - ${PORTNAME}${PKGNAMESUFFIX}-[78]* \ + ${PORTNAME}${PKGNAMESUFFIX}-8* \ ${PORTNAME}${PKGNAMESUFFIX}-9.[02-9] WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION} @@ -178,7 +178,7 @@ INSTALL_TARGET= install INSTALL_TARGET= install-strip . endif -.if (${OSVERSION} >= 700000) && !defined(WITHOUT_GSSAPI) +.if !defined(WITHOUT_GSSAPI) CONFIGURE_ARGS+=--with-gssapi .if !defined(WITH_MIT_KRB5) && !defined(WITH_HEIMDAL_KRB5) # Kerberos libraries will pull the proper GSSAPI library diff --git a/pkg-descr b/pkg-descr index f8f8a9e..99641bd 100644 --- a/pkg-descr +++ b/pkg-descr @@ -3,19 +3,19 @@ almost all SQL constructs, including subselects, transactions, and user-defined types and functions. It is the most advanced open-source database available anywhere. Commercial Support is also available. -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into +The original Postgres code was the effort of many graduate students, +undergraduate students, and staff programmers working under the direction of +Professor Michael Stonebraker at the University of California, Berkeley. In +1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query +language to SQL and created a new database system which came to known as +Postgres95. Many others contributed to the porting, testing, debugging and +enhancement of the Postgres95 code. As the code improved, and 1995 faded into memory, PostgreSQL was born. -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the +PostgreSQL development is presently being performed by a team of Internet +developers who are now responsible for all current and future development. The +development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). +Support is available from the PostgreSQL developer/user community through the support mailing list (questions@PostgreSQL.ORG). PostgreSQL is free and the complete source is available. diff --git a/pkg-plist b/pkg-plist deleted file mode 100644 index 9c9bab3..0000000 --- a/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -@comment to make portlint happy >Release-Note: >Audit-Trail: >Unformatted: