tags 460366 + patch pending thanks Hi,
I sponsored Barry's QA upload to fix this bug. Attached is the diff. -- | Lucas Nussbaum | [EMAIL PROTECTED] http://www.lucas-nussbaum.net/ | | jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |
diff -u plr-8.2.0.7/debian/control plr-8.2.0.7/debian/control --- plr-8.2.0.7/debian/control +++ plr-8.2.0.7/debian/control @@ -2,7 +2,7 @@ Priority: optional Section: libs Maintainer: Debian QA Group <[EMAIL PROTECTED]> -Build-Depends: cdbs, debhelper (>= 4.0.0), postgresql-server-dev-8.2, r-base-core +Build-Depends: cdbs, debhelper (>= 4.0.0), pkg-config, postgresql-server-dev-8.2, r-base-core Standards-Version: 3.7.2 Package: postgresql-8.2-plr diff -u plr-8.2.0.7/debian/changelog plr-8.2.0.7/debian/changelog --- plr-8.2.0.7/debian/changelog +++ plr-8.2.0.7/debian/changelog @@ -1,3 +1,11 @@ +plr (1:8.2.0.7-3) unstable; urgency=low + + * QA Upload + * Add build-dep on pkg-config + * Fix pg_config call in Makefile (Closes: #460366) + + -- Barry deFreese <[EMAIL PROTECTED]> Fri, 18 Jan 2008 14:16:08 -0500 + plr (1:8.2.0.7-2) unstable; urgency=low * Orphan package (see #228074). diff -u plr-8.2.0.7/debian/install plr-8.2.0.7/debian/install --- plr-8.2.0.7/debian/install +++ plr-8.2.0.7/debian/install @@ -1,3 +1,3 @@ -usr/lib/postgresql/8.2/lib/*.so /usr/lib/postgresql/8.2/lib +usr/lib/*.so /usr/lib/postgresql/8.2/lib usr/share/doc/postgresql-doc-8.2/contrib/* /usr/share/doc/postgresql-8.2-plr/ usr/share/postgresql/8.2/contrib/* /usr/share/postgresql/8.2 only in patch2: unchanged: --- plr-8.2.0.7.orig/Makefile +++ plr-8.2.0.7/Makefile @@ -28,7 +28,7 @@ EXTRA_CLEAN := doc/HTML.index ifdef USE_PGXS -PGXS := $(shell pg_config --pgxs) +PGXS := $(shell /usr/lib/postgresql/8.2/bin/pg_config --pgxs) include $(PGXS) else subdir = contrib/plr

