diff options
author | Nick Hadaway <raker@gentoo.org> | 2004-06-08 02:31:38 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2004-06-08 02:31:38 +0000 |
commit | 864875dfe37cf4b5dec591b3151b2b4ea6b4abe2 (patch) | |
tree | 34381f554a1095f5696853da191d05134996eaaa /net-ftp | |
parent | Adding 50-r8 and modifying all headers to force the change. (diff) | |
download | historical-864875dfe37cf4b5dec591b3151b2b4ea6b4abe2.tar.gz historical-864875dfe37cf4b5dec591b3151b2b4ea6b4abe2.tar.bz2 historical-864875dfe37cf4b5dec591b3151b2b4ea6b4abe2.zip |
Initial import. A long time coming.
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/pureadmin/ChangeLog | 9 | ||||
-rw-r--r-- | net-ftp/pureadmin/Manifest | 4 | ||||
-rw-r--r-- | net-ftp/pureadmin/files/digest-pureadmin-0.1.10 | 1 | ||||
-rw-r--r-- | net-ftp/pureadmin/metadata.xml | 8 | ||||
-rw-r--r-- | net-ftp/pureadmin/pureadmin-0.1.10.ebuild | 57 |
5 files changed, 79 insertions, 0 deletions
diff --git a/net-ftp/pureadmin/ChangeLog b/net-ftp/pureadmin/ChangeLog new file mode 100644 index 000000000000..dc8f25a66098 --- /dev/null +++ b/net-ftp/pureadmin/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-ftp/pureadmin +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pureadmin/ChangeLog,v 1.1 2004/06/08 02:31:38 raker Exp $ + +*pureadmin-0.1.10 (07 Jun 2004) + + 07 Jun 2004; Nick Hadaway <raker@gentoo.org> pureadmin-0.1.10.ebuild : + Initial import. The ebuild is based loosely on the entry submitted + on bug #45503. diff --git a/net-ftp/pureadmin/Manifest b/net-ftp/pureadmin/Manifest new file mode 100644 index 000000000000..4c10cdc0fd21 --- /dev/null +++ b/net-ftp/pureadmin/Manifest @@ -0,0 +1,4 @@ +MD5 2da4ba1fee4d4ee52a4bd7c370dc6e42 pureadmin-0.1.10.ebuild 1453 +MD5 1fe1632afa4d38fcac89bfd59917dbf6 ChangeLog 407 +MD5 0616eb9e1cca0ddd3b72f221b6b1aa52 metadata.xml 221 +MD5 be1c1c77d4ffc790654176a4eabe1e8d files/digest-pureadmin-0.1.10 68 diff --git a/net-ftp/pureadmin/files/digest-pureadmin-0.1.10 b/net-ftp/pureadmin/files/digest-pureadmin-0.1.10 new file mode 100644 index 000000000000..70a09ac89cb4 --- /dev/null +++ b/net-ftp/pureadmin/files/digest-pureadmin-0.1.10 @@ -0,0 +1 @@ +MD5 bc243bfcec09574a6e416f9468a982e0 pureadmin-0.1.10.tar.gz 197903 diff --git a/net-ftp/pureadmin/metadata.xml b/net-ftp/pureadmin/metadata.xml new file mode 100644 index 000000000000..194b369637e4 --- /dev/null +++ b/net-ftp/pureadmin/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>raker@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/net-ftp/pureadmin/pureadmin-0.1.10.ebuild b/net-ftp/pureadmin/pureadmin-0.1.10.ebuild new file mode 100644 index 000000000000..3fc69b8aa7ab --- /dev/null +++ b/net-ftp/pureadmin/pureadmin-0.1.10.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pureadmin/pureadmin-0.1.10.ebuild,v 1.1 2004/06/08 02:31:38 raker Exp $ + +IUSE="debug gnome" + +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" + +DEPEND="sys-libs/glibc + sys-libs/zlib + >=x11-libs/gtk+-2.0" + +RDEPEND="${DEPEND}" + +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 + dodoc ${D}usr/share/doc/pureadmin/*.txt + rm -rf ${D}usr/share/doc/pureadmin + + # 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 +} |