diff options
-rw-r--r-- | x11-misc/swarp/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/swarp/Manifest | 3 | ||||
-rw-r--r-- | x11-misc/swarp/swarp-9999.ebuild | 44 |
3 files changed, 6 insertions, 46 deletions
diff --git a/x11-misc/swarp/ChangeLog b/x11-misc/swarp/ChangeLog index 016f0e300..89415e830 100644 --- a/x11-misc/swarp/ChangeLog +++ b/x11-misc/swarp/ChangeLog @@ -3,6 +3,11 @@ # $Header: $ 15 Jan 2010; Michał Górny (sedzimir) <gentoo@mgorny.alt.pl> + -swarp-9999.ebuild: + Dropping live version as it differs from stable one only by copyright list, + and there has been no change for more than three years. + + 15 Jan 2010; Michał Górny (sedzimir) <gentoo@mgorny.alt.pl> swarp-0.1.ebuild: General polishing and SRC_URI update. diff --git a/x11-misc/swarp/Manifest b/x11-misc/swarp/Manifest index 0719f2569..a5123b40b 100644 --- a/x11-misc/swarp/Manifest +++ b/x11-misc/swarp/Manifest @@ -1,5 +1,4 @@ DIST swarp-0.1.tar.gz 2277 RMD160 6a1308a01ad633d290add947cc02bccc95644c25 SHA1 0d602b971f3d9fe0197143a9106a5c2e5044fd01 SHA256 ef5730fe8ee00879cbec1e91e22a7f0f7817a63375d790d775f5b7427886d45f EBUILD swarp-0.1.ebuild 802 RMD160 f865b64c54632588da5ba7d9003a6f056765c5b6 SHA1 0800d81b84449fda6c0e63c44cf1e7c1a704cbc5 SHA256 cf5f0878afb2b55328bf4c6084911eb49b64a4a96b86ca8d98f16547d39f2165 -EBUILD swarp-9999.ebuild 823 RMD160 9162f12645da17baa17a0851e7e58a089ba381be SHA1 d5ba0563341205c5c2bd9c74ce8a140e1ac3fa41 SHA256 11f485596129865e0696ad85ac188b157911602cf7e6cf6f8fdffdfd7e6e748a -MISC ChangeLog 772 RMD160 1a5598f9621064f5b3ed95e9174f72c8632a8aea SHA1 30748a94ed8a9b26e3c9726185ee9ca20027f237 SHA256 ff8e9c3b82c7ec7b78007f3c8b419f10e8e37f4ea548a4c49d17c10c1b70501b +MISC ChangeLog 995 RMD160 4b0bd6728f924a559996311ce01e762ee89fcd32 SHA1 dd8e15f76a358bf74cc07a0115e65f9cadebe76a SHA256 37cfdd83eb8030453de6f25889bad62f3ef977d874636a0c0a7ff3fd50a8dafd MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42 diff --git a/x11-misc/swarp/swarp-9999.ebuild b/x11-misc/swarp/swarp-9999.ebuild deleted file mode 100644 index 2ebdfac35..000000000 --- a/x11-misc/swarp/swarp-9999.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit mercurial toolchain-funcs - -DESCRIPTION="simple pointer warp" -HOMEPAGE="http://tools.suckless.org/swarp" -SRC_URI="" -EHG_REPO_URI=http://suckless.org/cgi-bin/hgwebdir.cgi/${PN} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="x11-libs/libX11" -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${PN} - -src_unpack() { - mercurial_src_unpack - cd "${S}" - - sed -i \ - -e "s/.*strip.*//" \ - Makefile || die "sed failed" - - sed -i \ - -e "s/CFLAGS = -Os/CFLAGS +=/" \ - -e "s/LDFLAGS =/LDFLAGS +=/" \ - config.mk || die "sed failed" -} - -src_compile() { - emake CC=$(tc-getCC) || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed" - - dodoc README -} |