diff options
author | 2003-03-16 01:10:29 +0000 | |
---|---|---|
committer | 2003-03-16 01:10:29 +0000 | |
commit | e3777571661ccc1d7f1b9267222ce970e78ff19a (patch) | |
tree | a95bd8b1e5c60a61bb568f62d5c3ab47946d9506 /app-i18n | |
parent | touched up our custom Abiword desktop shortcut (diff) | |
download | historical-e3777571661ccc1d7f1b9267222ce970e78ff19a.tar.gz historical-e3777571661ccc1d7f1b9267222ce970e78ff19a.tar.bz2 historical-e3777571661ccc1d7f1b9267222ce970e78ff19a.zip |
Initial ebuild
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/manpages-es/ChangeLog | 10 | ||||
-rw-r--r-- | app-i18n/manpages-es/files/digest-manpages-es-1.28 | 2 | ||||
-rw-r--r-- | app-i18n/manpages-es/manpages-es-1.28.ebuild | 37 |
3 files changed, 49 insertions, 0 deletions
diff --git a/app-i18n/manpages-es/ChangeLog b/app-i18n/manpages-es/ChangeLog new file mode 100644 index 000000000000..59fdb5635aaa --- /dev/null +++ b/app-i18n/manpages-es/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-i18n/manopages-es +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-i18n/manpages-es/ChangeLog,v 1.1 2003/03/16 01:10:29 bass Exp $ + + +*manpages-es-1.28 (18 Mar 2003) + + 10 Jan 2003; José Alberto Suárez López <bass@gentoo.org> + Initial ebuild by Javier Lopez <iborg1013@terra.org> + diff --git a/app-i18n/manpages-es/files/digest-manpages-es-1.28 b/app-i18n/manpages-es/files/digest-manpages-es-1.28 new file mode 100644 index 000000000000..638ddaaa92c1 --- /dev/null +++ b/app-i18n/manpages-es/files/digest-manpages-es-1.28 @@ -0,0 +1,2 @@ +MD5 b58b76cdd2b2174ba216fa30e5d83518 man-pages-es-1.28.tar.gz 690346 +MD5 5827f41f77658df17f550b7f8e831432 man-pages-es-extra-0.8a.tar.gz 594357 diff --git a/app-i18n/manpages-es/manpages-es-1.28.ebuild b/app-i18n/manpages-es/manpages-es-1.28.ebuild new file mode 100644 index 000000000000..bb8d566dcd18 --- /dev/null +++ b/app-i18n/manpages-es/manpages-es-1.28.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/manpages-es/manpages-es-1.28.ebuild,v 1.1 2003/03/16 01:10:29 bass Exp $ + +S1=${WORKDIR}/man-pages-es-1.28 +S2=${WORKDIR}/man-pages-es-extra-0.8a + +DESCRIPTION="A somewhat comprehensive collection of Linux spanish man page translations" +SRC_URI="http://ditec.um.es/~piernas/manpages-es/man-pages-es-1.28.tar.gz + http://ditec.um.es/~piernas/manpages-es/man-pages-es-extra-0.8a.tar.gz" +HOMEPAGE="http://ditec.um.es/~piernas/manpages-es/index.html" +KEYWORDS="~x86" + +DEPEND="" +RDEPEND="sys-apps/man" +LICENSE="GPL-2" +SLOT="0" + +src_unpack() { + unpack ${A} + unpack ${B} +} + +src_compile() { + cd ${S1} + make gz || die + cd ${S2} + make gz || die +} + +src_install() { + cd ${S1} + make MANDIR=${D}/usr/share/man/es install || die + cd ${S2} + make MANDIR=${D}/usr/share/man/es install || die +} + |