diff options
author | Ian Leitch <port001@gentoo.org> | 2005-11-13 16:07:31 +0000 |
---|---|---|
committer | Ian Leitch <port001@gentoo.org> | 2005-11-13 16:07:31 +0000 |
commit | c95f5b6b27250526e4d6efed5ab956c9e5f6a4e6 (patch) | |
tree | d03ac96fc2e8f67171611515fb9ff712c5ca1fb5 /app-misc/pal | |
parent | app-misc/pal:ical (diff) | |
download | historical-c95f5b6b27250526e4d6efed5ab956c9e5f6a4e6.tar.gz historical-c95f5b6b27250526e4d6efed5ab956c9e5f6a4e6.tar.bz2 historical-c95f5b6b27250526e4d6efed5ab956c9e5f6a4e6.zip |
Version bump.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'app-misc/pal')
-rw-r--r-- | app-misc/pal/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/pal/Manifest | 8 | ||||
-rw-r--r-- | app-misc/pal/files/digest-pal-0.3.5_pre1 | 1 | ||||
-rw-r--r-- | app-misc/pal/pal-0.3.5_pre1.ebuild | 52 |
4 files changed, 64 insertions, 4 deletions
diff --git a/app-misc/pal/ChangeLog b/app-misc/pal/ChangeLog index 3b3f918c08c8..8dfed37502da 100644 --- a/app-misc/pal/ChangeLog +++ b/app-misc/pal/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/pal # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pal/ChangeLog,v 1.14 2005/04/21 19:33:08 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/pal/ChangeLog,v 1.15 2005/11/13 16:07:31 port001 Exp $ + +*pal-0.3.5_pre1 (13 Nov 2005) + + 13 Nov 2005; Ian Leitch <port001@gentoo.org> +pal-0.3.5_pre1.ebuild: + Version bump. 21 Apr 2005; Simon Stelling <blubb@gentoo.org> pal-0.3.4.ebuild: stable on amd64 diff --git a/app-misc/pal/Manifest b/app-misc/pal/Manifest index 36435295b7a5..60325ce89e8a 100644 --- a/app-misc/pal/Manifest +++ b/app-misc/pal/Manifest @@ -1,6 +1,8 @@ -MD5 c9d21ebcb92f989f60edcc64e8a1f323 ChangeLog 1643 -MD5 4c455035847023fe9ab80eb0ce978fc1 metadata.xml 520 -MD5 b0e41addaae9b320b6b59bc8936608c5 pal-0.3.3.ebuild 767 +MD5 773265e299f89498ddc1804bfe25bd64 pal-0.3.5_pre1.ebuild 1028 MD5 e2618cc5b8eecfcd899df2375d2a88bc pal-0.3.4.ebuild 761 +MD5 b0e41addaae9b320b6b59bc8936608c5 pal-0.3.3.ebuild 767 +MD5 aba180cb3d5958d7ab1555fe45cf21cd ChangeLog 1764 +MD5 4c455035847023fe9ab80eb0ce978fc1 metadata.xml 520 +MD5 85dfbcae232bab923701ff0ce32b9765 files/digest-pal-0.3.5_pre1 63 MD5 228d68103a2c55df1bc0d80965d42afb files/digest-pal-0.3.3 57 MD5 6794687af78097439e2946d771c61c74 files/digest-pal-0.3.4 58 diff --git a/app-misc/pal/files/digest-pal-0.3.5_pre1 b/app-misc/pal/files/digest-pal-0.3.5_pre1 new file mode 100644 index 000000000000..e8fc92e84b82 --- /dev/null +++ b/app-misc/pal/files/digest-pal-0.3.5_pre1 @@ -0,0 +1 @@ +MD5 c2d48ba30efead8e03245e077754f8d7 pal-0.3.5_pre1.tgz 111965 diff --git a/app-misc/pal/pal-0.3.5_pre1.ebuild b/app-misc/pal/pal-0.3.5_pre1.ebuild new file mode 100644 index 000000000000..3e8491305021 --- /dev/null +++ b/app-misc/pal/pal-0.3.5_pre1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/pal/pal-0.3.5_pre1.ebuild,v 1.1 2005/11/13 16:07:31 port001 Exp $ + +inherit toolchain-funcs + +DESCRIPTION="pal command-line calendar program" +HOMEPAGE="http://palcal.sourceforge.net/" +SRC_URI="http://palcal.sourceforge.net/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="ical" + +DEPEND=">=dev-libs/glib-2.0 + sys-devel/gettext + virtual/libc + sys-libs/readline + ical? ( dev-libs/libical )" + +S="${WORKDIR}/${P}/src" + +src_compile() { + emake \ + CC=$(tc-getCC) \ + OPT="${CFLAGS}" \ + || die "emake failed" + + if useq ical; then + cd convert + emake \ + CC=$(tc-getCC) \ + OPT="${CFLAGS}" \ + ical \ + || die "emake failed" + fi +} + +src_install() { + make DESTDIR="${D}" install-no-rm || die "make install failed" + + if useq ical; then + cd convert + make DESTDIR="${D}" ical-install || die "make ical-install failed" + fi + + cd ${WORKDIR}/${P} + + dodoc ChangeLog +} + |