diff options
author | wg <wg@FreeBSD.org> | 2013-11-03 02:07:46 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-11-03 02:07:46 +0800 |
commit | fc0a9ac0eb7f50545eb1725b9d25f41d0228874d (patch) | |
tree | d110b46884b41e9993e065de2baa67af67a1a313 /databases/p5-DBD-cego | |
parent | d6a8f4df54196fa14f672445ca500a170ba35e08 (diff) | |
download | freebsd-ports-gnome-fc0a9ac0eb7f50545eb1725b9d25f41d0228874d.tar.gz freebsd-ports-gnome-fc0a9ac0eb7f50545eb1725b9d25f41d0228874d.tar.zst freebsd-ports-gnome-fc0a9ac0eb7f50545eb1725b9d25f41d0228874d.zip |
databases/p5-DBD-cego: update to 1.2.8
- Update to 1.2.8
- Fix a quoting bug
PR: ports/183596
Submitted by: Kurt Jaeger <fbsd-ports opsec.eu> (maintainer)
Diffstat (limited to 'databases/p5-DBD-cego')
-rw-r--r-- | databases/p5-DBD-cego/Makefile | 2 | ||||
-rw-r--r-- | databases/p5-DBD-cego/distinfo | 4 | ||||
-rw-r--r-- | databases/p5-DBD-cego/files/patch-makefile-pl | 27 |
3 files changed, 19 insertions, 14 deletions
diff --git a/databases/p5-DBD-cego/Makefile b/databases/p5-DBD-cego/Makefile index f3429cde31e3..201b798a4ca2 100644 --- a/databases/p5-DBD-cego/Makefile +++ b/databases/p5-DBD-cego/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DBD-cego -PORTVERSION= 1.2.7 +PORTVERSION= 1.2.8 CATEGORIES= databases perl5 MASTER_SITES= http://www.lemke-it.com/ PKGNAMEPREFIX= p5- diff --git a/databases/p5-DBD-cego/distinfo b/databases/p5-DBD-cego/distinfo index ed24b6b3f4c6..b365030769a7 100644 --- a/databases/p5-DBD-cego/distinfo +++ b/databases/p5-DBD-cego/distinfo @@ -1,2 +1,2 @@ -SHA256 (DBD-cego-1.2.7.tar.gz) = cf7febaaedbb545f2fe0308dd09e3613653bd302b7837c7213c3267946004f59 -SIZE (DBD-cego-1.2.7.tar.gz) = 28293 +SHA256 (DBD-cego-1.2.8.tar.gz) = fd4fc242edcf7e4e0133061f51f1ba50523d1749a16a6a91bd1663bc940651a5 +SIZE (DBD-cego-1.2.8.tar.gz) = 28283 diff --git a/databases/p5-DBD-cego/files/patch-makefile-pl b/databases/p5-DBD-cego/files/patch-makefile-pl index d3eee863eb20..e082794b8e9e 100644 --- a/databases/p5-DBD-cego/files/patch-makefile-pl +++ b/databases/p5-DBD-cego/files/patch-makefile-pl @@ -1,6 +1,6 @@ ---- Makefile.PL-orig 2013-07-09 09:44:14.000000000 +0200 -+++ Makefile.PL 2013-07-09 09:48:24.000000000 +0200 -@@ -28,33 +28,22 @@ +--- Makefile.PL-orig 2013-11-02 17:48:46.000000000 +0100 ++++ Makefile.PL 2013-11-02 17:52:26.000000000 +0100 +@@ -28,49 +28,30 @@ Getopt::Long::GetOptions( $opt, "help", @@ -31,26 +31,31 @@ - "CC" => "g++", - "LD" => "g++", - "XSPROTOARG" => "-noprototypes", -- 'OPTIMIZE' => '-O6 -DNDEBUG=1', + 'INC' => '-I$(DBI_INSTARCH_DIR) -I/usr/local/include', + 'MYEXTLIB' => '-lcego -llfcxml -llfcbase', + 'CCFLAGS' => '-O2 -pipe -fno-strict-aliasing -fpermissive', + 'LD' => '$(CC) -L/usr/local/lib', + 'XSPROTOARG' => '-noprototypes', -+ 'OPTIMIZE' => '-O3 -DNDEBUG=1', - 'XSOPT' => '-C++', - 'TYPEMAPS' => ['perlobject.map' ], + 'OPTIMIZE' => '-O3 -DNDEBUG=1', +- 'XSOPT' => '-C++', +- 'TYPEMAPS' => ['perlobject.map' ], +- 'LICENSE' => 'gpl3', ++ 'XSOPT' => '-C++', ++ 'TYPEMAPS' => ['perlobject.map' ], ++ 'LICENSE' => 'gpl3', 'clean' => { FILES => 'config.h' }, -@@ -63,12 +53,6 @@ + ); + sub Usage { - print STDERR <<"USAGE"; - Usage: perl $0 [options] +- print STDERR <<"USAGE"; +-Usage: perl $0 [options] - -Possible options are: - - --prefix=<prefix path> Use <prefix> for setting up the appropriate prefix path - to find cego libs and includes - - USAGE +-USAGE ++ print STDERR "Usage: perl $0 [options]\n"; exit 1; } |