diff options
author | 2002-01-30 20:50:43 +0000 | |
---|---|---|
committer | 2002-01-30 20:50:43 +0000 | |
commit | 1a840c66005e18fb82fb7d3ab1ef0b91c6819e02 (patch) | |
tree | 718814858f0a6afc5a84e98028510c0b43c161e6 /x11-libs/docklib/docklib-0.2.ebuild | |
parent | Latest version. Of course, the package.mask blocks this version too. (diff) | |
download | gentoo-2-1a840c66005e18fb82fb7d3ab1ef0b91c6819e02.tar.gz gentoo-2-1a840c66005e18fb82fb7d3ab1ef0b91c6819e02.tar.bz2 gentoo-2-1a840c66005e18fb82fb7d3ab1ef0b91c6819e02.zip |
initial revision.
Diffstat (limited to 'x11-libs/docklib/docklib-0.2.ebuild')
-rw-r--r-- | x11-libs/docklib/docklib-0.2.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/x11-libs/docklib/docklib-0.2.ebuild b/x11-libs/docklib/docklib-0.2.ebuild new file mode 100644 index 000000000000..1312e3b015de --- /dev/null +++ b/x11-libs/docklib/docklib-0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright (c) Vitaly Kushneriuk +# Distributed under the terms of the GNU General Public License, v2. +# Maintainer: Vitaly Kushneriuk<vitaly@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/x11-libs/docklib/docklib-0.2.ebuild,v 1.1 2002/01/30 20:50:43 vitaly Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="Library for Window Maker dock applications." +SRC_URI="http://linuxberg.surfnet.nl/files/x11/dev/docklib-0.2.tar.gz" +HOMEPAGE="http://www.windowmaker.org" +DEPEND="x11-base/xfree" +#RDEPEND="" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + #make \ + # prefix=${D}/usr \ + # mandir=${D}/usr/share/man \ + # infodir=${D}/usr/share/info \ + # install || die +} |