diff options
author | Donnie Berkholz <donnie@supernova.(none)> | 2006-09-04 11:55:42 -0700 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-04 11:55:42 -0700 |
commit | 2b0a4b27bc41b399c900bbc11f60f64a831b7c6c (patch) | |
tree | 323ea4e2eb5164c49ecf5e13e961b2245146abd1 /app-admin | |
parent | Add alchemist for system-config-httpd (diff) | |
download | dberkholz-2b0a4b27bc41b399c900bbc11f60f64a831b7c6c.tar.gz dberkholz-2b0a4b27bc41b399c900bbc11f60f64a831b7c6c.tar.bz2 dberkholz-2b0a4b27bc41b399c900bbc11f60f64a831b7c6c.zip |
Add system-config-httpd
Diffstat (limited to 'app-admin')
3 files changed, 54 insertions, 0 deletions
diff --git a/app-admin/system-config-httpd/Manifest b/app-admin/system-config-httpd/Manifest new file mode 100644 index 0000000..f07a0b4 --- /dev/null +++ b/app-admin/system-config-httpd/Manifest @@ -0,0 +1,8 @@ +DIST system-config-httpd-1.3.3-1.1.1.src.rpm 833094 RMD160 2a96e737d3b1b8ef9128ca149edd46fb60ae3b30 SHA1 db88aee34a952aff5aef69bd8f68535813132d68 SHA256 e52343a1290fd39b0b55fd58ab6961c998104e3423de72e7b2574eb84907d942 +EBUILD system-config-httpd-1.3.3.ebuild 996 RMD160 0c8ed4ff60a5dfc0e88e672fc8ef0f02bd410e2f SHA1 f46b97f9dd93f3792d3b60099e924208138d5176 SHA256 2caad10f63d6586cc6d5a29fef304663013f993a30773261b9e37ecb7987e89e +MD5 78175fa35ed4c91d325ee3d2aa7932c4 system-config-httpd-1.3.3.ebuild 996 +RMD160 0c8ed4ff60a5dfc0e88e672fc8ef0f02bd410e2f system-config-httpd-1.3.3.ebuild 996 +SHA256 2caad10f63d6586cc6d5a29fef304663013f993a30773261b9e37ecb7987e89e system-config-httpd-1.3.3.ebuild 996 +MD5 271f6db54f7a01ded6433812c9c276c3 files/digest-system-config-httpd-1.3.3 298 +RMD160 556178dd7dd9aa325f569871ea1f3605d39b93e3 files/digest-system-config-httpd-1.3.3 298 +SHA256 78a07bfaf5b309e7cb67075a9925a1dcd31e6957a0c7b1262f28f44a7dc61207 files/digest-system-config-httpd-1.3.3 298 diff --git a/app-admin/system-config-httpd/files/digest-system-config-httpd-1.3.3 b/app-admin/system-config-httpd/files/digest-system-config-httpd-1.3.3 new file mode 100644 index 0000000..ec82282 --- /dev/null +++ b/app-admin/system-config-httpd/files/digest-system-config-httpd-1.3.3 @@ -0,0 +1,3 @@ +MD5 3cfcd670ba650ed5781e03d0f7ba130c system-config-httpd-1.3.3-1.1.1.src.rpm 833094 +RMD160 2a96e737d3b1b8ef9128ca149edd46fb60ae3b30 system-config-httpd-1.3.3-1.1.1.src.rpm 833094 +SHA256 e52343a1290fd39b0b55fd58ab6961c998104e3423de72e7b2574eb84907d942 system-config-httpd-1.3.3-1.1.1.src.rpm 833094 diff --git a/app-admin/system-config-httpd/system-config-httpd-1.3.3.ebuild b/app-admin/system-config-httpd/system-config-httpd-1.3.3.ebuild new file mode 100644 index 0000000..850722d --- /dev/null +++ b/app-admin/system-config-httpd/system-config-httpd-1.3.3.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils rpm + +# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source +# tarball out of it +RPMREV="1.1.1" + +DESCRIPTION="Apache configuration tool" +HOMEPAGE="http://fedora.redhat.com/projects/config-tools/" +SRC_URI="mirror://fedora/development/source/SRPMS/${P}-${RPMREV}.src.rpm" +LICENSE="" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="" +RDEPEND="dev-libs/alchemist + =dev-python/pygtk-2* + dev-lang/python + =dev-python/gnome-python-2* + >=net-www/apache-2.0.52-r3 + sys-apps/usermode + dev-libs/libxslt" +DEPEND="${RDEPEND} + sys-devel/gettext + dev-util/intltool" + +pkg_setup() { + if ! built_with_use dev-libs/libxslt python; then + local msg="Build dev-libs/libxslt with USE=python" + eerror "$msg" + die "$msg" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + make_desktop_entry /usr/bin/${PN} + + fperms 644 /etc/pam.d/${PN} +} |