diff options
author | Donnie Berkholz <donnie@supernova.(none)> | 2006-09-04 11:33:00 -0700 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-09-04 11:33:00 -0700 |
commit | 61495f5578c814e1b56c7905f866c9e45f2e9514 (patch) | |
tree | ecd0ea7d330f3a1d2a00676f03a0e4e423828c24 /app-admin | |
parent | Add gentooification patches to system-config-*. (diff) | |
download | dberkholz-61495f5578c814e1b56c7905f866c9e45f2e9514.tar.gz dberkholz-61495f5578c814e1b56c7905f866c9e45f2e9514.tar.bz2 dberkholz-61495f5578c814e1b56c7905f866c9e45f2e9514.zip |
Add system-config-printer
Diffstat (limited to 'app-admin')
3 files changed, 49 insertions, 0 deletions
diff --git a/app-admin/system-config-printer/Manifest b/app-admin/system-config-printer/Manifest new file mode 100644 index 0000000..8831380 --- /dev/null +++ b/app-admin/system-config-printer/Manifest @@ -0,0 +1,8 @@ +DIST system-config-printer-0.7.27-1.src.rpm 435817 RMD160 1b8f894a60c702fbc77b2e57a012c87e32546447 SHA1 9745ce3f9c7769577268f82c17605aedd418aad0 SHA256 4473912ee4c4fa1b7a0a9c91cd3d2f80817c52212cbb5d978c50e38140a4198b +EBUILD system-config-printer-0.7.27.ebuild 924 RMD160 4c10fa94593a7d6e0e834577672c9106226cad43 SHA1 5b6809a416c80a226f5c1204ab59dd47814c4d94 SHA256 6ca9401582b919c0c6476bc55e7c06252ea93bf9531b0ab3a93c3b62a3da39ff +MD5 fe749b6e85b1452d951049ac9ef1e495 system-config-printer-0.7.27.ebuild 924 +RMD160 4c10fa94593a7d6e0e834577672c9106226cad43 system-config-printer-0.7.27.ebuild 924 +SHA256 6ca9401582b919c0c6476bc55e7c06252ea93bf9531b0ab3a93c3b62a3da39ff system-config-printer-0.7.27.ebuild 924 +MD5 df44e5c3a41c2cf84ea09d2c2ef1a27b files/digest-system-config-printer-0.7.27 295 +RMD160 7ffd3f5a14045b8a0fc14c891d67a3d8b974dbae files/digest-system-config-printer-0.7.27 295 +SHA256 ba6797e0c571d7e63ed154a2dcfaa397b4b286cecf37c25046528db6ee62bedd files/digest-system-config-printer-0.7.27 295 diff --git a/app-admin/system-config-printer/files/digest-system-config-printer-0.7.27 b/app-admin/system-config-printer/files/digest-system-config-printer-0.7.27 new file mode 100644 index 0000000..86c5c24 --- /dev/null +++ b/app-admin/system-config-printer/files/digest-system-config-printer-0.7.27 @@ -0,0 +1,3 @@ +MD5 1b64178ef2e10107e2324c47c0e5aef5 system-config-printer-0.7.27-1.src.rpm 435817 +RMD160 1b8f894a60c702fbc77b2e57a012c87e32546447 system-config-printer-0.7.27-1.src.rpm 435817 +SHA256 4473912ee4c4fa1b7a0a9c91cd3d2f80817c52212cbb5d978c50e38140a4198b system-config-printer-0.7.27-1.src.rpm 435817 diff --git a/app-admin/system-config-printer/system-config-printer-0.7.27.ebuild b/app-admin/system-config-printer/system-config-printer-0.7.27.ebuild new file mode 100644 index 0000000..cd8c400 --- /dev/null +++ b/app-admin/system-config-printer/system-config-printer-0.7.27.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit rpm + +# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source +# tarball out of it +RPMREV="1" + +DESCRIPTION="Tools for certain user account management tasks" +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="" +# pygobject comes from gnome-experimental overlay +RDEPEND="net-print/cups + dev-lang/python + =dev-python/pygtk-2* + =dev-python/pygobject-2* + dev-python/pycups + sys-apps/usermode + dev-python/rhpl + net-print/foomatic + dev-python/pyxml" +DEPEND="${RDEPEND} + sys-devel/gettext + dev-util/intltool" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + make_desktop_entry /usr/bin/${PN} + + fperms 644 /etc/pam.d/${PN} +} |