diff options
author | Ian Leitch <port001@gentoo.org> | 2003-10-02 22:18:54 +0000 |
---|---|---|
committer | Ian Leitch <port001@gentoo.org> | 2003-10-02 22:18:54 +0000 |
commit | 598122b0a6f24366d2f6e2f6772cdd39d341ec5e (patch) | |
tree | 6548111f1a9a60a1a3e6b7bdc4bc6c3fee37c5f9 /app-misc/pal | |
parent | New package: pal (diff) | |
download | gentoo-2-598122b0a6f24366d2f6e2f6772cdd39d341ec5e.tar.gz gentoo-2-598122b0a6f24366d2f6e2f6772cdd39d341ec5e.tar.bz2 gentoo-2-598122b0a6f24366d2f6e2f6772cdd39d341ec5e.zip |
New package: pal
Diffstat (limited to 'app-misc/pal')
-rw-r--r-- | app-misc/pal/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/pal/Manifest | 4 | ||||
-rw-r--r-- | app-misc/pal/metadata.xml | 12 | ||||
-rw-r--r-- | app-misc/pal/pal-0.2.5.ebuild | 33 |
4 files changed, 57 insertions, 1 deletions
diff --git a/app-misc/pal/ChangeLog b/app-misc/pal/ChangeLog new file mode 100644 index 000000000000..4cd1124e3302 --- /dev/null +++ b/app-misc/pal/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-misc/pal +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/pal/ChangeLog,v 1.1 2003/10/02 22:18:50 port001 Exp $ + +*pal-0.2.5 (03 Oct 2003) + + 03 Oct 2003; Ian Leitch <port001@gentoo.org> pal-0.2.5.ebuild: + New package, submited by authority of its author Scott Kuhl + diff --git a/app-misc/pal/Manifest b/app-misc/pal/Manifest index 5233c32f4371..83523a566137 100644 --- a/app-misc/pal/Manifest +++ b/app-misc/pal/Manifest @@ -1,2 +1,4 @@ -MD5 6491bd5e6e88e3d4f15629806d46f763 pal-0.2.5.ebuild 641 +MD5 6c4b99c23a703d90020bafcb4f32f6ff pal-0.2.5.ebuild 734 +MD5 1a9ac232e8d5f66e818c9476fa315fa0 ChangeLog 361 +MD5 e81faf30eaebe278f1e13a079b316fe8 metadata.xml 519 MD5 0456d30fc7820b510119bf21d01a53ab files/digest-pal-0.2.5 57 diff --git a/app-misc/pal/metadata.xml b/app-misc/pal/metadata.xml new file mode 100644 index 000000000000..3fbac03a98b6 --- /dev/null +++ b/app-misc/pal/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>noherd</herd> +<maintainer> + <email>port001@gentoo.org</email> + <name>Ian Leitch</name> +</maintainer> +<longdescription> + pal is a command-line calendar program for Unix/Linux systems that can keep track of events. It has similarities with the Unix cal command, the more complex GNU gcal program and the calendar program distributed with the BSDs. +</longdescription> +</pkgmetadata> diff --git a/app-misc/pal/pal-0.2.5.ebuild b/app-misc/pal/pal-0.2.5.ebuild new file mode 100644 index 000000000000..3f51985b7b09 --- /dev/null +++ b/app-misc/pal/pal-0.2.5.ebuild @@ -0,0 +1,33 @@ +# 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.1 2003/10/02 22:18:50 port001 Exp $ + +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" + +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" +} + |