diff options
author | Damien Krotkine <dams@gentoo.org> | 2005-01-09 23:20:47 +0000 |
---|---|---|
committer | Damien Krotkine <dams@gentoo.org> | 2005-01-09 23:20:47 +0000 |
commit | f2ec1cf96d04a1b2487c96dd7dbd0d4aa2841643 (patch) | |
tree | 9b81447e40ffe5f6413b7a3a51ede0b372df3dbf /app-portage | |
parent | Added ~sparc keyword as it went missing in the version bump. (Manifest recommit) (diff) | |
download | gentoo-2-f2ec1cf96d04a1b2487c96dd7dbd0d4aa2841643.tar.gz gentoo-2-f2ec1cf96d04a1b2487c96dd7dbd0d4aa2841643.tar.bz2 gentoo-2-f2ec1cf96d04a1b2487c96dd7dbd0d4aa2841643.zip |
redundancy setting, search feature, debug
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/profuse/ChangeLog | 7 | ||||
-rw-r--r-- | app-portage/profuse/Manifest | 8 | ||||
-rw-r--r-- | app-portage/profuse/files/digest-profuse-0.14 | 1 | ||||
-rw-r--r-- | app-portage/profuse/profuse-0.14.ebuild | 26 |
4 files changed, 38 insertions, 4 deletions
diff --git a/app-portage/profuse/ChangeLog b/app-portage/profuse/ChangeLog index 2ac9535c1a0c..72115d07c914 100644 --- a/app-portage/profuse/ChangeLog +++ b/app-portage/profuse/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-portage/profuse # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/profuse/ChangeLog,v 1.5 2005/01/01 15:55:23 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/profuse/ChangeLog,v 1.6 2005/01/09 23:20:47 dams Exp $ + +*profuse-0.14 (10 Jan 2005) + + 10 Jan 2005; <dams@gentoo.org> +profuse-0.14.ebuild: + version 0.14 : redundancy setting, search feature, debug *profuse-0.13 (08 Dec 2004) diff --git a/app-portage/profuse/Manifest b/app-portage/profuse/Manifest index 51a465e780f5..87175fbd4954 100644 --- a/app-portage/profuse/Manifest +++ b/app-portage/profuse/Manifest @@ -1,10 +1,12 @@ -MD5 1213ab2c9f2c808950f9fbcc57c6859b ChangeLog 706 -MD5 5f1c3b9a62f513d6a4802b57677c23bf metadata.xml 284 MD5 ecd55dba8a24301cd2594dee521412dd profuse-0.1.ebuild 682 +MD5 5f1c3b9a62f513d6a4802b57677c23bf metadata.xml 284 MD5 283990470145dd88c12d3311b4a1f604 profuse-0.11.ebuild 668 +MD5 1213ab2c9f2c808950f9fbcc57c6859b ChangeLog 706 MD5 9e2955500d68a0d1bb675d93fff898be profuse-0.12.ebuild 668 MD5 c306ab9e4985e861dec746f41ec60fe7 profuse-0.13.ebuild 668 -MD5 6ea98f01c28703bf36ccf141519518d2 files/digest-profuse-0.1 62 +MD5 d27015f4f55c63acd619f40f5aefd9ad profuse-0.14.ebuild 668 MD5 6382a08f07553fe4ffe9297e2ab85632 files/digest-profuse-0.11 64 +MD5 6ea98f01c28703bf36ccf141519518d2 files/digest-profuse-0.1 62 MD5 56089f6fb4c0ff287512cbf3f56031e2 files/digest-profuse-0.12 64 MD5 bb1ffb2c4ae5ff6af32413d29d3c51ac files/digest-profuse-0.13 64 +MD5 c5a384f749e8478f28b3078344bfde6a files/digest-profuse-0.14 64 diff --git a/app-portage/profuse/files/digest-profuse-0.14 b/app-portage/profuse/files/digest-profuse-0.14 new file mode 100644 index 000000000000..b5c08d9dcba8 --- /dev/null +++ b/app-portage/profuse/files/digest-profuse-0.14 @@ -0,0 +1 @@ +MD5 fe9edc1a51cbea2d911def958d5f5332 profuse-0.14.tar.bz2 16494 diff --git a/app-portage/profuse/profuse-0.14.ebuild b/app-portage/profuse/profuse-0.14.ebuild new file mode 100644 index 000000000000..e88137d721f8 --- /dev/null +++ b/app-portage/profuse/profuse-0.14.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/profuse/profuse-0.14.ebuild,v 1.1 2005/01/09 23:20:47 dams Exp $ + +IUSE="" + +MY_P=${PN}-${PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="use flags and profile gtk2 editor, with good features" +HOMEPAGE="http://libconf.net/profuse/" +SRC_URI="http://libconf.net/profuse/download/${MY_P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" + +DEPEND=">=dev-perl/gtk2-fu-0.05 +>=dev-util/libconf-0.39.6" + +src_compile() { + emake || die "make failed" +} + +src_install() { + einstall PREFIX=${D}/usr +} |