diff options
author | Tim Yamin <plasmaroo@gentoo.org> | 2005-03-01 11:31:44 +0000 |
---|---|---|
committer | Tim Yamin <plasmaroo@gentoo.org> | 2005-03-01 11:31:44 +0000 |
commit | ffc4df28718e6ead81652166dc78a7905aa9bb9f (patch) | |
tree | 6a5c5a43bdff60d76c51b7c52ba64cde07f56f2c /dev-util/par | |
parent | Version bumped. Thanks to Jackey Yang <043936y@acadiau.ca>; bug #82900. (diff) | |
download | historical-ffc4df28718e6ead81652166dc78a7905aa9bb9f.tar.gz historical-ffc4df28718e6ead81652166dc78a7905aa9bb9f.tar.bz2 historical-ffc4df28718e6ead81652166dc78a7905aa9bb9f.zip |
Initial commit; bug #83595. Thanks to Lars Grunewaldt for the submission.
Package-Manager: portage-2.0.51.16
Diffstat (limited to 'dev-util/par')
-rw-r--r-- | dev-util/par/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/par/Manifest | 4 | ||||
-rw-r--r-- | dev-util/par/files/digest-par-00.05.01 | 1 | ||||
-rw-r--r-- | dev-util/par/metadata.xml | 8 | ||||
-rw-r--r-- | dev-util/par/par-00.05.01.ebuild | 25 |
5 files changed, 47 insertions, 0 deletions
diff --git a/dev-util/par/ChangeLog b/dev-util/par/ChangeLog new file mode 100644 index 000000000000..a95fc9168217 --- /dev/null +++ b/dev-util/par/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-util/par +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/par/ChangeLog,v 1.1 2005/03/01 11:31:44 plasmaroo Exp $ + +*par-00.05.01 (01 Mar 2005) + + 01 Mar 2005; <plasmaroo@gentoo.org> +par-00.05.01.ebuild: + Initial commit; bug #83595. Thanks to Lars Grunewaldt for the submission. + diff --git a/dev-util/par/Manifest b/dev-util/par/Manifest new file mode 100644 index 000000000000..fd709220521a --- /dev/null +++ b/dev-util/par/Manifest @@ -0,0 +1,4 @@ +MD5 71cf8a282e8f00f19548c9e55b17cd38 ChangeLog 366 +MD5 2452c06bcf2dcc377c9e1c6af8afe371 par-00.05.01.ebuild 622 +MD5 a5c50833bcc05f696a75e5dc8bb9eb4d metadata.xml 225 +MD5 af14cdd503a2c8b012e0f794cbf1095a files/digest-par-00.05.01 51 diff --git a/dev-util/par/files/digest-par-00.05.01 b/dev-util/par/files/digest-par-00.05.01 new file mode 100644 index 000000000000..7f0c4d4c4dec --- /dev/null +++ b/dev-util/par/files/digest-par-00.05.01 @@ -0,0 +1 @@ +MD5 c20a295b05c598322d037ecd36a28e38 prc.tgz 62143 diff --git a/dev-util/par/metadata.xml b/dev-util/par/metadata.xml new file mode 100644 index 000000000000..5ef1837f50d4 --- /dev/null +++ b/dev-util/par/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>plasmaroo@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/dev-util/par/par-00.05.01.ebuild b/dev-util/par/par-00.05.01.ebuild new file mode 100644 index 000000000000..64ad1dc714ce --- /dev/null +++ b/dev-util/par/par-00.05.01.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/par/par-00.05.01.ebuild,v 1.1 2005/03/01 11:31:44 plasmaroo Exp $ + +DESCRIPTION="par manipulates PalmOS database files" +HOMEPAGE="http://www.djw.org/product/palm/par/" +SRC_URI="http://www.djw.org/product/palm/par/prc.tgz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" +S="${WORKDIR}/prc" + +src_compile() { + emake || die 'Failed to compile!' + emake par.man || die 'Failed to make man page!' +} + +src_install () { + dobin par + dolib *.a *.so + + mv par.man par.1 + doman par.1 +} |