diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-21 17:49:28 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-21 17:49:28 +0000 |
commit | 46107b1b49c754307d17dda24a9a2f945fc1f983 (patch) | |
tree | 83e92fe6f39f393e0cb9c0f0f0c8ec5db6e7a1d3 | |
parent | New version with avifile, libmpeg3 and libflash support (diff) | |
download | gentoo-2-46107b1b49c754307d17dda24a9a2f945fc1f983.tar.gz gentoo-2-46107b1b49c754307d17dda24a9a2f945fc1f983.tar.bz2 gentoo-2-46107b1b49c754307d17dda24a9a2f945fc1f983.zip |
*** empty log message ***
-rw-r--r-- | dev-util/pkgconfig/files/digest-pkgconfig-0.7.0 | 1 | ||||
-rw-r--r-- | dev-util/pkgconfig/pkgconfig-0.7.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/dev-util/pkgconfig/files/digest-pkgconfig-0.7.0 b/dev-util/pkgconfig/files/digest-pkgconfig-0.7.0 new file mode 100644 index 000000000000..bf67bc5ff55e --- /dev/null +++ b/dev-util/pkgconfig/files/digest-pkgconfig-0.7.0 @@ -0,0 +1 @@ +MD5 6d4cb8bc535f21e99f9ca640ec087193 pkgconfig-0.7.0.tar.gz diff --git a/dev-util/pkgconfig/pkgconfig-0.7.0.ebuild b/dev-util/pkgconfig/pkgconfig-0.7.0.ebuild new file mode 100644 index 000000000000..c1d90e99ebbe --- /dev/null +++ b/dev-util/pkgconfig/pkgconfig-0.7.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Your Name <your email> +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.7.0.ebuild,v 1.1 2001/06/21 17:49:28 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Package Config utility used by DirectFB" +SRC_URI="http://www.directfb.org/download/contrib/${A}" +HOMEPAGE="http://" + +DEPEND="virtual/glibc" + +src_compile() { + + try ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} + try make + +} + +src_install () { + + try make DESTDIR=${D} install + dodoc AUTHORS COPYING ChangeLog NEWS README +} + |