mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
1604951b30
While here: databases/pg_reorg - stagify databases/iplike - convert to USES=libtool - strip binarie databases/ip4r - strip binaries databases/postgresql-libpgeasy - convert to USES=libtool - strip binaries - stagify databases/postgresql-libpqxx - convert to USES=libtool - strip binaries databases/postgresql-libpqxx3 - convert to USES=libtool - strip binaries
32 lines
837 B
Makefile
32 lines
837 B
Makefile
# Created by: Palle Girgensohn <girgen@pingpong.net>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMEPREFIX= postgresql-
|
|
PORTNAME= libpgeasy
|
|
PORTVERSION= 3.0.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
|
MASTER_SITE_SUBDIR= projects/gborg/pgeasy/stable
|
|
DIST_SUBDIR= postgresql
|
|
|
|
MAINTAINER= pgsql@FreeBSD.org
|
|
COMMENT= Easy-to-use C interface to PostgreSQL
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
USES= gmake libtool pgsql
|
|
USE_LDCONFIG= YES
|
|
GNU_CONFIGURE= YES
|
|
DOCSDIR= ${PREFIX}/share/doc/postgresql/${PORTNAME}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/postgresql/${PORTNAME}
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/libpgeasy.html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|