diff options
Diffstat (limited to 'dev-util/pkgconfig')
-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 +} + |