diff options
author | David Phillips <write2david@gmail.com> | 2012-11-01 02:21:44 -0500 |
---|---|---|
committer | David Phillips <write2david@gmail.com> | 2012-11-01 02:21:44 -0500 |
commit | 9858605b986bb2796efe285d2a7431d3551be18b (patch) | |
tree | 991f95444f864f8e4ea0ec502fdc785a0b0ea0c6 /x11-misc | |
parent | Minor tweak (diff) | |
download | write2David-9858605b986bb2796efe285d2a7431d3551be18b.tar.gz write2David-9858605b986bb2796efe285d2a7431d3551be18b.tar.bz2 write2David-9858605b986bb2796efe285d2a7431d3551be18b.zip |
Cleanup
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/cairo-dock/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/cairo-dock/cairo-dock-9999.ebuild | 26 |
2 files changed, 5 insertions, 23 deletions
diff --git a/x11-misc/cairo-dock/Manifest b/x11-misc/cairo-dock/Manifest index 971f3df..21860a1 100644 --- a/x11-misc/cairo-dock/Manifest +++ b/x11-misc/cairo-dock/Manifest @@ -1,3 +1,3 @@ -EBUILD cairo-dock-9999.ebuild 3510 SHA256 dc53a83bdd170f8f279c8f3cb56da335d0540ba530162cd6833f6b7880dff4cd SHA512 da38466aca6fb9e0c58f05a214e0c001319aca21c4123c7647df66f4beed2c0dc3d2ac61ba471f747c6ed3fdaa80978fa464e693122b7566d8dccc340356bc03 WHIRLPOOL 0e6543de2ae6e3bc0ef8ec31eb419151b9b2acc6e11e12076d4ea3a2cbda20178999c986436194fc6fbef3cee5b07c55b10e761eecfd831d063c1b1cec7c585c +EBUILD cairo-dock-9999.ebuild 2918 SHA256 107cb2ba68ecebd28209695b273aa2f792aa50843a1a3170ed07936133e523d6 SHA512 0380a483a741b1a657c2ef20bb14f6a4eb92da6caef9d5b62a14be77d12e43f5dc9059bf3544784c9fb9be5ae1ea3ed9380362d8cc6388d37a4252a295fd2927 WHIRLPOOL 899de37e46ad42021d0cb0d1b155459d96f70cc8f90f6be3dc9aa5e0db5d343297ccaa236af05ed55f1db3590156864cdee27887f537652ec642b0363a69a899 MISC ChangeLog 240 SHA256 ffd103359939888e5c0463fda3245d4e54b55fdcc16782e5e83f14fbaaa31efd SHA512 73eaaece611870fb2b5dc5f6c9a49fb6690b8bd7a11edae9d889c0b4eb938ee7edca56ad624a29f7541c6d5743044241c252efb5259f4eb9655e391f00456c9f WHIRLPOOL 4d3d956b0c1c638b9ec0ffda00272ff97225daa41295de40e6dcf03e1653c464ed43c4d0077009a87c7f36d8dc857f60f5f5d730ac0f1d7524c7d47a34b1c721 MISC metadata.xml 276 SHA256 cc9796aef23ea695fd2cc82f8c763e3463f4ddcc335f716740ef0d568f4ca6e9 SHA512 a0930513ce3ede325f785bfa54d12436083f7ffeac0d41991cf3e7bb2a1904560ee07dc6210623983a025000e3217b02cb4a7f5b016cb25e90c33f8176b9e249 WHIRLPOOL a41cd867bdf8c7c303bba1e2b99d0a1737fb8067d6c937f973fe32c611c386d230586d619900545a59c5b9e24b5276491f367b005a2451a38d1d52db5ebc5e69 diff --git a/x11-misc/cairo-dock/cairo-dock-9999.ebuild b/x11-misc/cairo-dock/cairo-dock-9999.ebuild index 12e54d6..81690fb 100644 --- a/x11-misc/cairo-dock/cairo-dock-9999.ebuild +++ b/x11-misc/cairo-dock/cairo-dock-9999.ebuild @@ -4,17 +4,18 @@ EAPI="2" +# The ebuild depends on CMAKE and also the BZR revision control system +# which is used for pulling the source code from the LaunchPad repository inherit cmake-utils bzr -# Launchpad repository where "cairo-dock" lives: -EBZR_REPO_URI="lp:cairo-dock-core" +# The aaunchpad repository where "cairo-dock" lives: +EBZR_REPO_URI="lp:cairo-dock-core" # You can specify a certain revision from the repository here. # Or comment it out to choose the latest ("live") revision. #EBZR_REVISION="959" - DESCRIPTION="Cairo-dock is a fast, responsive, Mac OS X-like dock." HOMEPAGE="https://launchpad.net/cairo-dock-core/" # Next line is not needed because the BZR repository is specified further above @@ -69,33 +70,14 @@ pkg_setup() ewarn "" ewarn "" - # We have to deal with the weird behavior of cairo-dock installing - # stuff under "/usr/usr/lib" for 32-bit systems. - # ... installing stuff under "/usr/usr/lib6464" for 64-bit systems. - - # So, we do the following so that files get installed into the normal directory... - - mkdir /usr/usr - ln -s /usr/lib /usr/usr/lib - ln -s /usr/lib64 /usr/usr/lib6464/ - - # Note that the first 'ln' will fail if we're on a 64-bit system. That's okay. - # Note that the second 'ln' will fail if we're on a 32-bit system. That's okay. - } - src_prepare() { bzr_src_prepare } -# Not sure what the next line does. Can't find any documentation about it. -# Maybe it does nothing? It came from someone else's old ebuild for -# cairo-dock. Help?! -#MAKE_IN_SOURCE_BUILD=true - src_configure() { |