blob: 97befa2af90052b261e848bcaa39fbd756bc1c0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-libs/dnd/dnd-1.1.ebuild,v 1.7 2002/08/14 13:05:59 murphy Exp $
S=${WORKDIR}/DND/DNDlib
DESCRIPTION="OffiX' Drag'n'drop library"
HOMEPAGE="http://leb.net/OffiX"
SRC_URI="http://leb.net/OffiX/dnd.1.1.tgz"
SLOT="0"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="x86 sparc sparc64"
DEPEND="virtual/x11"
src_unpack() {
unpack dnd.1.1.tgz
cd ${S}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff || die
}
src_compile() {
econf --with-x || die
emake || die
}
src_install () {
make prefix=${D}/usr install || die
}
|