diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-03 01:59:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-03 01:59:34 +0000 |
commit | 4115b77205342dba1d415b5edebd4ba3e1d9c59f (patch) | |
tree | 60f18442e0b20bcc0dbce459eafc8ba9dc9251d5 /app-i18n/kurso-de-esperanto | |
parent | mark x86 stable (Manifest recommit) (diff) | |
download | gentoo-2-4115b77205342dba1d415b5edebd4ba3e1d9c59f.tar.gz gentoo-2-4115b77205342dba1d415b5edebd4ba3e1d9c59f.tar.bz2 gentoo-2-4115b77205342dba1d415b5edebd4ba3e1d9c59f.zip |
initial ebuild #39354
Diffstat (limited to 'app-i18n/kurso-de-esperanto')
-rw-r--r-- | app-i18n/kurso-de-esperanto/ChangeLog | 8 | ||||
-rw-r--r-- | app-i18n/kurso-de-esperanto/files/digest-kurso-de-esperanto-3.0 | 1 | ||||
-rw-r--r-- | app-i18n/kurso-de-esperanto/files/kurso | 5 | ||||
-rw-r--r-- | app-i18n/kurso-de-esperanto/files/kurso.conf | 1 | ||||
-rw-r--r-- | app-i18n/kurso-de-esperanto/kurso-de-esperanto-3.0.ebuild | 21 |
5 files changed, 36 insertions, 0 deletions
diff --git a/app-i18n/kurso-de-esperanto/ChangeLog b/app-i18n/kurso-de-esperanto/ChangeLog new file mode 100644 index 000000000000..01725aaeda04 --- /dev/null +++ b/app-i18n/kurso-de-esperanto/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for app-i18n/kurso-de-esperanto +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kurso-de-esperanto/ChangeLog,v 1.1 2004/02/03 01:59:34 vapier Exp $ + +*kurso-de-esperanto-3.0 (02 Feb 2004) + + 02 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me for #39354. diff --git a/app-i18n/kurso-de-esperanto/files/digest-kurso-de-esperanto-3.0 b/app-i18n/kurso-de-esperanto/files/digest-kurso-de-esperanto-3.0 new file mode 100644 index 000000000000..9d10c9a7c46d --- /dev/null +++ b/app-i18n/kurso-de-esperanto/files/digest-kurso-de-esperanto-3.0 @@ -0,0 +1 @@ +MD5 480a07c5daf67e5fa0527f252f328af0 kurso.tar.gz 15678794 diff --git a/app-i18n/kurso-de-esperanto/files/kurso b/app-i18n/kurso-de-esperanto/files/kurso new file mode 100644 index 000000000000..9d58e41a5fd8 --- /dev/null +++ b/app-i18n/kurso-de-esperanto/files/kurso @@ -0,0 +1,5 @@ +#!/bin/bash +dir=/opt/kurso +export LD_LIBRARY_PATH="${dir}/lib:${LD_LIBRARY_PATH}" +cd ${dir} +exec ./bin/kurso3 "$@" diff --git a/app-i18n/kurso-de-esperanto/files/kurso.conf b/app-i18n/kurso-de-esperanto/files/kurso.conf new file mode 100644 index 000000000000..18050543aae0 --- /dev/null +++ b/app-i18n/kurso-de-esperanto/files/kurso.conf @@ -0,0 +1 @@ +path=/opt/kurso diff --git a/app-i18n/kurso-de-esperanto/kurso-de-esperanto-3.0.ebuild b/app-i18n/kurso-de-esperanto/kurso-de-esperanto-3.0.ebuild new file mode 100644 index 000000000000..ef107a369071 --- /dev/null +++ b/app-i18n/kurso-de-esperanto/kurso-de-esperanto-3.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kurso-de-esperanto/kurso-de-esperanto-3.0.ebuild,v 1.1 2004/02/03 01:59:34 vapier Exp $ + +DESCRIPTION="multimedia computer program for teaching yourself Esperanto" +HOMEPAGE="http://www.cursodeesperanto.com.br/" +SRC_URI="http://www.cursodeesperanto.com.br/kurso.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="-* x86" + +S=${WORKDIR} + +src_install() { + dodir /opt/kurso + tar -zxf kurso-inst.tar.gz -C ${D}/opt/kurso/ + dobin ${FILESDIR}/kurso + insinto /etc + doins ${FILESDIR}/kurso.conf +} |