diff options
author | Seth Chandler <sethbc@gentoo.org> | 2003-02-16 07:14:50 +0000 |
---|---|---|
committer | Seth Chandler <sethbc@gentoo.org> | 2003-02-16 07:14:50 +0000 |
commit | 36e87a747d69378b58eefbbb730ccb40d3a504fe (patch) | |
tree | 0d0ed4801c83e1c975db9a0a759c5d86c451d4d2 /app-misc/fujiplay | |
parent | added gpart to portage... (diff) | |
download | historical-36e87a747d69378b58eefbbb730ccb40d3a504fe.tar.gz historical-36e87a747d69378b58eefbbb730ccb40d3a504fe.tar.bz2 historical-36e87a747d69378b58eefbbb730ccb40d3a504fe.zip |
added fujiplay to p0rtage
Diffstat (limited to 'app-misc/fujiplay')
-rw-r--r-- | app-misc/fujiplay/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/fujiplay/files/digest-fujiplay-1.33 | 1 | ||||
-rw-r--r-- | app-misc/fujiplay/fujiplay-1.33.ebuild | 46 |
3 files changed, 57 insertions, 0 deletions
diff --git a/app-misc/fujiplay/ChangeLog b/app-misc/fujiplay/ChangeLog new file mode 100644 index 000000000000..039d705e5605 --- /dev/null +++ b/app-misc/fujiplay/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog app-misc/fujiplay +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/fujiplay/ChangeLog,v 1.1 2003/02/16 07:14:50 sethbc Exp $ + +*fujiplay-1.33.ebuild (09 Feb 2003) + 15 Feb 2003: Seth Chandler <sethbc@gentoo.org> fujiplay-1.33.ebuild: + added fujiplay to portage... + + + diff --git a/app-misc/fujiplay/files/digest-fujiplay-1.33 b/app-misc/fujiplay/files/digest-fujiplay-1.33 new file mode 100644 index 000000000000..221f2a5e267c --- /dev/null +++ b/app-misc/fujiplay/files/digest-fujiplay-1.33 @@ -0,0 +1 @@ +MD5 905aae35af5a8b2e4d393671ae4f970b fujiplay.tgz 26250 diff --git a/app-misc/fujiplay/fujiplay-1.33.ebuild b/app-misc/fujiplay/fujiplay-1.33.ebuild new file mode 100644 index 000000000000..b5e7716798bf --- /dev/null +++ b/app-misc/fujiplay/fujiplay-1.33.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +DESCRIPTION="Utility for Fujifilm/Leica digital cameras (via serial port)" +SRC_URI="http://topo.math.u-psud.fr/~bousch/fujiplay.tgz" +HOMEPAGE="http://topo.math.u-psud.fr/~bousch/fujiplay.html" + +SLOT="0" +KEYWORDS="x86" +LICENSE="public-domain" + +DEPEND="virtual/glibc" +RDEPEND="" + +S=${WORKDIR} + +src_compile() { +# bash + cd fujiplay-1.33 + emake || die +} + +src_install() { + cd fujiplay-1.33 + into /usr + dobin fujiplay yycc2ppm + dodoc README fujiplay.lsm mx700-commands.html + emake all clean +} + +pkg_postinst() { + ln -s /dev/ttyS0 /dev/fujifilm + einfo "A symbolic link /dev/ttyS0 -> /dev/fujifilm was created." + einfo "You may want to create a serial group to allow non-root" + einfo "members R/W access to the serial device." + echo +} + +pkg_postrm() { + rm -f /dev/fujifilm + echo + einfo "The symbolic link /dev/fujifilm was removed." + echo +} + |