blob: 5d31a89d907a047f64fdd11bad515d4ce6b1e576 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: First Last <your email>
# $Header: /var/cvsroot/gentoo-x86/x11-misc/gclipper/gclipper-1.1a.ebuild,v 1.4 2002/07/08 21:31:06 aliz Exp $
S=${WORKDIR}/${PN}
DESCRIPTION="GClipper is a multiple buffer clipboard that automatically fetches new selections and maintains them in a history."
SRC_URI="http://www.thunderstorms.org/gclipper/gclipper-1.1a.tar.gz"
# Homepage, not used by Portage directly but handy for developer reference
HOMEPAGE="http://www.theleaf.be"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="=x11-libs/gtk+-1.2*"
src_compile() {
emake || die
}
src_install () {
dobin gclipper
dodoc Changelog COPYING README
}
|