diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-02-27 07:29:43 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-02-27 07:29:43 +0000 |
commit | edb667da07d658d8a2e4fa3657fa4bd7a92d172d (patch) | |
tree | f761451b2beec53d84355874e5c40e7b42fdd7bf /x11-libs/openmotif | |
parent | version bump (diff) | |
download | historical-edb667da07d658d8a2e4fa3657fa4bd7a92d172d.tar.gz historical-edb667da07d658d8a2e4fa3657fa4bd7a92d172d.tar.bz2 historical-edb667da07d658d8a2e4fa3657fa4bd7a92d172d.zip |
Remove redundant tests.
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'x11-libs/openmotif')
-rw-r--r-- | x11-libs/openmotif/Manifest | 8 | ||||
-rw-r--r-- | x11-libs/openmotif/files/motif-config-2.3 | 14 |
2 files changed, 5 insertions, 17 deletions
diff --git a/x11-libs/openmotif/Manifest b/x11-libs/openmotif/Manifest index ca2542ef0fb5..528a6c08baca 100644 --- a/x11-libs/openmotif/Manifest +++ b/x11-libs/openmotif/Manifest @@ -2,7 +2,7 @@ Hash: SHA1 AUX Mwm.defaults 536 RMD160 99fc40c2e923b53a14b2911c37064f2c9cd3f63b SHA1 ddbe7ab7af3a8caf6ccb9d6ab2c721ce5940edd1 SHA256 5373d8c7bd5460ce83bda99f08725fe9154cd4b5ca2b0698e5a0fda10e50f250 -AUX motif-config-2.3 1522 RMD160 20835773f46a8ac434385b89764b713d13d06b5c SHA1 da8e1cc36d94fc3c3b54567d82ae35e83e13a02c SHA256 afb2e7b53f6a39b01b153985d12c4e674c6a2714219597b3b599f443242fdc76 +AUX motif-config-2.3 1379 RMD160 2b68b33af46f20289184bdcd2656c2f48e225d21 SHA1 127403cbbc94e410b71c35487bb3944bc78f13f1 SHA256 61134468b019e7204903ca00ea702b8a4d202fd73babdad89c8b4460a745190f AUX openmotif-2.3.0-sensitivity-invisible.patch 7202 RMD160 255895bc7fa43079259de0e0e01262e83dca79f1 SHA1 41732e6c09229dbf8b681b37770a9c46621de84c SHA256 394863dd8b3adb67df78593a78cd04ec6eb7ddda3b70d27fd63f550341de07b9 DIST openMotif-2.2.3.tar.gz 5149785 RMD160 b99230d508da57bca72b6920d28fce4187bf5179 SHA1 c463653d9f8e24b35522c3ba6363ddf7a282eab4 SHA256 12fc0d1de53ff30307603e31826db9b63a442f6f743451aed2cb7cedb038d3d9 DIST openmotif-2.2.3-patches-1.tar.bz2 19960 RMD160 735931640dfb1d45f331e1015dce2886022c82c0 SHA1 f10752647af3ae3e1fc81b052b836c9db5df22e0 SHA256 9da77097b9960edf763d2b94948739acfecdd41e6959afeeef3799b0872c19d1 @@ -16,7 +16,7 @@ MISC metadata.xml 160 RMD160 d86217bb48cf4283e08e43bcaabbc919101ad795 SHA1 d6147 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (GNU/Linux) -iEYEARECAAYFAkfAb7kACgkQOeoy/oIi7uxgagCgi0Zgsnf6cG7rfdh3qq1JxTS8 -vAQAnixCdh7MuN+ezasNi+iOvWyHgTiI -=M4CL +iEYEARECAAYFAkfFESAACgkQOeoy/oIi7uz+8QCgkAAnWXWZH8tutHSqCe6RfUlv +J/AAni3gNY1FVItPXi5m7/fNi/HFstzU +=0r4K -----END PGP SIGNATURE----- diff --git a/x11-libs/openmotif/files/motif-config-2.3 b/x11-libs/openmotif/files/motif-config-2.3 index fe225e7c77bb..12531ec0559e 100644 --- a/x11-libs/openmotif/files/motif-config-2.3 +++ b/x11-libs/openmotif/files/motif-config-2.3 @@ -13,18 +13,14 @@ cat << "USAGE_END" Usage: motif-config [option] Options: - -L, --get-lib-path Print path where openmotif libraries are located. - -I, --get-inc-path Print path where openmotif includes are located. - --libs Print link flags for openmotif - --cflags Print compilation flags for openmotif - USAGE_END exit $1 } + [[ $# -lt 1 ]] && usage 1 [[ $# -gt 2 ]] && usage 1 @@ -51,22 +47,18 @@ get_libs() { for x in "$@"; do case "${x}" in -L|--get-lib-path) - [[ $# -gt 2 ]] && usage 1 get_lib_path $2 ;; -I|--get-inc-path) - [[ $# -gt 2 ]] && usage 1 get_inc_path $2 ;; --cflags) - [[ $# -gt 2 ]] && usage 1 get_cflags $2 ;; --libs) - [[ $# -gt 2 ]] && usage 1 get_libs $2 ;; @@ -79,10 +71,6 @@ for x in "$@"; do exit 0 ;; - -*) - usage 1 - ;; - *) usage 1 ;; |