diff options
author | Stuart Bouyer <stubear@gentoo.org> | 2002-10-23 14:19:27 +0000 |
---|---|---|
committer | Stuart Bouyer <stubear@gentoo.org> | 2002-10-23 14:19:27 +0000 |
commit | cc5457cbbad0976dab6cdf2a5c0046677e97d1e3 (patch) | |
tree | c4ac339be5b82ae2fd74e2f7b0763590b26bd80e /app-i18n/libtabe | |
parent | upgraded to new version and added support for libtabe (diff) | |
download | gentoo-2-cc5457cbbad0976dab6cdf2a5c0046677e97d1e3.tar.gz gentoo-2-cc5457cbbad0976dab6cdf2a5c0046677e97d1e3.tar.bz2 gentoo-2-cc5457cbbad0976dab6cdf2a5c0046677e97d1e3.zip |
intial submission of ebuild
Diffstat (limited to 'app-i18n/libtabe')
-rw-r--r-- | app-i18n/libtabe/ChangeLog | 10 | ||||
-rw-r--r-- | app-i18n/libtabe/files/digest-libtabe-0.2.5 | 1 | ||||
-rw-r--r-- | app-i18n/libtabe/libtabe-0.2.5.ebuild | 33 |
3 files changed, 44 insertions, 0 deletions
diff --git a/app-i18n/libtabe/ChangeLog b/app-i18n/libtabe/ChangeLog new file mode 100644 index 000000000000..192a9b03e639 --- /dev/null +++ b/app-i18n/libtabe/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-i18n/libtabe +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-i18n/libtabe/ChangeLog,v 1.1 2002/10/23 14:19:27 stubear Exp $ + +*libtabe-0.2.5 (11 Oct 2002) + + 11 Oct 2002; Stuart Bouyer <stubear@gentoo.org> ChangeLog, + libtabe-0.2.5.ebuild : + + Initial ebuild submitted by Lloyd Huang <lloyd@coventive.com> diff --git a/app-i18n/libtabe/files/digest-libtabe-0.2.5 b/app-i18n/libtabe/files/digest-libtabe-0.2.5 new file mode 100644 index 000000000000..500c28bc6a72 --- /dev/null +++ b/app-i18n/libtabe/files/digest-libtabe-0.2.5 @@ -0,0 +1 @@ +MD5 8b03826b2858ae999b18d41099eb73c9 libtabe-0.2.5.tar.gz 1615825 diff --git a/app-i18n/libtabe/libtabe-0.2.5.ebuild b/app-i18n/libtabe/libtabe-0.2.5.ebuild new file mode 100644 index 000000000000..5e9667b17f73 --- /dev/null +++ b/app-i18n/libtabe/libtabe-0.2.5.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/libtabe/libtabe-0.2.5.ebuild,v 1.1 2002/10/23 14:19:27 stubear Exp $ + +DESCRIPTION="Libtabe provides bimsphone support for xcin-2.5+" +HOMEPAGE="http://libtabe.sourceforge.net/" +SRC_URI="ftp://xcin.linux.org.tw/pub/xcin/libtabe/devel/${P}.tar.gz" +LICENSE="XCIN" +SLOT="0" +KEYWORDS="~x86" +DEPEND="=sys-libs/db-3*" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN} + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --with-db-lib=/usr/lib \ + --with-db-bin=/usr/bin \ + --enable-shared || die "./configure failed" + make || die +} + +src_install () { + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + dodoc doc/* +} |