diff options
author | Ian Leitch <port001@gentoo.org> | 2003-11-12 18:40:56 +0000 |
---|---|---|
committer | Ian Leitch <port001@gentoo.org> | 2003-11-12 18:40:56 +0000 |
commit | 781a9f169da6a20fc8eebeb31befd9c28f74ce82 (patch) | |
tree | 2a3bf3bf122f6f4866161e7fa9092decb730ced4 | |
parent | Version bump and 0.2.5 marked stable on x86 (diff) | |
download | historical-781a9f169da6a20fc8eebeb31befd9c28f74ce82.tar.gz historical-781a9f169da6a20fc8eebeb31befd9c28f74ce82.tar.bz2 historical-781a9f169da6a20fc8eebeb31befd9c28f74ce82.zip |
Version bump and 0.2.5 marked stable on x86
-rw-r--r-- | app-misc/pal/Manifest | 4 | ||||
-rw-r--r-- | app-misc/pal/files/digest-pal-0.3.0 | 1 | ||||
-rw-r--r-- | app-misc/pal/pal-0.2.5.ebuild | 4 | ||||
-rw-r--r-- | app-misc/pal/pal-0.3.0.ebuild | 34 |
4 files changed, 39 insertions, 4 deletions
diff --git a/app-misc/pal/Manifest b/app-misc/pal/Manifest index e468e7a1f68e..43490ea0ebe4 100644 --- a/app-misc/pal/Manifest +++ b/app-misc/pal/Manifest @@ -1,6 +1,6 @@ -MD5 a3bcb6d0bad927c63647029d2a605616 pal-0.2.5.ebuild 776 +MD5 b810491e72ca3a9e2a4bc7ca89f54641 pal-0.2.5.ebuild 776 MD5 5b4c05576c2eb61d87a6d991c338f70c pal-0.3.0.ebuild 651 -MD5 6694bb7c390038d896aae7afc1b40ef4 ChangeLog 575 +MD5 7d7dfc9d0c53b3128f96f54502da996a ChangeLog 575 MD5 e81faf30eaebe278f1e13a079b316fe8 metadata.xml 519 MD5 0456d30fc7820b510119bf21d01a53ab files/digest-pal-0.2.5 57 MD5 dbe4a5804d4029959406577e59afa771 files/digest-pal-0.3.0 57 diff --git a/app-misc/pal/files/digest-pal-0.3.0 b/app-misc/pal/files/digest-pal-0.3.0 new file mode 100644 index 000000000000..49a79e829ebe --- /dev/null +++ b/app-misc/pal/files/digest-pal-0.3.0 @@ -0,0 +1 @@ +MD5 f3ef2a0e13da55d70ca77db4b105f1c3 pal-0.3.0.tgz 76019 diff --git a/app-misc/pal/pal-0.2.5.ebuild b/app-misc/pal/pal-0.2.5.ebuild index 9ca11a694d79..b94bbd55a86a 100644 --- a/app-misc/pal/pal-0.2.5.ebuild +++ b/app-misc/pal/pal-0.2.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pal/pal-0.2.5.ebuild,v 1.2 2003/10/03 16:34:18 port001 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/pal/pal-0.2.5.ebuild,v 1.3 2003/11/12 18:40:52 port001 Exp $ IUSE="" DESCRIPTION="pal command-line calendar program" @@ -9,7 +9,7 @@ HOMEPAGE="http://scott.kuhlweb.com/compu/pal/index.html" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~x86" +KEYWORDS="x86" S="${WORKDIR}/${P}/src" diff --git a/app-misc/pal/pal-0.3.0.ebuild b/app-misc/pal/pal-0.3.0.ebuild new file mode 100644 index 000000000000..3efca05e0677 --- /dev/null +++ b/app-misc/pal/pal-0.3.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $ + +IUSE="" +DESCRIPTION="pal command-line calendar program" +SRC_URI="http://scott.kuhlweb.com/compu/pal/${P}.tgz" +HOMEPAGE="http://scott.kuhlweb.com/compu/pal/index.html" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +S="${WORKDIR}/${P}/src" + +DEPEND=">=dev-libs/glib-2.0 + sys-devel/gettext + virtual/glibc + sys-libs/readline" + +src_unpack() { + unpack ${P}.tgz + cd ${S} + sed -i -e "s/-O2 -Wall/${CFLAGS}/" Makefile +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install-no-rm || die "Install failed" +} + |