diff options
author | is <is@pkgsrc.org> | 2004-01-07 13:32:40 +0000 |
---|---|---|
committer | is <is@pkgsrc.org> | 2004-01-07 13:32:40 +0000 |
commit | b53dfb4dd0f141f269cb8522f9da96c8df1f38ab (patch) | |
tree | 1d3236fed2de1f792bc6dc87dff3fb159274507f | |
parent | aadf693fff1e1a628593213eb9ae8ef581fd0aa8 (diff) | |
download | pkgsrc-b53dfb4dd0f141f269cb8522f9da96c8df1f38ab.tar.gz |
Split out Makefile.common, for the benefit of the -doc package.
-rw-r--r-- | databases/libpqxx/Makefile | 8 | ||||
-rw-r--r-- | databases/libpqxx/Makefile.common | 13 |
2 files changed, 15 insertions, 6 deletions
diff --git a/databases/libpqxx/Makefile b/databases/libpqxx/Makefile index f97fa87d191..480ba2d5993 100644 --- a/databases/libpqxx/Makefile +++ b/databases/libpqxx/Makefile @@ -1,12 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2004/01/07 11:22:49 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2004/01/07 13:32:40 is Exp $ # -DISTNAME= libpqxx-2.1.3 -CATEGORIES= databases -MASTER_SITES= ftp://gborg.postgresql.org/pub/libpqxx/stable/ +.include "../../databases/libpqxx/Makefile.common" -MAINTAINER= is@NetBSD.org -HOMEPAGE= http://pqxx.tk/ COMMENT= C++ interface to postgresql-lib NOT_FOR_PLATFORM= NetBSD-*-pc532 diff --git a/databases/libpqxx/Makefile.common b/databases/libpqxx/Makefile.common new file mode 100644 index 00000000000..bc13eef8472 --- /dev/null +++ b/databases/libpqxx/Makefile.common @@ -0,0 +1,13 @@ +# $NetBSD: Makefile.common,v 1.1 2004/01/07 13:32:40 is Exp $ +# + +LIBPQXX_VERSION= 2.1.3 +DISTNAME= libpqxx-${LIBPQXX_VERSION} +CATEGORIES= databases +MASTER_SITES= ftp://gborg.postgresql.org/pub/libpqxx/stable/ + +MAINTAINER= is@NetBSD.org +HOMEPAGE= http://pqxx.tk/ + +DISTINFO_FILE= ${.CURDIR}/../../databases/libpqxx/distinfo +PATCHDIR= ${.CURDIR}/../../databases/libpqxx/patches |