libpq++/0040755000000000000000000000000007664507220011025 5ustar rootrootlibpq++/Manifest0100644000000000000000000000017507663431770012523 0ustar rootrootMD5 4b1ead79a38c69a60d1a82cdfbb88b8a libpq++-4.0.ebuild 785 MD5 312b07ad4bf840d75840b7410d48f268 files/digest-libpq++-4.0 62 libpq++/files/0040755000000000000000000000000007663431770012134 5ustar rootrootlibpq++/files/digest-libpq++-4.00100644000000000000000000000007607663431770015070 0ustar rootrootMD5 da71cb79ef45cef55f4bc97a33a0857d libpq++-4.0.tar.gz 25809 libpq++/libpq++-4.0.ebuild0100644000000000000000000000164207663432150013745 0ustar rootroot# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later DESCRIPTION="C++ wrapper for the libpq Postgresql library" HOMEPAGE="http://gborg.postgresql.org/" SRC_URI="ftp://gborg.postgresql.org/pub/libpqpp/stable/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="x86 ~ppc" RDEPEND=">=dev-db/postgresql-7.3" S=${WORKDIR}/${P} src_unpack(){ cd ${WORKDIR} unpack "${P}.tar.gz" einfo "${P}" } src_install() { cd ${S} sed "s|^POSTGRES_HOME=/usr/local/pgsql$|POSTGRES_HOME=/usr|g" Makefile > Makefile.new && mv Makefile.new Makefile emake sed "s|^POSTGRES_HOME=/usr$|POSTGRES_HOME=\${D}usr|g" Makefile > Makefile.new && mv Makefile.new Makefile sed "s|^\tln -s .*$|\tln -s \$(soname) \$(POSTGRES_HOME)/lib/\$(TARGET).so|g" Makefile > Makefile.new && mv Makefile.new Makefile mkdir -p ${D}/usr/{lib,include} einstall install || die "Install failed" }