diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2014-02-02 08:42:18 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2014-02-02 08:42:18 +0000 |
commit | d9fee54641b6bfc5e6f50071a36d44ac7545acc3 (patch) | |
tree | 29fa31695f77120f04d121209fcd1177b21d1368 /dev-util | |
parent | Provide icons with a Gentoo-style coloring by David Abbott (#499506), thanks ... (diff) | |
download | gentoo-2-d9fee54641b6bfc5e6f50071a36d44ac7545acc3.tar.gz gentoo-2-d9fee54641b6bfc5e6f50071a36d44ac7545acc3.tar.bz2 gentoo-2-d9fee54641b6bfc5e6f50071a36d44ac7545acc3.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/bustle/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/bustle/bustle-0.4.3.ebuild | 65 |
2 files changed, 71 insertions, 1 deletions
diff --git a/dev-util/bustle/ChangeLog b/dev-util/bustle/ChangeLog index 785c649c70c7..5269b0563c4d 100644 --- a/dev-util/bustle/ChangeLog +++ b/dev-util/bustle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/bustle # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/bustle/ChangeLog,v 1.22 2014/01/19 10:44:18 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/bustle/ChangeLog,v 1.23 2014/02/02 08:42:18 slyfox Exp $ + +*bustle-0.4.3 (02 Feb 2014) + + 02 Feb 2014; Sergei Trofimovich <slyfox@gentoo.org> +bustle-0.4.3.ebuild: + Version bump. 19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> bustle-0.4.2-r1.ebuild: Stable for ppc64, wrt bug #488808 diff --git a/dev-util/bustle/bustle-0.4.3.ebuild b/dev-util/bustle/bustle-0.4.3.ebuild new file mode 100644 index 000000000000..9bb20a932738 --- /dev/null +++ b/dev-util/bustle/bustle-0.4.3.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/bustle/bustle-0.4.3.ebuild,v 1.1 2014/02/02 08:42:18 slyfox Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.3.6.9999 + +CABAL_FEATURES="bin test-suite" +inherit haskell-cabal + +DESCRIPTION="Draw pretty sequence diagrams of D-Bus traffic" +HOMEPAGE="http://hackage.haskell.org/package/bustle" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="LGPL-2 GPL-2" # bustle-dbus-monitor.c is GPL-2, rest is LGPL-2 +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="dev-libs/glib:2 + net-libs/libpcap + sys-apps/dbus + x11-libs/cairo + x11-libs/pango + gnome-base/libglade:2.0" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8.0.2 + dev-haskell/cairo + >=dev-haskell/dbus-0.10 + dev-haskell/glib + >=dev-haskell/gtk-0.12.4 + dev-haskell/mtl + dev-haskell/pango + dev-haskell/parsec + dev-haskell/pcap + dev-haskell/text + >=dev-lang/ghc-6.12.1 + virtual/pkgconfig + test? ( dev-haskell/hunit + dev-haskell/quickcheck + dev-haskell/test-framework + dev-haskell/test-framework-hunit ) +" + +src_compile() { + # compile haskell part + cabal_src_compile || die "could not build haskell parts" + + # compile C part + emake \ + "CC=$(tc-getCC)" \ + "CFLAGS=${CFLAGS}" \ + "CPPFLAGS=${CPPFLAGS}" \ + "LDFLAGS=${LDFLAGS}" +} + +src_install() { + # install haskell part + cabal_src_install || die "could not install haskell parts" + + dobin "${S}"/dist/build/bustle-pcap + doman bustle-pcap.1 + dodoc README HACKING NEWS +} |