diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-08-03 16:22:36 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-08-03 16:22:36 +0000 |
commit | 495ec043da885fd0d7826ac39147aab1b8173910 (patch) | |
tree | 535e5b53c1ad84f6ad43dc8018cdc69eed68d92d /sys-libs/gdbm | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-495ec043da885fd0d7826ac39147aab1b8173910.tar.gz gentoo-2-495ec043da885fd0d7826ac39147aab1b8173910.tar.bz2 gentoo-2-495ec043da885fd0d7826ac39147aab1b8173910.zip |
*** empty log message ***
Diffstat (limited to 'sys-libs/gdbm')
-rw-r--r-- | sys-libs/gdbm/gdbm-1.8.0-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sys-libs/gdbm/gdbm-1.8.0-r1.ebuild b/sys-libs/gdbm/gdbm-1.8.0-r1.ebuild new file mode 100644 index 000000000000..f011435770e2 --- /dev/null +++ b/sys-libs/gdbm/gdbm-1.8.0-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gdbm/gdbm-1.8.0-r1.ebuild,v 1.1 2000/08/03 16:22:36 achim Exp $ + +# FOR SOME REASON, THE CONFIGURE SCRIPT DOES NOT USE THE EXPORTED CFLAGS, SO +# THIS LIBRARY ONLY HAS -O OPTS, WE WON'T WORRY ABOUT THIS FOR SUCH AN +# INSIGNIFICANT LIB, but one day... + +P=gdbm-1.8.0 +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Standard GNU database libraries included for compatibility with Perl" +CATEGORY="sys-libs" +SRC_URI="ftp://prep.ai.mit.edu/gnu/gdbm/gdbm-1.8.0.tar.gz" +HOMEPAGE="http://www.gnu.org/software/gdbm/gdbm.html" + +src_compile() { + ./configure --host=${CHOST} --prefix=/usr + make +} + +src_install() { + into /usr + dolib.a libgdbm.la .libs/libgdbm.a + dolib.so .libs/libgdbm.so.2.0.0 + dosym libgdbm.so.2.0.0 /usr/lib/libgdbm.so.2 + dosym libgdbm.so.2.0.0 /usr/lib/libgdbm.so + insinto /usr/include + doins gdbm.h + doman gdbm.3 + doinfo gdbm.info + dodoc COPYING ChangeLog NEWS README +} + + + |