diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2009-05-25 16:57:08 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2009-05-25 16:57:08 +0000 |
commit | c01f6a9eddf251f78aae27fc3f4f6c49b0a41224 (patch) | |
tree | 86c65dfe79629a8da6edbe74a8118fe112482fbe /sys-fs/owfs | |
parent | stable amd64, bug 271110 (diff) | |
download | gentoo-2-c01f6a9eddf251f78aae27fc3f4f6c49b0a41224.tar.gz gentoo-2-c01f6a9eddf251f78aae27fc3f4f6c49b0a41224.tar.bz2 gentoo-2-c01f6a9eddf251f78aae27fc3f4f6c49b0a41224.zip |
version bump, fix bug #248304
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'sys-fs/owfs')
-rw-r--r-- | sys-fs/owfs/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/owfs/owfs-2.7_p21.ebuild | 132 |
2 files changed, 138 insertions, 1 deletions
diff --git a/sys-fs/owfs/ChangeLog b/sys-fs/owfs/ChangeLog index 504c4554d8f8..b53934466db2 100644 --- a/sys-fs/owfs/ChangeLog +++ b/sys-fs/owfs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/owfs # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/ChangeLog,v 1.11 2009/03/08 14:46:20 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/ChangeLog,v 1.12 2009/05/25 16:57:08 wschlich Exp $ + +*owfs-2.7_p21 (25 May 2009) + + 25 May 2009; Wolfram Schlich <wschlich@gentoo.org> +owfs-2.7_p21.ebuild: + version bump, fix bug #248304 08 Mar 2009; Petteri Räty <betelgeuse@gentoo.org> owfs-2.7_p4.ebuild: Migrate to EAPI 2. diff --git a/sys-fs/owfs/owfs-2.7_p21.ebuild b/sys-fs/owfs/owfs-2.7_p21.ebuild new file mode 100644 index 000000000000..774d53c82f05 --- /dev/null +++ b/sys-fs/owfs/owfs-2.7_p21.ebuild @@ -0,0 +1,132 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/owfs-2.7_p21.ebuild,v 1.1 2009/05/25 16:57:08 wschlich Exp $ + +EAPI="2" + +inherit eutils depend.php perl-module + +MY_P=${P/_/} + +DESCRIPTION="Access 1-Wire devices like a filesystem" +SRC_URI="mirror://sourceforge/owfs/${MY_P}.tar.gz" +HOMEPAGE="http://www.owfs.org/ http://owfs.sourceforge.net/" +LICENSE="GPL-2" +RDEPEND="fuse? ( sys-fs/fuse ) + perl? ( dev-lang/perl ) + php? ( dev-lang/php ) + python? ( dev-lang/python ) + tcl? ( dev-lang/tcl ) + usb? ( dev-libs/libusb ) + zeroconf? ( || ( net-dns/avahi[mdnsresponder-compat] net-misc/mDNSResponder ) )" +DEPEND="${RDEPEND} + perl? ( dev-lang/swig ) + php? ( dev-lang/swig ) + python? ( dev-lang/swig )" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="debug fuse ftpd httpd parport perl php python server tcl usb zeroconf" + +S=${WORKDIR}/${MY_P} + +OWUID=${OWUID:-owfs} +OWGID=${OWGID:-owfs} + +pkg_setup() { + if use php; then + require_php_cli + fi + enewgroup ${OWGID} 150 + enewuser ${OWUID} 150 -1 -1 ${OWGID} +} + +src_unpack() { + base_src_unpack unpack +} + +src_prepare() { + base_src_prepare +} + +src_configure() { + econf \ + $(use_enable debug) \ + $(use_enable fuse owfs) \ + $(use_enable ftpd owftpd) \ + $(use_enable httpd owhttpd) \ + $(use_enable parport) \ + $(use_enable perl owperl) \ + $(use_enable php owphp) \ + $(use_enable python owpython) \ + $(use_enable server owserver) \ + $(use_enable tcl owtcl) \ + $(use_enable zeroconf zero) \ + $(use_enable usb) \ + || die "econf failed" +} + +src_compile() { + base_src_compile +} + +src_test() { :; } + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README NEWS ChangeLog AUTHORS || die + if use server || use httpd || use ftpd || use fuse; then + diropts -m 0750 -o ${OWUID} -g ${OWGID} + dodir /var/run/owfs + for i in server httpd ftpd; do + if use ${i}; then + newinitd "${FILESDIR}"/ow${i}.initd ow${i} + newconfd "${FILESDIR}"/ow${i}.confd ow${i} + fi + done + if use fuse; then + dodir /var/lib/owfs + dodir /var/lib/owfs/mnt + newinitd "${FILESDIR}"/owfs.initd owfs + newconfd "${FILESDIR}"/owfs.confd owfs + fi + fi + use perl && fixlocalpod +} + +pkg_postinst() { + if use server || use httpd || use ftpd || use fuse; then + echo + einfo + einfo "Be sure to check/edit the following files," + einfo "e.g. to fit your 1 wire bus controller" + einfo "device or daemon network settings:" + for i in server httpd ftpd; do + if use ${i}; then + einfo "- ${ROOT%/}/etc/conf.d/ow${i}" + fi + done + if use fuse; then + einfo "- ${ROOT%/}/etc/conf.d/owfs" + fi + einfo + echo + if [[ ${OWUID} != root ]]; then + ewarn + ewarn "In order to allow the OWFS daemon user '${OWUID}' to read" + ewarn "from and/or write to a 1 wire bus controller device, make" + ewarn "sure the user has appropriate permission to access the" + ewarn "corresponding device node/path (e.g. /dev/ttyS0), for example" + ewarn "by adding the user to the group 'uucp' (for serial devices)" + ewarn "or 'usb' (for USB devices accessed via usbfs on /proc/bus/usb)." + ewarn + if use fuse; then + ewarn "In order to allow regular users to read from and/or write to" + ewarn "1 wire bus devices accessible via the owfs FUSE filesystem" + ewarn "client and its filesystem mountpoint, make sure the user is" + ewarn "a member of the group '${OWGID}'." + ewarn + fi + echo + fi + fi +} |