diff options
author | Alin Năstac <mrness@gentoo.org> | 2007-10-02 16:13:28 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2007-10-02 16:13:28 +0000 |
commit | 379999bdc717c6a20ce44ec171d4216df0ac89d9 (patch) | |
tree | c86132c8d0e2a4c33cd4b65c511fc3473e9b6223 /net-dialup/umtsmon | |
parent | alpha/ia64 stable wrt #194466 (diff) | |
download | gentoo-2-379999bdc717c6a20ce44ec171d4216df0ac89d9.tar.gz gentoo-2-379999bdc717c6a20ce44ec171d4216df0ac89d9.tar.bz2 gentoo-2-379999bdc717c6a20ce44ec171d4216df0ac89d9.zip |
Use eqmake3 for generating the makefile (#194373). Install README and TODO into doc dir.
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-dialup/umtsmon')
-rw-r--r-- | net-dialup/umtsmon/ChangeLog | 6 | ||||
-rw-r--r-- | net-dialup/umtsmon/umtsmon-0.6.ebuild | 9 |
2 files changed, 13 insertions, 2 deletions
diff --git a/net-dialup/umtsmon/ChangeLog b/net-dialup/umtsmon/ChangeLog index 5117216f3245..79e919a13b97 100644 --- a/net-dialup/umtsmon/ChangeLog +++ b/net-dialup/umtsmon/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dialup/umtsmon # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/umtsmon/ChangeLog,v 1.3 2007/07/19 06:36:03 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/umtsmon/ChangeLog,v 1.4 2007/10/02 16:13:28 mrness Exp $ + + 02 Oct 2007; Alin Năstac <mrness@gentoo.org> umtsmon-0.6.ebuild: + Use eqmake3 for generating the makefile (#194373). Install README and TODO + into doc dir. 19 Jul 2007; Alin Năstac <mrness@gentoo.org> -umtsmon-0.5.ebuild: Remove obsolete version. diff --git a/net-dialup/umtsmon/umtsmon-0.6.ebuild b/net-dialup/umtsmon/umtsmon-0.6.ebuild index 35ed8eaed8b9..58bd292fdd44 100644 --- a/net-dialup/umtsmon/umtsmon-0.6.ebuild +++ b/net-dialup/umtsmon/umtsmon-0.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/umtsmon/umtsmon-0.6.ebuild,v 1.1 2007/06/05 07:40:47 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/umtsmon/umtsmon-0.6.ebuild,v 1.2 2007/10/02 16:13:28 mrness Exp $ inherit qt3 @@ -18,6 +18,13 @@ RDEPEND="${DEPEND} net-dialup/ppp sys-apps/pcmciautils" +src_compile() { + eqmake3 || die "eqmake3 failed" + emake || die "emake failed" +} + src_install() { dobin umtsmon + + dodoc README TODO } |