diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-07-28 15:13:31 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-07-28 15:13:31 +0000 |
commit | 0394b3f6fc8801aeabcd316d1e0515bd57b7267d (patch) | |
tree | 59a61f7476ab76bf854f584ba9d46e8fefde8aa7 /x11-misc/xpad | |
parent | Tested the jp.patch on ppc. (re)Added ppc to KEYWORDS. (diff) | |
download | gentoo-2-0394b3f6fc8801aeabcd316d1e0515bd57b7267d.tar.gz gentoo-2-0394b3f6fc8801aeabcd316d1e0515bd57b7267d.tar.bz2 gentoo-2-0394b3f6fc8801aeabcd316d1e0515bd57b7267d.zip |
Version bump.
Diffstat (limited to 'x11-misc/xpad')
-rw-r--r-- | x11-misc/xpad/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xpad/files/digest-xpad-1.2.1 | 1 | ||||
-rw-r--r-- | x11-misc/xpad/xpad-1.2.1.ebuild | 28 |
3 files changed, 36 insertions, 1 deletions
diff --git a/x11-misc/xpad/ChangeLog b/x11-misc/xpad/ChangeLog index 70083717fbc1..dc0688bc30e7 100644 --- a/x11-misc/xpad/ChangeLog +++ b/x11-misc/xpad/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-misc/xpad # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xpad/ChangeLog,v 1.1 2002/06/02 13:35:15 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xpad/ChangeLog,v 1.2 2002/07/28 15:13:31 aliz Exp $ + +xpad-1.2.1 (28 Jul 2002) + + 28 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> xpad-1.2.1.ebuild : + + Version bump. Ebuild contributed by Michael Terry <msterry@student.umass.edu>. *xpad-1.1 (2 June 2002) 2 June 2002; Michael Terry <msterry@student.umass.edu> ChangeLog : diff --git a/x11-misc/xpad/files/digest-xpad-1.2.1 b/x11-misc/xpad/files/digest-xpad-1.2.1 new file mode 100644 index 000000000000..a77ffe524800 --- /dev/null +++ b/x11-misc/xpad/files/digest-xpad-1.2.1 @@ -0,0 +1 @@ +MD5 b9c889c549b8fc0f6590c8a3eb76b60c xpad-1.2.1.tgz 32669 diff --git a/x11-misc/xpad/xpad-1.2.1.ebuild b/x11-misc/xpad/xpad-1.2.1.ebuild new file mode 100644 index 000000000000..2ffe3a1e0c75 --- /dev/null +++ b/x11-misc/xpad/xpad-1.2.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xpad/xpad-1.2.1.ebuild,v 1.1 2002/07/28 15:13:31 aliz Exp $ + +DESCRIPTION="A GTK+ 2.0 based 'post-it' note system." +HOMEPAGE="http://xpad.sourceforge.net/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND=">=x11-libs/gtk+-2.0.0" +RDEPEND="${DEPEND}" + +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/${PN}/${P}.tgz" + +S=${WORKDIR}/${P} + +src_compile() { + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + + dodoc CHANGES COPYING README TODO +} + + |