diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-05-03 00:04:12 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-05-03 00:04:12 +0000 |
commit | b47f825d40694b49a9e520f9b8d68e7ac6f7141c (patch) | |
tree | f44e03a9b5d301e9403ad1383fcd0fb6725077d2 /app-misc/scmxx | |
parent | Initial version of the ebuild, submitted by carpaski@twobit.net (diff) | |
download | gentoo-2-b47f825d40694b49a9e520f9b8d68e7ac6f7141c.tar.gz gentoo-2-b47f825d40694b49a9e520f9b8d68e7ac6f7141c.tar.bz2 gentoo-2-b47f825d40694b49a9e520f9b8d68e7ac6f7141c.zip |
Initial ebuild submitted by oyvind.repvik@siemenssg.com (?yvind
Repvik). Closes bug #2344.
Diffstat (limited to 'app-misc/scmxx')
-rw-r--r-- | app-misc/scmxx/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/scmxx/files/digest-scmxx-0.6.0 | 1 | ||||
-rw-r--r-- | app-misc/scmxx/scmxx-0.6.0.ebuild | 29 |
3 files changed, 40 insertions, 0 deletions
diff --git a/app-misc/scmxx/ChangeLog b/app-misc/scmxx/ChangeLog new file mode 100644 index 000000000000..4389fd2812ef --- /dev/null +++ b/app-misc/scmxx/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-misc/scmxx +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-misc/scmxx/ChangeLog,v 1.1 2002/05/03 00:04:12 agenkin Exp $ + +*scmxx-0.6.0 (2 May, 2002) + + 2 May 2002; Arcady Genkin <agenkin@thpoon.com> scmxx-0.6.0.ebuild : + + Initial version of the ebuild, submitted by Nicholas Jones + <carpaski@twobit.net>.
\ No newline at end of file diff --git a/app-misc/scmxx/files/digest-scmxx-0.6.0 b/app-misc/scmxx/files/digest-scmxx-0.6.0 new file mode 100644 index 000000000000..ccb34ca46591 --- /dev/null +++ b/app-misc/scmxx/files/digest-scmxx-0.6.0 @@ -0,0 +1 @@ +MD5 dda58329d4d593a925f0988f4525252b scmxx-0.6.0.tar.bz2 47269 diff --git a/app-misc/scmxx/scmxx-0.6.0.ebuild b/app-misc/scmxx/scmxx-0.6.0.ebuild new file mode 100644 index 000000000000..0ab96059e307 --- /dev/null +++ b/app-misc/scmxx/scmxx-0.6.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: ?yvind Repvik <nail@dataparty.no> +# $Header: /var/cvsroot/gentoo-x86/app-misc/scmxx/scmxx-0.6.0.ebuild,v 1.1 2002/05/03 00:04:12 agenkin Exp $ + +DESCRIPTION="Exchange data with Siemens phones." +HOMEPAGE="http://www.hendrik-sattler.de/scmxx/" +LICENSE="GPL-2" + +DEPEND="virtual/glibc" + +SRC_URI="http://ma2geo.mathematik.uni-karlsruhe.de/~hendrik/scmxx/download/${P}.tar.bz2" +S=${WORKDIR}/${P} + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + exeinto /usr/lib/scmxx + doexe contrib/* + dodoc AUTHORS BUGS CHANGELOG INSTALL README TODO VERSION docs/*.txt + newdoc docs/README README.doc +} |