diff options
author | Nguyen Thai Ngoc Duy <pclouds@gentoo.org> | 2004-11-22 09:50:04 +0000 |
---|---|---|
committer | Nguyen Thai Ngoc Duy <pclouds@gentoo.org> | 2004-11-22 09:50:04 +0000 |
commit | 0265f67768960d672bc91669837a899c797aa00a (patch) | |
tree | 395eadebac630a4da204dfbe86beab9b13662644 /app-text/uvconv/uvconv-1.1.3b.ebuild | |
parent | Version bump again as last version was still vulnerable. (Manifest recommit) (diff) | |
download | gentoo-2-0265f67768960d672bc91669837a899c797aa00a.tar.gz gentoo-2-0265f67768960d672bc91669837a899c797aa00a.tar.bz2 gentoo-2-0265f67768960d672bc91669837a899c797aa00a.zip |
Initial ebuild
Diffstat (limited to 'app-text/uvconv/uvconv-1.1.3b.ebuild')
-rw-r--r-- | app-text/uvconv/uvconv-1.1.3b.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/app-text/uvconv/uvconv-1.1.3b.ebuild b/app-text/uvconv/uvconv-1.1.3b.ebuild new file mode 100644 index 000000000000..078e1b191a5b --- /dev/null +++ b/app-text/uvconv/uvconv-1.1.3b.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/uvconv/uvconv-1.1.3b.ebuild,v 1.1 2004/11/22 09:50:04 pclouds Exp $ + +DESCRIPTION="A small utility that converts among Vietnamese charsets" +SRC_URI="mirror://sourceforge/unikey/${PF}.tar.gz" +HOMEPAGE="http://unikey.sourceforge.net/linux.php" +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" + +IUSE="" +DEPEND="" +S=${WORKDIR}/uvconv + +src_compile() { + make -C uvconvert || die +} + +src_install () { + exeinto /usr/bin + doexe uvconvert/${PN} + doman uvconv.1 + dodoc readme.txt AUTHORS CREDITS changes.txt gpl.txt +} |