diff options
author | Gustavo Felisberto <humpback@gentoo.org> | 2004-09-17 23:12:48 +0000 |
---|---|---|
committer | Gustavo Felisberto <humpback@gentoo.org> | 2004-09-17 23:12:48 +0000 |
commit | 186e746cca19635cadeb256d3ba992e358e1beb4 (patch) | |
tree | 4125e11f5e0492387e4116cf9923808b1a533199 /net-ftp/pureadmin | |
parent | Misc fixes (Manifest recommit) (diff) | |
download | gentoo-2-186e746cca19635cadeb256d3ba992e358e1beb4.tar.gz gentoo-2-186e746cca19635cadeb256d3ba992e358e1beb4.tar.bz2 gentoo-2-186e746cca19635cadeb256d3ba992e358e1beb4.zip |
version update
Diffstat (limited to 'net-ftp/pureadmin')
-rw-r--r-- | net-ftp/pureadmin/ChangeLog | 13 | ||||
-rw-r--r-- | net-ftp/pureadmin/Manifest | 4 | ||||
-rw-r--r-- | net-ftp/pureadmin/files/digest-pureadmin-0.1.11 | 1 | ||||
-rw-r--r-- | net-ftp/pureadmin/pureadmin-0.1.11.ebuild | 57 |
4 files changed, 73 insertions, 2 deletions
diff --git a/net-ftp/pureadmin/ChangeLog b/net-ftp/pureadmin/ChangeLog index 6d3c7bbfa79d..cde9711e6c8b 100644 --- a/net-ftp/pureadmin/ChangeLog +++ b/net-ftp/pureadmin/ChangeLog @@ -1,6 +1,17 @@ # ChangeLog for net-ftp/pureadmin # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pureadmin/ChangeLog,v 1.5 2004/07/10 17:37:35 humpback Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pureadmin/ChangeLog,v 1.6 2004/09/17 23:12:48 humpback Exp $ + +*pureadmin-0.1.11 (18 Sep 2004) + + 18 Sep 2004; Gustavo Felisberto <humpback@gentoo.org>; + +pureadmin-0.1.11.ebuild: + Version update for 0.1.11, mostly a bump with some minor cosmetics + +*pureadmin-0.1.10-r1 18 Sep 2004 + + 18 Sep 2004; <> + # INSERT ENTRY HERE 10 Jul 2004; Gustavo Felisberto <humpback@gentoo.org>; metadata.xml: Taking maintainership of this package due to raker's retire. diff --git a/net-ftp/pureadmin/Manifest b/net-ftp/pureadmin/Manifest index 0338abc8b380..15b87367269b 100644 --- a/net-ftp/pureadmin/Manifest +++ b/net-ftp/pureadmin/Manifest @@ -1,4 +1,6 @@ -MD5 3b727d32bda5828293e9713664307955 ChangeLog 722 +MD5 9d44541edfbecd20c2ed19a8ce8b1d8d ChangeLog 799 MD5 0c3c3bfe13b2bc8bbd31bb3754f330b1 metadata.xml 331 MD5 02aff17b9bd325da310c2f92772bd940 pureadmin-0.1.10.ebuild 1447 +MD5 02aff17b9bd325da310c2f92772bd940 pureadmin-0.1.11.ebuild 1447 MD5 be1c1c77d4ffc790654176a4eabe1e8d files/digest-pureadmin-0.1.10 68 +MD5 eb252f7f2582e68e667dc969c5bfe5d8 files/digest-pureadmin-0.1.11 68 diff --git a/net-ftp/pureadmin/files/digest-pureadmin-0.1.11 b/net-ftp/pureadmin/files/digest-pureadmin-0.1.11 new file mode 100644 index 000000000000..284587aae2a1 --- /dev/null +++ b/net-ftp/pureadmin/files/digest-pureadmin-0.1.11 @@ -0,0 +1 @@ +MD5 9320b18a8a629cf6d3cfb3683d75a3c0 pureadmin-0.1.11.tar.gz 236328 diff --git a/net-ftp/pureadmin/pureadmin-0.1.11.ebuild b/net-ftp/pureadmin/pureadmin-0.1.11.ebuild new file mode 100644 index 000000000000..f0083b3b93b9 --- /dev/null +++ b/net-ftp/pureadmin/pureadmin-0.1.11.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pureadmin/pureadmin-0.1.11.ebuild,v 1.1 2004/09/17 23:12:48 humpback Exp $ + +IUSE="debug gnome doc" + +DESCRIPTION="PureAdmin is a GUI tool used to make the management of PureFTPd a little easier." +HOMEPAGE="http://purify.sourceforge.net" +SRC_URI="mirror://sourceforge/purify/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +DEPEND="sys-libs/glibc + sys-libs/zlib + >=x11-libs/gtk+-2.0" + +src_compile() { + local myconf="" + + use debug && myconf="${myconf} --enable-debug" + + econf ${myconf} || die "configure failed" + + emake || die "emake failed" +} + +src_install() { + einstall || die "einstall failed" + + # Move the docs to the correct location + if use doc; then + dodoc ${D}usr/share/doc/pureadmin/*.txt + rm -rf ${D}usr/share/doc/pureadmin + fi + + # Add a desktop entry for gnome if requested + if use gnome; then + rm ${D}/usr/share/applications + dodir /usr/share/applications + insinto /usr/share/applications + insopts -m 0644 + doins ${S}/tools/pureadmin.desktop + fi +} + +pkg_postinst() { + echo + ewarn "PureAdmin is at an alpha-stage right now and it may break" + ewarn "your configuration. DO NOT use it for safety critical system" + ewarn "or production use!" + echo + einfo "You need root-privileges to be able to use PureAdmin as for now." + einfo "This will probably change in the future." + echo +} |